:root {
  --navy-950: #03133f;
  --navy-900: #06205f;
  --navy-800: #07398f;
  --blue-700: #0957d9;
  --blue-600: #1269ed;
  --cyan-500: #08aebd;
  --green-500: #69ce16;
  --green-600: #43b20b;
  --orange-500: #ff7a00;
  --ink: #0c1943;
  --muted: #626d8d;
  --line: #dfe6f3;
  --surface: #f7f9fd;
  --white: #fff;
  --shadow-sm: 0 10px 28px rgba(5, 35, 102, 0.08);
  --shadow-lg: 0 25px 70px rgba(3, 25, 78, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg:not(.svg-sprite) { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.svg-sprite { height: 0; overflow: hidden; position: absolute; width: 0; }
.container { margin: 0 auto; max-width: 1320px; padding-inline: 26px; width: 100%; }
.compact-section { padding: 43px 0; }

.site-header { position: sticky; top: 0; z-index: 100; }
.topbar { background: linear-gradient(90deg, #03133f, #06388f 52%, #03133f); color: #f3f7ff; font-size: 12px; }
.topbar-inner, .topbar-proof, .topbar-contact { align-items: center; display: flex; }
.topbar-inner { justify-content: space-between; min-height: 34px; }
.topbar-proof, .topbar-contact { gap: 30px; }
.topbar span, .topbar a { align-items: center; display: inline-flex; gap: 7px; white-space: nowrap; }
.topbar-proof svg { color: #b0e63b; }
.topbar-contact a:hover { color: #98dcff; }
.nav-wrap { backdrop-filter: blur(15px); background: rgba(255,255,255,.97); border-bottom: 1px solid #e2e8f3; transition: box-shadow .25s ease; }
.is-scrolled .nav-wrap { box-shadow: 0 10px 28px rgba(3, 24, 75, .13); }
.nav-inner { align-items: center; display: flex; height: 70px; justify-content: space-between; }
.brand { align-items: center; display: inline-flex; flex-shrink: 0; gap: 10px; }
.brand-symbol { color: #073d99; display: inline-flex; height: 48px; justify-content: center; position: relative; width: 53px; }
.brand-symbol svg { bottom: 0; position: absolute; }
.brand-symbol::before, .brand-symbol::after { background: var(--green-500); bottom: 2px; content: ""; height: 23px; position: absolute; width: 3px; z-index: 2; }
.brand-symbol::before { left: 6px; transform: rotate(-29deg); }
.brand-symbol::after { right: 6px; transform: rotate(29deg); }
.brand-person { background: var(--green-500); border-radius: 50%; height: 8px; left: 22px; position: absolute; top: 0; width: 8px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { color: #073b91; font-size: 24px; font-weight: 850; letter-spacing: -.8px; line-height: 1; }
.brand-copy small { color: #344262; font-size: 10px; font-weight: 650; margin-top: 4px; }
.main-nav { align-items: center; display: flex; gap: 27px; margin-left: auto; margin-right: 28px; }
.main-nav > a:not(.mobile-consult) { color: #15203d; font-size: 14px; font-weight: 700; padding: 27px 0 23px; position: relative; }
.main-nav > a:not(.mobile-consult)::after { background: var(--blue-600); bottom: 14px; content: ""; height: 2px; left: 50%; position: absolute; transform: translateX(-50%) scaleX(0); transition: transform .2s; width: 24px; }
.main-nav > a:hover, .main-nav > a.active { color: var(--blue-600); }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: translateX(-50%) scaleX(1); }
.menu-button, .mobile-consult { display: none; }
.menu-close-icon { display: none; }
.menu-button.is-open .menu-open-icon { display: none; }
.menu-button.is-open .menu-close-icon { display: block; }

.button { align-items: center; border: 1px solid transparent; border-radius: 8px; display: inline-flex; font-size: 14px; font-weight: 800; gap: 9px; justify-content: center; isolation: isolate; line-height: 1; min-height: 47px; overflow: hidden; padding: 0 22px; position: relative; transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.button:hover { box-shadow: 0 16px 34px rgba(3, 27, 85, .24); filter: saturate(1.08); transform: translateY(-3px) scale(1.015); }
.button:active { transform: translateY(0) scale(.97); }
.button:focus-visible { outline: 3px solid rgba(15,111,237,.35); outline-offset: 3px; }
.button > * { position: relative; z-index: 2; }
.button-whatsapp, .button-orange, .button-blue { animation: cta-breathe 2.8s ease-in-out infinite; }
.button-outline:hover { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.1), 0 14px 30px rgba(0,0,0,.25); }
.cta-ripple { animation: ripple-out .65s ease-out forwards; background: rgba(255,255,255,.42); border-radius: 50%; pointer-events: none; position: absolute !important; transform: translate(-50%,-50%) scale(0); z-index: 1 !important; }
.button-orange { background: linear-gradient(135deg, #ff8b12, #ff6b00); box-shadow: 0 9px 22px rgba(255, 107, 0, .28); color: white; }
.button-whatsapp { background: linear-gradient(135deg, #6ddd1d, #34ad04); box-shadow: 0 10px 24px rgba(55, 178, 4, .26); color: white; }
.button-blue { background: linear-gradient(135deg, #1680ff, #0755dc); color: white; }
.button-outline { background: rgba(4, 24, 78, .2); border-color: rgba(255,255,255,.65); color: white; }
.button-outline:hover { background: rgba(255,255,255,.12); }
.cta-shine::after { animation: shine 3.2s infinite; background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent); content: ""; height: 180%; left: -70%; position: absolute; top: -40%; transform: rotate(20deg); width: 32%; }
.nav-cta { min-height: 44px; white-space: nowrap; }

.hero { background: #061c59; color: white; height: 548px; overflow: hidden; position: relative; }
.hero-background { height: 100%; inset: 0; object-fit: cover; object-position: center; position: absolute; width: 100%; }
.hero::after { background: linear-gradient(90deg, rgba(3,17,61,.98) 0%, rgba(3,37,102,.95) 40%, rgba(4,53,127,.52) 61%, rgba(4,43,105,.02) 79%); content: ""; inset: 0; position: absolute; }
.hero-grid-pattern { background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 54px 54px; inset: 0 45% 0 0; mask-image: linear-gradient(90deg, #000, transparent); position: absolute; z-index: 1; }
.hero-inner { align-items: center; display: flex; height: 100%; position: relative; z-index: 3; }
.hero-copy { max-width: 715px; padding: 26px 0 18px; }
.eyebrow { align-items: center; background: rgba(6,74,180,.72); border: 1px solid rgba(132,196,255,.32); border-radius: 999px; display: inline-flex; font-size: 11px; font-weight: 800; gap: 8px; letter-spacing: .35px; margin: 0; padding: 7px 13px; text-transform: uppercase; }
.eyebrow span { animation: glow-dot 1.6s infinite; background: #85df1e; border-radius: 50%; height: 7px; width: 7px; }
.hero h1 { font-size: clamp(42px, 3.75vw, 58px); font-weight: 850; letter-spacing: -2.2px; line-height: 1.04; margin: 17px 0 15px; max-width: 690px; }
.hero h1 em { background: linear-gradient(90deg, #a4ec27, #65d00e); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-style: normal; }
.hero h1 em span { display: inline-block; min-width: 9.5ch; transform-origin: 50% 100%; }
.hero h1 em span.word-in { animation: hero-word-in .58s cubic-bezier(.2,.75,.2,1) both; }
.hero-lead { color: #d9e8ff; font-size: 16px; line-height: 1.6; margin: 0; max-width: 620px; }
.hero-lead strong { color: #caf47d; }
.hero-actions { display: flex; gap: 12px; margin-top: 22px; }
.hero-primary { animation: cta-pulse 2.6s infinite; }
.hero-proof { display: grid; gap: 13px; grid-template-columns: repeat(4, 1fr); margin-top: 23px; max-width: 690px; }
.hero-proof > span { display: grid; gap: 0 7px; grid-template-columns: auto 1fr; }
.hero-proof svg { color: #95e528; grid-row: span 2; margin-top: 1px; }
.hero-proof b { font-size: 11px; line-height: 1.25; }
.hero-proof small { color: #bad2f5; font-size: 9.5px; line-height: 1.3; margin-top: 2px; }
.hero-float { animation: float-card 4s ease-in-out infinite; background: linear-gradient(145deg, rgba(4,41,122,.97), rgba(6,82,190,.95)); border: 1px solid rgba(132,194,255,.4); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 18px; position: absolute; right: 2.5%; top: 205px; width: 180px; }
.hero-float > span { color: #49c6ff; display: block; }
.hero-float p { font-size: 15px; font-weight: 750; line-height: 1.4; margin: 11px 0; }
.hero-float > svg { color: var(--orange-500); float: right; transform: rotate(-28deg); }
.hero-ring { border: 1px solid rgba(81,178,255,.25); border-radius: 50%; position: absolute; z-index: 2; }
.ring-one { height: 390px; right: -150px; top: -220px; width: 390px; }
.ring-two { bottom: -300px; height: 560px; right: -170px; width: 560px; }

.section-heading { margin-bottom: 22px; }
.section-heading.centered { margin-inline: auto; max-width: 720px; text-align: center; }
.kicker { color: var(--blue-600); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; margin: 0 0 6px; text-transform: uppercase; }
.section-heading h2, .mini-heading h2 { color: var(--navy-900); font-size: clamp(27px, 2.5vw, 37px); font-weight: 820; letter-spacing: -1.1px; line-height: 1.12; margin: 0; }
.section-heading.centered h2 { align-items: center; display: flex; gap: 12px; justify-content: center; }
.section-heading.centered h2 > span { background: linear-gradient(90deg, transparent, var(--blue-600)); height: 2px; width: 34px; }
.section-heading.centered h2 > span:last-child { transform: rotate(180deg); }
.section-heading > p:last-child { color: var(--muted); font-size: 14px; margin: 8px auto 0; max-width: 680px; }
.programs { background: white; }
.program-grid { display: grid; gap: 17px; grid-template-columns: repeat(4, 1fr); }
.program-card { --accent: var(--blue-600); background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 11px 30px rgba(5,38,110,.055); min-height: 222px; overflow: hidden; padding: 23px 20px 18px; position: relative; text-align: center; transition: transform .25s, box-shadow .25s; }
.program-card::before { background: var(--accent); content: ""; height: 3px; inset: 0 0 auto; position: absolute; }
.program-card:hover { box-shadow: 0 18px 42px rgba(5,38,110,.12); transform: translateY(-7px); }
.program-card.blue { --accent: #165bdc; --soft: #e8f0ff; }
.program-card.cyan { --accent: #08aebd; --soft: #e5fbfd; }
.program-card.green { --accent: #62b912; --soft: #f0fbdc; }
.program-card.orange { --accent: #fb7c0a; --soft: #fff0df; }
.program-icon { align-items: center; background: var(--soft); border-radius: 50%; color: var(--accent); display: inline-flex; height: 45px; justify-content: center; width: 45px; }
.program-card h3 { color: var(--navy-900); font-size: 21px; line-height: 1.1; margin: 12px 0 8px; }
.program-card p { color: var(--muted); font-size: 12px; line-height: 1.52; margin: 0 auto 14px; max-width: 250px; }
.program-card a { align-items: center; border: 1px solid color-mix(in srgb, var(--accent) 50%, white); border-radius: 999px; color: var(--accent); display: inline-flex; font-size: 11px; font-weight: 800; gap: 6px; padding: 7px 14px; transition: transform .2s, background .2s, color .2s; }
.program-card a:hover { background: var(--accent); color: white; transform: translateY(-2px); }

.pathway { background: radial-gradient(circle at 7% 25%, rgba(24,109,255,.3), transparent 28%), linear-gradient(135deg, #03133f, #063a91); color: white; padding: 36px 0 40px; position: relative; }
.dark-heading { text-align: center; }
.dark-heading p { color: #99df35; font-size: 10px; font-weight: 800; letter-spacing: 1.3px; margin: 0 0 4px; text-transform: uppercase; }
.dark-heading h2 { align-items: center; display: flex; font-size: 27px; gap: 12px; justify-content: center; margin: 0; }
.dark-heading h2 span { background: linear-gradient(90deg, transparent, #2683ff); height: 2px; width: 38px; }
.dark-heading h2 span:last-child { transform: rotate(180deg); }
.pathway-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 26px; }
.pathway-step { padding-inline: 20px; position: relative; text-align: center; }
.pathway-icon { align-items: center; background: linear-gradient(145deg, #126fed, #073d9f); border: 1px solid rgba(130,198,255,.42); border-radius: 50%; box-shadow: 0 9px 22px rgba(0,14,53,.35); color: #dcefff; display: inline-flex; height: 57px; justify-content: center; width: 57px; }
.pathway-step h3 { font-size: 13px; line-height: 1.35; margin: 11px auto 0; max-width: 150px; }
.pathway-arrow { color: #d5e6ff; position: absolute; right: -10px; top: 18px; }

.why { background: #fff; }
.why-grid { align-items: center; display: grid; gap: 55px; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); }
.why-image-wrap { border-radius: 16px; box-shadow: var(--shadow-lg); height: 390px; overflow: hidden; position: relative; }
.why-image-wrap > img { height: 100%; object-fit: cover; width: 100%; }
.why-image-wrap::after { background: linear-gradient(180deg, transparent 60%, rgba(2,20,64,.35)); content: ""; inset: 0; position: absolute; }
.image-badge { align-items: center; backdrop-filter: blur(10px); background: rgba(255,255,255,.93); border-radius: 10px; bottom: 16px; box-shadow: var(--shadow-sm); color: var(--blue-600); display: flex; gap: 9px; left: 16px; padding: 10px 13px; position: absolute; z-index: 2; }
.image-badge strong, .image-badge small { display: block; }
.image-badge strong { font-size: 11px; }
.image-badge small { color: var(--muted); font-size: 9.5px; }
.why-content .section-heading { margin-bottom: 20px; }
.why-content .section-heading > p:last-child { margin-left: 0; }
.benefit-grid { display: grid; gap: 11px; grid-template-columns: repeat(2,1fr); }
.benefit-card { align-items: flex-start; background: var(--surface); border: 1px solid #e1e9f7; border-radius: 10px; display: flex; gap: 10px; padding: 13px; transition: transform .2s, box-shadow .2s; }
.benefit-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.benefit-card > span { align-items: center; background: #e5efff; border-radius: 8px; color: var(--blue-600); display: inline-flex; flex-shrink: 0; height: 35px; justify-content: center; width: 35px; }
.benefit-card h3 { color: var(--navy-900); font-size: 11px; margin: 0 0 3px; }
.benefit-card p { color: var(--muted); font-size: 8.5px; line-height: 1.45; margin: 0; }
.text-link { align-items: center; color: var(--blue-600); display: inline-flex; font-size: 11px; font-weight: 850; gap: 7px; margin-top: 18px; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.feature-strip { background: white; border-block: 1px solid var(--line); padding: 16px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.feature-grid > div { align-items: center; border-right: 1px solid var(--line); display: flex; gap: 10px; justify-content: center; padding: 0 15px; }
.feature-grid > div:last-child { border: 0; }
.feature-grid > div > span { align-items: center; background: #eff5ff; border-radius: 50%; color: var(--blue-600); display: inline-flex; flex-shrink: 0; height: 39px; justify-content: center; width: 39px; }
.feature-grid > div:nth-child(2) > span { background: #e8fbf8; color: #00a68f; }
.feature-grid > div:nth-child(3) > span { background: #fff6e5; color: #f39300; }
.feature-grid > div:nth-child(4) > span { background: #f3ebff; color: #8c36d2; }
.feature-grid > div:nth-child(5) > span { background: #eef9df; color: #5cab11; }
.feature-grid b, .feature-grid small { display: block; }
.feature-grid b { color: var(--navy-900); font-size: 11px; }
.feature-grid small { color: var(--muted); font-size: 9.5px; }

.process { background: #fff; }
.split-proof { display: grid; gap: 25px; grid-template-columns: minmax(0,1.28fr) minmax(360px,.72fr); }
.process-panel, .numbers-panel { border-radius: 14px; }
.process-panel { border: 1px solid var(--line); padding: 23px 24px; }
.mini-heading p { color: var(--blue-600); font-size: 10px; font-weight: 800; letter-spacing: 1px; margin: 0 0 3px; text-transform: uppercase; }
.mini-heading h2 { font-size: 25px; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 24px; position: relative; }
.process-grid::before { border-top: 1px dashed #afc0e2; content: ""; left: 9%; position: absolute; right: 9%; top: 25px; }
.process-grid article { padding-inline: 8px; position: relative; text-align: center; z-index: 2; }
.process-icon { align-items: center; background: white; border: 2px solid #dfe8f9; border-radius: 50%; box-shadow: 0 7px 20px rgba(5,46,122,.12); color: var(--blue-600); display: inline-flex; height: 51px; justify-content: center; width: 51px; }
.process-grid i { align-items: center; background: var(--blue-600); border-radius: 3px; color: white; display: flex; font-size: 9px; font-style: normal; height: 17px; justify-content: center; margin: -5px auto 4px; position: relative; width: 18px; }
.process-grid article:nth-child(2) .process-icon, .process-grid article:nth-child(2) i { color: #00a99c; }
.process-grid article:nth-child(3) .process-icon, .process-grid article:nth-child(3) i { color: #64b814; }
.process-grid article:nth-child(4) .process-icon, .process-grid article:nth-child(4) i { color: #f08a00; }
.process-grid article:nth-child(5) .process-icon, .process-grid article:nth-child(5) i { color: #8a36cf; }
.process-grid h3 { color: var(--navy-900); font-size: 10px; margin: 5px 0 2px; }
.process-grid p { color: var(--muted); font-size: 8.5px; line-height: 1.4; margin: 0; }
.numbers-panel { background: radial-gradient(circle at 90% 0, rgba(32,129,255,.32), transparent 38%), linear-gradient(145deg, #04143f, #06398e); color: white; padding: 23px; }
.kicker.light { color: #a5e638; }
.numbers-panel h2 { font-size: 20px; line-height: 1.2; margin: 4px 0 16px; max-width: 300px; }
.stats-grid { display: grid; gap: 9px; grid-template-columns: repeat(2,1fr); }
.stats-grid > div { align-items: center; background: linear-gradient(145deg, rgba(16,92,218,.74), rgba(8,49,130,.78)); border: 1px solid rgba(121,184,255,.24); border-radius: 8px; display: flex; gap: 10px; min-height: 66px; padding: 11px; }
.stats-grid svg { color: #69c6ff; flex-shrink: 0; }
.stats-grid p, .stats-grid b, .stats-grid small { display: block; margin: 0; }
.stats-grid b { font-size: 17px; line-height: 1; }
.stats-grid small { color: #cae0ff; font-size: 9.5px; margin-top: 4px; }

.testimonials { background: var(--surface); border-block: 1px solid #e6edf8; }
.testimonial-grid { display: grid; gap: 16px; grid-template-columns: repeat(3,1fr); }
.testimonial-card { align-items: center; background: white; border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 10px 27px rgba(5,38,110,.05); display: grid; gap: 13px; grid-template-columns: auto 1fr auto; min-height: 116px; padding: 15px; }
.testimonial-card img { border-radius: 50%; height: 56px; object-fit: cover; width: 56px; }
.testimonial-card p { color: #384361; font-size: 11.5px; line-height: 1.5; margin: 0 0 8px; }
.testimonial-card strong, .testimonial-card small { display: block; }
.testimonial-card strong { color: var(--navy-900); font-size: 11px; }
.testimonial-card small { color: var(--muted); font-size: 9.5px; }
.testimonial-card > span { color: #e3e9f3; font-family: Georgia, serif; font-size: 39px; line-height: 1; }

.resources { background: white; }
.resource-grid { display: grid; gap: 17px; grid-template-columns: repeat(3,1fr); }
.resource-card { background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 30px rgba(5,38,110,.06); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.resource-card:hover { box-shadow: 0 18px 45px rgba(5,38,110,.13); transform: translateY(-6px); }
.resource-image { height: 158px; overflow: hidden; position: relative; }
.resource-image img { height: 100%; object-fit: cover; transition: transform .45s; width: 100%; }
.resource-card:hover .resource-image img { transform: scale(1.045); }
.resource-image > span { background: var(--blue-600); border-radius: 999px; color: white; font-size: 10px; font-weight: 800; left: 11px; padding: 5px 9px; position: absolute; top: 11px; }
.resource-body { padding: 14px 15px 15px; }
.resource-body h3 { color: var(--navy-900); font-size: 16px; line-height: 1.4; margin: 0 0 9px; }
.resource-body p { color: var(--muted); font-size: 10px; margin: 0; }
.resource-body p span { color: var(--blue-600); padding-inline: 3px; }

.network { background: var(--surface); border-block: 1px solid #e6edf8; }
.region-grid { display: grid; gap: 12px; grid-template-columns: repeat(6,1fr); }
.region-grid article { align-items: center; background: white; border: 1px solid var(--line); border-radius: 10px; display: flex; flex-direction: column; justify-content: center; min-height: 88px; padding: 10px; text-align: center; transition: transform .2s, box-shadow .2s; }
.region-grid article:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.region-grid strong { color: var(--blue-600); font-size: 22px; letter-spacing: -1px; line-height: 1; }
.region-grid span { color: var(--navy-900); font-size: 11px; font-weight: 800; margin-top: 7px; }
.region-grid small { color: var(--muted); font-size: 8.5px; margin-top: 2px; }
.network-note { color: var(--muted); font-size: 10px; margin: 14px auto 0; text-align: center; }

.faq-section { background: white; }
.faq-layout { display: grid; gap: 28px; grid-template-columns: minmax(0,1fr) minmax(370px,.88fr); }
.faq-list { border-top: 1px solid var(--line); margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { align-items: center; background: none; border: 0; color: var(--navy-900); cursor: pointer; display: flex; font-size: 13px; font-weight: 700; justify-content: space-between; padding: 14px 7px; text-align: left; width: 100%; }
.faq-item button svg { color: var(--blue-600); transition: transform .25s; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { color: var(--muted); font-size: 11.5px; line-height: 1.6; margin: 0; overflow: hidden; padding-inline: 7px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 11px; }
.question-card { background: radial-gradient(circle at 90% 15%, rgba(33,129,255,.38), transparent 34%), linear-gradient(145deg, #04143f, #063b95); border-radius: 14px; color: white; overflow: hidden; padding: 32px; position: relative; }
.question-card > p { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.question-card h2 { color: #c6dafa; font-size: 14px; font-weight: 500; margin: 0 0 20px; }
.question-card .button { min-height: 42px; }
.question-card > a:last-child { align-items: center; display: flex; font-size: 11px; font-weight: 750; gap: 7px; margin-top: 16px; }
.question-art { bottom: -23px; color: rgba(104,185,255,.34); position: absolute; right: 25px; transform: scale(2.1); }

.final-cta { background: white; padding: 0 0 18px; }
.final-cta-inner { align-items: center; background: linear-gradient(100deg, #e9f5ff, #f6faff 58%, #e5f1ff); border: 1px solid #d9e7f6; border-radius: 12px; display: grid; gap: 18px; grid-template-columns: auto 1.15fr 1fr auto; min-height: 105px; padding: 17px 22px; }
.final-visual { align-items: center; background: white; border-radius: 50%; box-shadow: var(--shadow-sm); color: var(--blue-600); display: flex; height: 61px; justify-content: center; width: 61px; }
.final-cta p { color: var(--blue-600); font-size: 10px; font-weight: 800; letter-spacing: .8px; margin: 0 0 3px; text-transform: uppercase; }
.final-cta h2 { color: var(--navy-900); font-size: 18px; line-height: 1.3; margin: 0; }
.final-points { display: flex; gap: 14px; }
.final-points span { align-items: center; color: var(--navy-900); display: flex; font-size: 10px; font-weight: 750; gap: 5px; }
.final-points svg { color: var(--blue-600); }

.footer { background: radial-gradient(circle at 95% 20%, rgba(13,98,225,.24), transparent 28%), linear-gradient(135deg, #03133f, #062a72); color: #dce9ff; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.35fr repeat(3,.68fr) 1fr; padding-bottom: 37px; padding-top: 38px; }
.footer .brand-copy strong { color: white; font-size: 18px; }
.footer .brand-copy small { color: #b9cce9; font-size: 8.5px; }
.footer .brand-symbol { color: white; transform: scale(.8); transform-origin: left center; width: 43px; }
.footer-brand p { color: #b7c9e6; font-size: 11px; line-height: 1.6; margin: 12px 0; max-width: 250px; }
.footer-brand > a { color: white; font-size: 11px; font-weight: 750; }
.footer h3 { color: white; font-size: 13px; margin: 0 0 11px; }
.footer-grid > div:not(.footer-brand) > a { color: #b9c9e3; display: block; font-size: 11px; margin: 8px 0; transition: color .2s, transform .2s; }
.footer-grid > div:not(.footer-brand) > a:hover { color: white; transform: translateX(3px); }
.footer-contact > a, .footer-contact > p { align-items: flex-start; display: flex !important; gap: 7px; }
.footer-contact > p { color: #b9c9e3; font-size: 11px; line-height: 1.5; margin: 9px 0 0; }
.footer-contact svg { color: #86d8ff; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,.13); border-top: 1px solid rgba(255,255,255,.08); color: #aebed8; font-size: 10px; padding: 13px 0; text-align: center; }
.floating-actions { bottom: 19px; display: flex; gap: 9px; opacity: 0; pointer-events: none; position: fixed; right: 19px; transform: translateY(16px); transition: opacity .3s ease, transform .3s ease; z-index: 90; }
.floating-actions.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.floating-actions a { align-items: center; border-radius: 999px; box-shadow: 0 12px 28px rgba(3,26,78,.28); color: white; display: flex; justify-content: center; }
.floating-call { animation: phone-ring 2.9s infinite; background: var(--blue-600); height: 46px; width: 46px; }
.floating-whatsapp { animation: float-small 2.6s ease-in-out infinite; background: #21bf34; gap: 7px; height: 49px; padding: 0 14px; }
.floating-whatsapp span { font-size: 10px; font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.reveal.in-view { animation: reveal-rise .68s cubic-bezier(.2,.7,.2,1) both; }
.delay-1 { animation-delay: .05s !important; } .delay-2 { animation-delay: .1s !important; } .delay-3 { animation-delay: .15s !important; } .delay-4 { animation-delay: .2s !important; } .delay-5 { animation-delay: .25s !important; }

.legal-page { background: #f7f9fd; min-height: 100vh; }
.legal-header { background: white; border-bottom: 1px solid var(--line); }
.legal-nav { align-items: center; display: flex; justify-content: space-between; min-height: 72px; }
.legal-brand { align-items: center; display: flex; gap: 10px; }
.legal-brand > span { align-items: center; background: var(--blue-600); border-radius: 10px; color: white; display: flex; font-weight: 850; height: 42px; justify-content: center; width: 42px; }
.legal-brand strong, .legal-brand small { display: block; }
.legal-brand strong { color: var(--navy-900); }
.legal-brand small { color: var(--muted); font-size: 10px; }
.legal-back { color: var(--blue-600); font-size: 12px; font-weight: 800; }
.legal-hero { background: linear-gradient(135deg, #03133f, #0756c9); color: white; padding: 65px 0; }
.legal-hero p { color: #9fdf45; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.legal-hero h1 { font-size: 42px; margin: 5px 0 8px; }
.legal-hero span { color: #bfd4f2; font-size: 11px; }
.legal-content { padding: 55px 0; }
.legal-layout { display: grid; gap: 35px; grid-template-columns: 1fr 330px; }
.legal-layout > article { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 35px; }
.legal-layout article h2 { color: var(--navy-900); font-size: 20px; margin: 28px 0 9px; }
.legal-layout article p, .legal-layout article li { color: var(--muted); font-size: 13px; line-height: 1.7; }
.legal-intro { color: var(--ink) !important; font-weight: 600; }
.legal-contact { align-self: start; background: var(--navy-900); border-radius: 14px; color: white; padding: 26px; position: sticky; top: 120px; }
.legal-contact p { color: #9fde40; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.legal-contact h2 { font-size: 21px; }
.legal-contact > a:not(.button), .legal-contact > span { color: #c8d9f2; display: block; font-size: 11px; margin: 10px 0; }
.legal-contact .button { margin-top: 13px; }
.legal-footer { background: #03133f; color: #bbcae1; padding: 18px 0; }
.legal-footer > div { display: flex; font-size: 10px; justify-content: space-between; }
.legal-footer nav { display: flex; gap: 18px; }

@keyframes shine { 0%, 18% { left: -70%; } 42%, 100% { left: 140%; } }
@keyframes glow-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(126,224,24,.65); } 50% { box-shadow: 0 0 0 6px rgba(126,224,24,0); } }
@keyframes cta-pulse { 0%,100% { box-shadow: 0 10px 24px rgba(55,178,4,.27); } 50% { box-shadow: 0 10px 30px rgba(86,222,19,.53), 0 0 0 5px rgba(92,218,24,.1); } }
@keyframes cta-breathe { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.09); } }
@keyframes ripple-out { to { opacity: 0; transform: translate(-50%,-50%) scale(5); } }
@keyframes hero-word-in { from { opacity: 0; transform: translateY(18px) rotateX(65deg); } to { opacity: 1; transform: none; } }
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes float-small { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes phone-ring { 0%,70%,100% { transform: rotate(0); } 74% { transform: rotate(9deg); } 78% { transform: rotate(-8deg); } 82% { transform: rotate(6deg); } }
@keyframes reveal-rise { from { opacity: .25; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; margin-right: 18px; }
  .main-nav > a:not(.mobile-consult) { font-size: 12px; }
  .brand-copy strong { font-size: 20px; }
  .nav-cta { font-size: 12px; padding-inline: 14px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: 47px; }
  .hero-float { right: 2%; }
  .why-grid { gap: 35px; }
  .split-proof { grid-template-columns: 1fr; }
  .numbers-panel { display: grid; gap: 18px; grid-template-columns: .65fr 1.35fr; }
  .numbers-panel h2 { margin-bottom: 0; }
  .stats-grid { grid-column: 2; grid-row: 1 / span 2; }
  .feature-grid b { font-size: 10px; }
  .footer-grid { gap: 25px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 74px; }
  .topbar { display: none; }
  .nav-inner { height: 68px; }
  .brand-copy strong { font-size: 22px; }
  .brand-copy small { font-size: 8.5px; }
  .nav-cta { display: none; }
  .menu-button { align-items: center; background: #edf4ff; border: 1px solid #dbe8fb; border-radius: 9px; color: var(--blue-700); display: flex; height: 43px; justify-content: center; width: 43px; }
  .main-nav { align-items: stretch; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(4,24,73,.17); display: none; gap: 0; left: 0; margin: 0; padding: 10px 22px 20px; position: absolute; right: 0; top: 68px; }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.mobile-consult) { border-bottom: 1px solid #edf1f7; font-size: 14px; padding: 13px 3px; }
  .main-nav > a:not(.mobile-consult)::after { display: none; }
  .mobile-consult { background: var(--green-600); border-radius: 7px; color: white; display: block; font-size: 13px; font-weight: 800; margin-top: 13px; padding: 13px; text-align: center; }
  .hero { height: 600px; }
  .hero-background { object-position: 64% center; }
  .hero::after { background: linear-gradient(90deg, rgba(3,18,62,.98), rgba(4,40,103,.88) 62%, rgba(4,48,115,.35)); }
  .hero-copy { max-width: 580px; }
  .hero h1 { font-size: 47px; }
  .hero-float { bottom: 35px; right: 25px; top: auto; width: 165px; }
  .program-grid { grid-template-columns: repeat(2,1fr); }
  .pathway-grid { gap: 20px; grid-template-columns: repeat(5, 180px); overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
  .pathway-step { scroll-snap-align: start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { height: 430px; }
  .feature-grid { gap: 0; grid-template-columns: repeat(5, 190px); overflow-x: auto; padding-block: 5px; }
  .feature-grid > div { justify-content: flex-start; min-height: 48px; }
  .testimonial-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child, .resource-card:last-child { grid-column: 1 / -1; }
  .region-grid { grid-template-columns: repeat(3,1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: auto 1fr auto; }
  .final-points { display: none; }
  .footer-grid { grid-template-columns: repeat(4,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-contact { position: static; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding-inline: 18px; }
  .compact-section { padding: 36px 0; }
  .brand-symbol { transform: scale(.85); transform-origin: left center; width: 46px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 7.5px; }
  .hero { height: auto; min-height: 860px; }
  .hero-background { bottom: 0; height: 320px; inset: auto 0 0; object-position: 76% 30%; }
  .hero::after { background: linear-gradient(180deg, #03143f 0%, #05245d 58%, rgba(4,42,101,.78) 70%, rgba(3,27,67,.16) 100%); }
  .hero-inner { align-items: flex-start; }
  .hero-copy { padding: 34px 0 338px; width: 100%; }
  .eyebrow { font-size: 8.5px; line-height: 1.35; padding: 7px 10px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 40px); letter-spacing: -1.5px; line-height: 1.07; margin: 15px 0 14px; max-width: 100%; }
  .hero h1 em span { min-width: 0; }
  .hero-lead { font-size: 13.5px; line-height: 1.58; max-width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .hero-actions .button { font-size: 14px; min-height: 49px; }
  .hero-proof { gap: 14px 12px; grid-template-columns: repeat(2,1fr); margin-top: 20px; max-width: 100%; }
  .hero-proof b { font-size: 10px; }
  .hero-proof small { font-size: 9px; }
  .hero-float { bottom: 18px; left: 18px; padding: 14px; right: auto; width: 150px; }
  .hero-float p { font-size: 11.5px; margin: 6px 0; }
  .section-heading { margin-bottom: 22px; }
  .section-heading h2, .mini-heading h2 { font-size: 27px; }
  .section-heading.centered h2 { gap: 7px; }
  .section-heading.centered h2 > span { width: 20px; }
  .section-heading > p:last-child { font-size: 12.5px; line-height: 1.55; }
  .program-grid { gap: 13px; grid-template-columns: 1fr; }
  .program-card { min-height: 0; padding: 22px 18px 19px; }
  .program-card h3 { font-size: 20px; }
  .program-card p { font-size: 12.5px; max-width: 300px; }
  .pathway { padding-block: 34px; }
  .dark-heading h2 { font-size: 20px; }
  .pathway-grid { grid-template-columns: repeat(5, 155px); margin-top: 23px; }
  .pathway-arrow { display: none; }
  .why-grid { gap: 28px; }
  .why-image-wrap { height: 290px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card h3 { font-size: 12px; }
  .benefit-card p { font-size: 10.5px; }
  .feature-strip { padding-block: 13px; }
  .split-proof { gap: 17px; }
  .process-panel { overflow: hidden; padding: 20px 16px; }
  .process-grid { gap: 12px; grid-template-columns: repeat(2,1fr); width: auto; }
  .process-grid::before { display: none; }
  .process-grid article { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 14px 8px; }
  .process-grid article:last-child { grid-column: 1 / -1; }
  .process-grid h3 { font-size: 11.5px; }
  .process-grid p { font-size: 10px; }
  .numbers-panel { display: block; padding: 20px; }
  .numbers-panel h2 { margin-bottom: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div { padding: 9px; }
  .stats-grid b { font-size: 15px; }
  .testimonial-grid, .resource-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child, .resource-card:last-child { grid-column: auto; }
  .testimonial-card { min-height: 125px; }
  .testimonial-card p { font-size: 12px; }
  .resource-image { height: 205px; }
  .resource-body h3 { font-size: 15px; }
  .region-grid { grid-template-columns: repeat(2,1fr); }
  .region-grid article { min-height: 108px; }
  .question-card { padding: 24px; }
  .question-card > p { font-size: 21px; }
  .question-art { opacity: .65; }
  .final-cta { padding-bottom: 13px; }
  .final-cta-inner { gap: 12px; grid-template-columns: auto 1fr; min-height: 0; padding: 17px; }
  .final-visual { height: 48px; width: 48px; }
  .final-cta h2 { font-size: 15px; }
  .final-cta .button { grid-column: 1 / -1; min-height: 45px; }
  .footer-grid { gap: 25px 20px; grid-template-columns: repeat(2,1fr); padding-block: 32px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer h3 { font-size: 12px; }
  .footer-grid > div:not(.footer-brand) > a, .footer-contact > p { font-size: 10px; }
  .floating-actions { bottom: 12px; flex-direction: column-reverse; right: 12px; }
  .floating-whatsapp { padding-inline: 11px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp, .floating-call { height: 48px; width: 48px; }
  .legal-hero { padding: 45px 0; }
  .legal-hero h1 { font-size: 34px; }
  .legal-content { padding: 35px 0; }
  .legal-layout > article { padding: 24px; }
  .legal-footer > div { align-items: center; flex-direction: column; gap: 10px; }
}

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