:root {
  --navy-950: #04112e;
  --navy-900: #071f4d;
  --navy-800: #0a2f70;
  --blue-600: #087bd9;
  --cyan-500: #12b8ec;
  --cyan-300: #79ddf8;
  --green-500: #12b981;
  --green-400: #23d497;
  --ink: #0b1734;
  --muted: #5c6880;
  --line: #dfe7f0;
  --surface: #f5f9fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 27, 73, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.topbar { color: #dcecff; background: var(--navy-950); font-size: .88rem; }
.topbar__content { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: var(--cyan-300); font-weight: 750; text-decoration: none; }
.topbar a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(12, 49, 100, .08);
  backdrop-filter: blur(18px);
}
.header__content { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; color: var(--navy-900); text-decoration: none; }
.brand__logo { width: 218px; height: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { position: relative; color: #34415c; font-size: .94rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green-500); transition: right .25s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: linear-gradient(135deg, var(--green-500), #08a66f); box-shadow: 0 10px 25px rgba(18, 185, 129, .25); }
.button--primary:hover { background: linear-gradient(135deg, var(--green-400), var(--green-500)); box-shadow: 0 14px 30px rgba(18, 185, 129, .33); }
.button--light { color: var(--navy-900); background: var(--white); box-shadow: 0 14px 30px rgba(2, 15, 42, .18); }
.button--small { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.button--large { min-height: 56px; padding: 17px 25px; }
.button--full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 35%, rgba(20, 183, 237, .18), transparent 26%),
    linear-gradient(124deg, var(--navy-950) 0%, var(--navy-900) 54%, #064a81 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}
.hero__glow { position: absolute; border-radius: 999px; filter: blur(4px); pointer-events: none; }
.hero__glow--one { width: 380px; height: 380px; right: -140px; top: -160px; border: 1px solid rgba(121, 221, 248, .45); box-shadow: 0 0 100px rgba(18, 184, 236, .18) inset; }
.hero__glow--two { width: 520px; height: 520px; left: -360px; bottom: -400px; background: rgba(18, 185, 129, .16); filter: blur(70px); }
.hero__grid { position: relative; z-index: 1; min-height: 670px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 62px; padding-top: 58px; padding-bottom: 58px; }
.hero__copy { max-width: 650px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--cyan-300); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--green-400); }
.eyebrow--dark { color: var(--blue-600); }
.hero h1 { max-width: 630px; margin: 0; font-size: clamp(3rem, 5.4vw, 5.15rem); line-height: .98; letter-spacing: -.065em; }
.hero__lead { max-width: 605px; margin: 27px 0 0; color: #d9e9f8; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { color: var(--white); font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--cyan-300); }
.hero__assurances { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 35px 0 0; padding: 0; list-style: none; color: #e8f1fb; font-size: .9rem; font-weight: 700; }
.hero__assurances li { display: flex; align-items: center; gap: 8px; }
.check { width: 20px; height: 20px; display: grid; place-items: center; color: var(--navy-950); background: var(--green-400); border-radius: 50%; font-size: .75rem; }

.hero__visual { position: relative; min-height: 555px; }
.hero__image-wrap { position: absolute; inset: 0 0 0 36px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 150px 28px 28px 28px; box-shadow: 0 30px 80px rgba(0, 8, 28, .4); }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,17,46,.4), transparent 45%); }
.hero__note { position: absolute; left: 0; right: 25px; bottom: 25px; display: flex; align-items: center; gap: 13px; padding: 16px 18px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.6); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(12px); font-size: .85rem; line-height: 1.4; }
.hero__note strong { display: block; font-size: .92rem; }
.hero__note-icon { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; color: var(--green-500); background: #e8fbf4; border-radius: 12px; }
.hero__note-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.trust-strip { position: relative; z-index: 3; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip__grid > div { position: relative; padding: 25px 35px; }
.trust-strip__grid > div + div::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--line); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--navy-900); font-size: .98rem; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: .84rem; }

.section { padding: 105px 0; }
.section-heading { max-width: 560px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .needs__copy h2, .analysis__copy h2 { margin: 0; color: var(--navy-900); font-size: clamp(2.25rem, 4vw, 3.55rem); line-height: 1.06; letter-spacing: -.05em; }
.section-heading p:not(.eyebrow), .needs__copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }

