:root {
  --blue: #185FA5;
  --blue-dark: #0C447C;
  --blue-light: #E6F1FB;
  --coral: #D97757;
  --teal: #0F6E56;
  --text: #1a1a2a;
  --text-muted: #5a5a72;
  --bg: #f8f9ff;
  --white: #fff;
  --shadow: 0 4px 24px rgba(24, 95, 165, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* Header Portailo */
.p-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(24,95,165,.10);
}
.p-nav-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.p-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-family: Syne, sans-serif; }
.p-logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.p-nav-links { display: flex; gap: 18px; }
.p-nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.p-nav-links a:hover { color: var(--blue); }
.p-nav-actions { display: flex; gap: 8px; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  transition: .15s ease;
}
.btn-primary { background: var(--blue); color: #fff; border: 0; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: #fff; border: 1px solid rgba(24,95,165,.22); color: var(--text); }
.btn-ghost:hover { background: var(--blue-light); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

.hero-p {
  min-height: 84vh; display: flex; align-items: center; padding: 80px 0 70px;
  background: linear-gradient(160deg, #fff 0%, var(--bg) 55%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(24,95,165,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(24,95,165,.04) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.hero-title {
  font-family: Syne, sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 800;
  line-height: 1.15; margin: 0 0 20px;
}
.hero-title em { font-style: normal; color: var(--coral); }
.hero-subtitle { font-size: 17px; color: var(--text-muted); max-width: 620px; line-height: 1.7; margin: 0 0 28px; }
.trial-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e1f5ee; color: var(--teal); font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 50px; margin-bottom: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-pills .pill {
  background: #fff; border: 1px solid rgba(24,95,165,.12);
  padding: 8px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--text-muted);
}

.content-section { padding: 84px 0; }
.content-section.alt { background: #fff; }
.content-section.bg { background: var(--bg); }
.section-header { margin-bottom: 32px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.section-header h2 { font-family: Syne, sans-serif; font-size: clamp(24px, 3vw, 34px); margin: 0 0 10px; }
.section-header p { margin: 0; color: var(--text-muted); max-width: 640px; }

.two-col, .three-col, .feat-grid, .step-row, .price-grid {
  display: grid; gap: 22px;
}
.two-col, .step-row { grid-template-columns: 1fr 1fr; }
.three-col, .feat-grid, .price-grid { grid-template-columns: repeat(3, 1fr); }

.info-card {
  background: #fff; border: 1px solid rgba(24,95,165,.10);
  border-radius: 20px; padding: 28px 24px; box-shadow: var(--shadow); height: 100%;
}
.info-card.blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff; border: none;
}
.info-card h3 { font-family: Syne, sans-serif; font-size: 18px; margin: 0 0 12px; }
.info-card p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0; }
.info-card.blue p { color: rgba(255,255,255,.9); }
.ico {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-light); color: var(--blue); margin-bottom: 14px;
}
.info-card.blue .ico { background: rgba(255,255,255,.15); color: #fff; }

.prog-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.prog-list li { display: flex; gap: 10px; font-size: 14.5px; }
.prog-list li i { color: var(--blue); margin-top: 3px; }

.step-item { display: flex; gap: 14px; margin-bottom: 16px; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: Syne, sans-serif; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-item strong { display: block; font-size: 15px; }
.step-item span { font-size: 14px; color: var(--text-muted); }

.trial-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; border-radius: 20px; padding: 40px 36px; text-align: center;
}
.trial-banner h2 { font-family: Syne, sans-serif; margin: 0 0 10px; }
.trial-banner p { opacity: .92; max-width: 520px; margin: 0 auto 22px; }
.trial-banner .btn-primary { background: #fff; color: var(--blue); }
.trial-banner .btn-primary:hover { background: var(--blue-light); }

.price-card { display: flex; flex-direction: column; }
.price-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
.offer-price { font-family: Syne, sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); margin: 8px 0 16px; }
.offer-price small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; border: none;
}
.price-card.featured h3, .price-card.featured li { color: #fff; }
.price-card.featured .offer-price, .price-card.featured .price-tag { color: #fff; }
.price-card.featured .offer-price small { color: rgba(255,255,255,.8); }
.price-card.featured .ico { background: rgba(255,255,255,.15); color: #fff; }
.price-card .prog-list { flex: 1; margin-bottom: 18px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(24,95,165,.18); border-radius: 14px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; padding: 18px 22px; background: #fff; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 600; font-family: inherit; text-align: left;
}
.faq-item.open .faq-q { background: var(--blue-light); color: var(--blue-dark); }
.faq-arrow { color: var(--blue); transition: transform .25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 22px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 22px 20px; }

.cta-final {
  padding: 80px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; text-align: center;
}
.cta-final h2 { font-family: Syne, sans-serif; margin: 0 0 12px; }
.cta-final p { opacity: .9; max-width: 500px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-primary { background: #fff; color: var(--blue); }
.cta-final .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }

.p-footer { border-top: 1px solid rgba(24,95,165,.10); padding: 28px 0; color: #64748B; font-size: 13px; }
.p-footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .two-col, .three-col, .feat-grid, .step-row, .price-grid { grid-template-columns: 1fr; }
  .p-nav-links { display: none; }
}
@media (max-width: 640px) {
  .hero-p { padding: 56px 0 48px; min-height: auto; }
}

@media (max-width: 640px) {
  .hero-title { overflow-wrap: anywhere; }
  .p-nav-actions .btn-primary { white-space: nowrap; }
}


@media (max-width: 640px) {
  .container,
  .p-nav-inner {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-p { padding: 56px 0 40px; }
  .hero-title {
    font-size: 26px;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-subtitle { font-size: 16px; }
}

@media (max-width: 640px) {
  .p-nav-inner { width: calc(100% - 24px); }
  .p-nav-actions .btn-ghost {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 6px 6px !important;
    font-size: 13px !important;
  }
  .p-nav-actions .btn-primary {
    padding: 8px 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  .btn-label-full { display: none !important; }
  .btn-label-short { display: inline !important; }
}

.btn-label-short { display: none !important; }
.btn-label-full { display: inline !important; }
@media (max-width: 640px) {
  .p-nav-inner { gap: 8px; }
  .p-nav-actions { gap: 6px; margin-left: 0; }
  .p-nav-actions .btn-ghost {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }
  .p-nav-actions .btn-primary {
    padding: 6px 10px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}