.steps { background: var(--surface); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 58px; }
.step-card { position: relative; overflow: hidden; min-height: 290px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 13px 36px rgba(10, 47, 112, .05); }
.step-card--featured { border-color: rgba(18, 185, 129, .35); transform: translateY(-10px); box-shadow: 0 22px 48px rgba(10, 47, 112, .11); }
.step-card__number { position: absolute; right: 22px; top: 12px; color: #eaf0f7; font-size: 4.6rem; font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.step-card__icon { position: relative; z-index: 1; width: 56px; height: 56px; display: grid; place-items: center; color: var(--blue-600); background: #eaf6ff; border-radius: 15px; }
.step-card--featured .step-card__icon { color: #087554; background: #e7faf3; }
.step-card__icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { position: relative; margin: 30px 0 10px; color: var(--navy-900); font-size: 1.3rem; line-height: 1.25; }
.step-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.needs__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.needs__copy > p:not(.eyebrow) { max-width: 610px; }
.feature-list { margin: 38px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; align-items: start; gap: 17px; padding: 20px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--blue-600); background: #ecf7ff; border-radius: 12px; font-size: .75rem; font-weight: 900; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { color: var(--navy-900); font-size: 1rem; }
.feature-list small { margin-top: 3px; color: var(--muted); font-size: .9rem; }

.clarity-card { position: relative; overflow: hidden; padding: 38px; color: var(--white); background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.clarity-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -110px; bottom: -120px; border: 1px solid rgba(121,221,248,.32); border-radius: 50%; }
.clarity-card__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--cyan-300); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.clarity-card__header svg { width: 40px; height: 40px; padding: 8px; color: var(--green-400); background: rgba(255,255,255,.09); border-radius: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.clarity-card h3 { margin: 30px 0 10px; font-size: 2rem; line-height: 1.1; letter-spacing: -.035em; }
.clarity-card > p { margin: 0; color: #c9dcee; }
.clarity-card > ul { margin: 25px 0 0; padding: 0; list-style: none; }
.clarity-card > ul li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.clarity-card > ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green-400); font-weight: 900; }
.security-note { position: relative; z-index: 1; display: flex; gap: 12px; margin-top: 28px; padding: 15px; color: #def9ef; background: rgba(18,185,129,.14); border: 1px solid rgba(35,212,151,.26); border-radius: 13px; font-size: .84rem; }
.security-note svg { flex: 0 0 auto; width: 22px; height: 22px; fill: none; stroke: var(--green-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.analysis { color: var(--white); background: var(--navy-950); }
.analysis__shell { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 85px; }
.analysis__copy h2 { color: var(--white); }
.analysis__copy > p:not(.eyebrow) { margin: 21px 0 0; color: #c4d7ea; font-size: 1.05rem; }
.analysis__contact { display: flex; align-items: center; gap: 13px; margin-top: 35px; }
.analysis__contact > span { width: 49px; height: 49px; display: grid; place-items: center; color: var(--green-400); background: rgba(18,185,129,.12); border: 1px solid rgba(35,212,151,.25); border-radius: 14px; }
.analysis__contact svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.analysis__contact small, .analysis__contact a { display: block; }
.analysis__contact small { color: #9cb1c9; }
.analysis__contact a { color: var(--white); font-size: 1.08rem; font-weight: 800; text-decoration: none; }

.lead-form { padding: 38px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-row { margin-bottom: 17px; }
.form-row label { display: block; margin-bottom: 7px; color: #23304a; font-size: .87rem; font-weight: 800; }
.form-row input, .form-row select { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); background: #f7f9fc; border: 1px solid #d7e0eb; border-radius: 11px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-row input::placeholder { color: #8792a6; }
.form-row input:focus, .form-row select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,123,217,.13); }
.form-row input[aria-invalid="true"], .form-row select[aria-invalid="true"] { border-color: #cc3355; }
.field-error { display: block; min-height: 19px; margin-top: 4px; color: #b31f40; font-size: .76rem; font-weight: 650; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 0; color: #536076; font-size: .79rem; line-height: 1.5; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green-500); }
.form-note { margin: 12px 0 0; color: #7b879a; font-size: .73rem; text-align: center; }
.form-success { min-height: 22px; margin-top: 10px; color: #07845b; font-size: .85rem; font-weight: 750; text-align: center; }

.faq__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 90px; }
.faq__list details { border-top: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq__list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 42px 22px 0; color: var(--navy-900); font-size: 1.02rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary span::before, .faq__list summary span::after { content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 2px; background: var(--blue-600); transition: transform .2s ease; }
.faq__list summary span::after { transform: rotate(90deg); }
.faq__list details[open] summary span::after { transform: rotate(0); }
.faq__list details p { margin: -5px 42px 22px 0; color: var(--muted); }

.final-cta { position: relative; overflow: hidden; padding: 60px 0; color: var(--white); background: linear-gradient(120deg, var(--blue-600), #07549d); }
.final-cta::after { content: ""; position: absolute; width: 380px; height: 380px; right: -80px; top: -230px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); }
.final-cta__content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta span { color: #d9eeff; }
.final-cta h2 { margin: 4px 0 0; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.05; letter-spacing: -.05em; }

.site-footer { color: #bdcce0; background: var(--navy-950); }
.footer__main { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 65px; padding-top: 55px; padding-bottom: 40px; }
.brand--footer { padding: 10px 14px; background: var(--white); border-radius: 12px; }
.brand--footer .brand__logo { width: 215px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 25px; }
.footer__links a { color: #cedbed; font-size: .87rem; text-decoration: none; }
.footer__links a:hover { color: var(--cyan-300); }
.footer__contact small, .footer__contact a { display: block; }
.footer__contact small { color: #8094ae; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.footer__contact a { color: var(--white); font-weight: 800; text-decoration: none; }
.footer__legal { display: flex; justify-content: space-between; gap: 35px; padding-top: 23px; padding-bottom: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .73rem; }
.footer__legal p { max-width: 780px; margin: 0; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 13px 18px; color: var(--white); background: #12b981; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; box-shadow: 0 13px 34px rgba(3,75,51,.32); font-size: .88rem; font-weight: 850; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #0ea672; }
.whatsapp-float svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 3px solid var(--cyan-500); outline-offset: 3px; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 118px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 28px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 22px 35px rgba(4,17,46,.16); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .2s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 16px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 50px; padding-top: 72px; padding-bottom: 78px; }
  .hero__copy { max-width: 740px; }
  .hero h1 { max-width: 720px; }
  .hero__visual { width: min(100%, 650px); min-height: 520px; }
  .steps__grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .step-card, .step-card--featured { min-height: auto; transform: none; }
  .needs__grid, .analysis__shell, .faq__grid { grid-template-columns: 1fr; gap: 55px; }
  .clarity-card { max-width: 680px; }
  .analysis__copy { max-width: 650px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__contact { text-align: right; }
  .footer__links { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar__content { min-height: 34px; justify-content: center; }
  .topbar__content > span { display: none; }
  .header__content { min-height: 72px; }
  .main-nav { inset: 106px 0 auto; }
  .brand__logo { width: 184px; }
  .hero__grid { padding-top: 58px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(2.65rem, 13.5vw, 4rem); }
  .hero__lead { margin-top: 22px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero__actions .text-link { text-align: center; }
  .hero__assurances { gap: 13px 18px; margin-top: 29px; }
  .hero__visual { min-height: 430px; }
  .hero__image-wrap { left: 0; border-radius: 92px 20px 20px 20px; }
  .hero__note { left: 12px; right: 12px; bottom: 14px; }
  .trust-strip__grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-strip__grid > div { padding: 15px 0; }
  .trust-strip__grid > div + div::before { top: 0; right: 0; bottom: auto; width: auto; height: 1px; }
  .section { padding: 78px 0; }
  .steps__grid { margin-top: 42px; }
  .step-card { padding: 28px; }
  .needs__grid, .analysis__shell, .faq__grid { gap: 42px; }
  .clarity-card, .lead-form { padding: 26px 22px; border-radius: 21px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .final-cta { padding: 50px 0 92px; }
  .final-cta__content { align-items: stretch; flex-direction: column; }
  .footer__main { grid-template-columns: 1fr; gap: 30px; }
  .footer__links { grid-column: auto; grid-row: auto; }
  .footer__contact { text-align: left; }
  .footer__legal { flex-direction: column; gap: 16px; padding-bottom: 100px; }
  .whatsapp-float { left: 15px; right: 15px; bottom: 14px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
