:root {
    --font-sans: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
    --blue-950: #06345f;
    --blue-900: #07487c;
    --blue-800: #075f9f;
    --blue-700: #0877bd;
    --blue-600: #0d8ed1;
    --blue-100: #dff3ff;
    --blue-50: #f3faff;
    --orange-700: #e85b00;
    --orange-600: #f36b0d;
    --orange-500: #ff7a18;
    --orange-100: #fff0e3;
    --green-700: #3b9919;
    --green-600: #55b52c;
    --green-100: #ecf9e7;
    --ink: #102b4b;
    --muted: #5e7188;
    --line: #dbe7f1;
    --surface: #ffffff;
    --surface-soft: #f7fbff;
    --danger: #b42318;
    --danger-soft: #fef3f2;
    --shadow-sm: 0 8px 25px rgba(9, 72, 121, .08);
    --shadow-md: 0 18px 50px rgba(8, 74, 125, .14);
    --shadow-lg: 0 30px 80px rgba(4, 64, 113, .18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    font-family: var(--font-sans);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga" 1, "calt" 1;
}
body::selection { background: var(--blue-100); color: var(--blue-950); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 94px 0; }
#main-content,
section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
    scroll-margin-block-start: calc(var(--header-height) + 18px);
}
.hero-grid > *,
.benefits-layout > *,
.faq-layout > *,
.callback-layout > *,
.standalone-form-layout > *,
.inner-hero-grid > * {
    min-width: 0;
}
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    z-index: 10000;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.preview-ribbon {
    position: relative;
    z-index: 1001;
    padding: 7px 20px;
    background: #fff4cf;
    color: #6e4c00;
    border-bottom: 1px solid #f1d97b;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    inset-block-start: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(218, 232, 243, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 58px; height: 68px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.25; }
.brand-copy strong { color: var(--blue-800); font-size: 17px; line-height: 1.2; white-space: normal; overflow-wrap: anywhere; }
.brand-copy small { margin-top: 4px; color: var(--orange-600); font-size: 10.5px; text-align: start; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; flex-wrap: nowrap; min-width: 0; }
.site-nav { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: flex-end; min-width: 0; }
.site-nav > a {
    padding: 10px 13px;
    color: #314e6e;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, transform .2s ease;
    overflow-wrap: anywhere;
}
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--blue-700); background: var(--blue-50); }
.site-nav > .nav-cta {
    margin-inline-start: 8px;
    padding-inline: 19px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    box-shadow: 0 10px 22px rgba(232, 91, 0, .22);
}
.site-nav > .nav-cta:hover, .site-nav > .nav-cta:focus-visible { color: #fff; background: linear-gradient(135deg, #ff8b2d, var(--orange-600)); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--blue-50); padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 4px auto; border-radius: 3px; background: var(--blue-900); transition: transform .2s, opacity .2s; }
.language-switcher { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.language-switcher a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-inline-size: 84px;
    block-size: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--blue-900);
    border: 1px solid #d6e3ef;
    background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
    box-shadow: 0 6px 18px rgba(8, 74, 125, .08);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    transition: color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.language-switch-icon { display: inline-flex; width: 15px; height: 15px; flex: 0 0 auto; }
.language-switch-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.language-switcher a:hover,
.language-switcher a:focus-visible { color: #fff; transform: none; background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 8px 18px rgba(8,119,189,.2); }
.language-switcher a:focus-visible { outline: 3px solid rgba(13, 142, 209, .27); outline-offset: 3px; }

/* Shared typography and buttons */
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
}
.section-kicker.light { color: #cbeeff; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 6px rgba(85,181,44,.12); }
.section-heading { max-width: 680px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .benefits-intro h2, .location-copy h2, .callback-copy h2, .inner-hero h1, .success-card h1 {
    margin: 10px 0 15px;
    color: var(--blue-950);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
    hyphens: auto;
}
.section-heading p, .benefits-intro > p, .location-copy > p, .callback-copy > p, .inner-hero p { margin: 0; color: var(--muted); font-size: 17px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    overflow-wrap: anywhere;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(13, 142, 209, .27); outline-offset: 3px; }
.button-large { min-height: 56px; padding: 15px 27px; border-radius: 16px; font-size: 16px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); box-shadow: 0 13px 30px rgba(232, 91, 0, .24); }
.button-primary:hover { box-shadow: 0 17px 35px rgba(232, 91, 0, .3); }
.button-whatsapp { color: #fff; background: linear-gradient(135deg, #22a867, #128c5a); box-shadow: 0 13px 30px rgba(18,140,90,.22); }
.button-whatsapp svg { width: 21px; height: 21px; fill: currentColor; }
.button-light { color: var(--blue-800); background: #fff; border-color: #cfe1ee; box-shadow: var(--shadow-sm); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-weight: 800; }
.text-link:hover span { transform: translateX(0); }
.site-nav > a span, .text-link span { transition: transform .2s ease; }
.text-link span { display: inline-block; }
[dir="rtl"] .text-link:hover span { transform: translateX(-3px); }
[dir="ltr"] .text-link:hover span { transform: translateX(3px); }
.text-link.strong { margin-top: 22px; }

html.js-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
html.js-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 700px;
    padding: 70px 0 60px;
    background:
        radial-gradient(circle at 85% 13%, rgba(223,243,255,.95), transparent 34%),
        radial-gradient(circle at 12% 82%, rgba(255,240,227,.86), transparent 28%),
        linear-gradient(145deg, #fff 0%, #f6fbff 54%, #edf8ff 100%);
}
.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .26;
    background-image: radial-gradient(#0d8ed1 1.25px, transparent 1.25px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to left, #000, transparent 43%);
}
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 420px; height: 420px; inset-inline-end: -220px; inset-block-start: 90px; background: rgba(8,119,189,.10); }
.hero-orb-two { width: 280px; height: 280px; inset-inline-start: -160px; inset-block-end: -100px; background: rgba(243,107,13,.10); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); align-items: center; gap: 62px; }
.hero-copy { padding-block: 30px; }
.hero-copy h1 { margin: 17px 0 20px; max-width: 670px; color: var(--blue-950); font-size: clamp(43px, 5.5vw, 68px); line-height: 1.12; letter-spacing: -.045em; }
.hero-copy > p { max-width: 630px; margin: 0; color: #4f6680; font-size: clamp(18px, 2vw, 21px); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 31px; }
.hero-actions .text-link { flex-basis: 100%; width: fit-content; margin-top: 4px; }
.hero-microcopy { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 27px; color: #4b627c; font-size: 13px; font-weight: 700; }
.hero-microcopy span { display: inline-flex; align-items: center; gap: 7px; }
.hero-microcopy svg { width: 18px; height: 18px; fill: var(--green-600); }
.hero-visual { position: relative; max-width: 510px; margin-inline: auto; padding: 19px 18px 32px; }
.hero-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: .91;
    border: 10px solid rgba(255,255,255,.92);
    border-radius: 46% 46% 27% 27% / 35% 35% 22% 22%;
    background: #dceefa;
    box-shadow: var(--shadow-lg);
}
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,64,110,.14), transparent 32%); pointer-events: none; }
.hero-image-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-badge { position: absolute; z-index: 2; display: flex; flex-direction: column; border: 5px solid #fff; box-shadow: var(--shadow-md); }
.seats-badge { inset-block-start: 9%; inset-inline-start: -6%; width: 128px; height: 128px; justify-content: center; align-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, var(--blue-600), var(--blue-900)); text-align: center; transform: rotate(-5deg); }
.seats-badge strong { font-size: 19px; line-height: 1.2; }
.seats-badge span { margin-top: 5px; color: #d8f3ff; font-size: 12px; }
.saving-badge { inset-inline-end: -8%; inset-block-end: 12%; min-width: 178px; padding: 16px 18px; border-radius: 22px; color: #fff; background: linear-gradient(145deg, var(--orange-500), var(--orange-700)); transform: rotate(3deg); }
.saving-badge > span, .saving-badge em { font-size: 12px; font-style: normal; }
.saving-badge strong { font-size: 31px; line-height: 1.15; }
.saving-badge small { font-size: 14px; }
.year-pill { position: absolute; z-index: 3; inset-inline: 18%; inset-block-end: 0; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 19px; border: 1px solid #cce2f1; border-radius: 999px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-sm); }
.year-pill span { color: var(--muted); font-size: 12px; }
.year-pill strong { color: var(--blue-800); font-size: 16px; }

/* Trust */
.trust-strip { position: relative; z-index: 4; margin-top: -23px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid #dbe9f3; border-radius: var(--radius-md); background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 23px 25px; }
.trust-item + .trust-item { border-inline-start: 1px solid #e3edf5; }
.trust-icon { flex: 0 0 42px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--blue-700); background: var(--blue-50); font-size: 12px; font-weight: 900; }
.trust-item:nth-child(2) .trust-icon { color: var(--orange-700); background: var(--orange-100); }
.trust-item:nth-child(3) .trust-icon { color: var(--green-700); background: var(--green-100); }
.trust-item strong { display: block; color: var(--blue-950); font-size: 15px; }
.trust-item p { margin: 2px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.trust-item strong,
.trust-item p,
.stage-card h3,
.stage-card p,
.benefit-card h3,
.benefit-card p,
.footer-grid > div > a,
.callback-form .field label,
.callback-copy li,
.mobile-actions a {
    overflow-wrap: anywhere;
}

/* Stages */
.stages-section { background: #fff; }
.stage-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 15px; margin-top: 43px; }
.stage-card { position: relative; overflow: hidden; min-height: 318px; padding: 25px 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.stage-card::before { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; inset-inline-end: -58px; inset-block-start: -58px; background: rgba(13,142,209,.07); }
.stage-card:hover { transform: translateY(-7px); border-color: #bcdced; box-shadow: var(--shadow-md); }
.stage-number { position: absolute; inset-inline-end: 17px; inset-block-start: 14px; color: #c5d9e8; font-size: 27px; font-weight: 900; }
.stage-icon { display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 23px; border-radius: 18px; color: var(--blue-700); background: var(--blue-50); }
.stage-icon svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.stage-card:nth-child(2) .stage-icon { color: var(--orange-700); background: var(--orange-100); }
.stage-card:nth-child(3) .stage-icon { color: var(--green-700); background: var(--green-100); }
.stage-card:nth-child(4) .stage-icon { color: #7b50b8; background: #f2ebfa; }
.stage-card:nth-child(5) .stage-icon { color: #164b91; background: #e8f0fb; }
.stage-range { color: var(--blue-700); font-size: 12px; font-weight: 900; text-align: start; unicode-bidi: isolate; }
.stage-card h3 { margin: 7px 0 10px; color: var(--blue-950); font-size: 18px; line-height: 1.35; }
.stage-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.stage-card a { position: absolute; inset-inline-start: 20px; inset-block-end: 20px; color: var(--blue-700); font-size: 13px; font-weight: 900; }

/* Benefits */
.benefits-section { overflow: hidden; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); }
.benefits-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 70px; align-items: center; }
.benefits-intro h2, .benefits-intro > p { color: #fff; }
.benefits-intro > p { color: #cce8f9; }
.benefits-intro .section-kicker { color: #83d1f7; }
.benefit-stat { display: inline-flex; align-items: center; gap: 13px; margin-top: 30px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: rgba(255,255,255,.09); }
.benefit-stat strong { color: #fff; font-size: 26px; direction: inherit; unicode-bidi: isolate; }
.benefit-stat span { color: #d2edfb; font-size: 13px; }
.benefit-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.benefit-card { display: flex; gap: 14px; min-height: 145px; padding: 24px 21px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.09); box-shadow: 0 10px 35px rgba(0,0,0,.08); }
.benefit-check { flex: 0 0 35px; display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: #fff; background: var(--green-600); font-weight: 900; }
.benefit-card h3 { margin: 0 0 7px; color: #fff; font-size: 17px; }
.benefit-card p { margin: 0; color: #cce8f9; font-size: 13px; line-height: 1.75; }

/* Fees */
.fees-section { background: var(--surface-soft); }
.fees-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.deadline-card { flex: 0 0 auto; min-width: 238px; padding: 18px 22px; border: 1px solid #f4cda9; border-radius: 18px; background: var(--orange-100); }
.deadline-card span, .deadline-card small { display: block; color: #9c4c12; font-size: 12px; }
.deadline-card strong { display: block; margin: 3px 0; color: var(--orange-700); font-size: 25px; text-align: start; unicode-bidi: isolate; }
.fees-table-wrap { overflow-x: auto; border: 1px solid #d7e5ef; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.fees-table { width: 100%; min-width: 850px; border-collapse: separate; border-spacing: 0; text-align: right; }
.fees-table th, .fees-table td { padding: 17px 20px; border-bottom: 1px solid #e4edf4; }
.fees-table thead th { color: #fff; background: var(--blue-800); font-size: 13px; }
.fees-table thead th:first-child { border-start-start-radius: 19px; }
.fees-table thead th:last-child { border-start-end-radius: 19px; }
.fees-table tbody th { color: var(--blue-950); font-size: 15px; text-align: start; unicode-bidi: isolate; }
.fees-table tbody td { color: #25445f; }
.fees-table tbody strong { font-size: 17px; direction: inherit; unicode-bidi: isolate; }
.fees-table td small { color: var(--muted); }
.fees-table .featured { background: #f2faee; }
.fees-table thead .featured { background: var(--green-600); }
.fees-table tbody tr:last-child > * { border-bottom: 0; }
.best-price { display: inline-block; padding: 7px 12px; border-radius: 10px; color: var(--green-700); background: #e5f7dc; font-weight: 900; direction: ltr; unicode-bidi: isolate; }
.table-action { display: inline-flex; padding: 8px 13px; border: 1px solid #cde1ef; border-radius: 10px; color: var(--blue-700); background: #fff; font-size: 12px; font-weight: 900; white-space: nowrap; }
.table-action:hover { background: var(--blue-50); }
.fees-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; color: var(--muted); font-size: 12px; }
.fees-notes span::first-letter { color: var(--green-600); }

/* Location */
.location-section { background: #fff; }
.location-card { display: grid; grid-template-columns: 1fr; min-height: 370px; overflow: hidden; border: 1px solid #d7e8f3; border-radius: var(--radius-lg); background: linear-gradient(130deg, #fff, #f4fbff); box-shadow: var(--shadow-md); }
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.location-copy h2 { font-size: clamp(30px, 4vw, 43px); }
.location-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.map-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(#5ca76b 1px, transparent 1px), linear-gradient(90deg, #5ca76b 1px, transparent 1px); background-size: 34px 34px; }
.map-pin { position: absolute; z-index: 3; inset-inline-start: 49%; inset-block-start: 42%; width: 48px; height: 58px; border-radius: 50% 50% 50% 0; background: var(--orange-600); transform: rotate(-45deg); box-shadow: 0 14px 25px rgba(232,91,0,.25); }
.map-pin i { position: absolute; width: 18px; height: 18px; inset: 15px; border-radius: 50%; background: #fff; }
.map-label { position: absolute; z-index: 4; inset-inline-start: calc(49% + 59px); inset-block-start: 39%; padding: 10px 15px; border-radius: 13px; background: #fff; box-shadow: var(--shadow-sm); }
.map-label strong, .map-label span { display: block; }
.map-label strong { color: var(--blue-800); font-size: 13px; }
.map-label span { color: var(--muted); font-size: 11px; }

/* FAQ */
.faq-section { background: var(--surface-soft); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 5px 16px rgba(10,74,118,.04); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 21px; color: var(--blue-950); font-size: 15px; font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 29px; width: 29px; height: 29px; border-radius: 9px; color: var(--blue-700); background: var(--blue-50); font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 21px 20px; color: var(--muted); font-size: 14px; }

/* Callback */
.callback-section { overflow: hidden; background: linear-gradient(130deg, var(--blue-950), var(--blue-700)); }
.callback-layout { display: grid; grid-template-columns: minmax(0, .41fr) minmax(0, .59fr); gap: 40px; align-items: start; }
.callback-copy { align-self: start; max-width: 560px; padding-top: 4px; }
.callback-copy h2 { color: #fff; font-size: clamp(1.7rem, calc(3vw + .9rem), 3rem); line-height: 1.08; max-width: 13ch; text-wrap: balance; }
.callback-copy > p { color: #c9e8f8; max-width: 54ch; }
.callback-copy ul { display: grid; gap: 8px; margin: 18px 0 20px; padding: 0; list-style: none; color: #ecf9ff; font-weight: 700; }
.callback-copy li { display: flex; align-items: flex-start; gap: 10px; }
.callback-copy li::before { content: "✓"; display: inline-grid; place-items: center; flex: 0 0 19px; width: 19px; height: 19px; margin-inline-end: 0; border-radius: 50%; background: var(--green-600); font-size: 10px; line-height: 1; transform: translateY(3px); }
.callback-phone { padding-top: 0; margin-top: 18px; }
.callback-phone span { display: block; color: #bfe5f8; font-size: 12px; }
.callback-phone a { color: #fff; font-size: clamp(1.35rem, 1.1vw + 1rem, 1.85rem); font-weight: 900; }
.callback-form-card { position: relative; z-index: 1; overflow: hidden; border: 1px solid #dce8f3; border-radius: 25px; background: #fff; box-shadow: 0 24px 58px rgba(6,52,95,.18); }
.form-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 19px 27px; border-bottom: 1px solid #e5edf3; background: #f8fbfd; }
.form-card-head span { color: var(--blue-950); font-size: 17px; font-weight: 900; }
.form-card-head strong { color: var(--green-700); font-size: 12px; }
.callback-form { position: relative; padding: 24px 27px 28px; }
.callback-form .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; align-items: start; }
.field-wide { grid-column: 1 / -1; }
.callback-form .field-wide { grid-column: 1 / -1; }
.callback-form .field { display: grid; gap: 8px; align-content: start; }
.callback-form .field label { display: block; margin-bottom: 0; color: #24405d; font-size: 12.5px; font-weight: 900; text-align: start; }
.field label span { color: var(--orange-600); }
.field label em { color: #8091a2; font-style: normal; font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #ccdce8;
    border-radius: 11px;
    color: var(--ink);
    background: #fff;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.65; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9fc5dc; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(13,142,209,.11); outline: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); background: #fffafa; }
.field-error { display: block; min-height: 18px; margin-top: 4px; color: var(--danger); font-size: 11px; line-height: 1.4; }
.consent-field { gap: 6px; }
.callback-form .consent-field .consent-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 0; min-height: 44px; color: #536b82; font-size: 12px; font-weight: 700; cursor: pointer; }
.callback-form .consent-field .consent-check span { color: #536b82; font-weight: 700; }
.callback-form .consent-field .consent-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-700); }
.callback-form .consent-field .consent-check a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.callback-form .consent-field .consent-error { margin-inline-start: 0; }
.callback-form .recaptcha-field { gap: 10px; }
.callback-form .recaptcha-label { color: #24405d; font-size: 12.5px; font-weight: 900; }
.callback-form .recaptcha-field .g-recaptcha { max-width: 100%; overflow: hidden; }
.callback-form .form-actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.callback-form .form-actions .button { min-width: 200px; width: fit-content; flex: 0 0 auto; border: 0; }
.callback-form .form-actions p { margin: 0; color: var(--muted); font-size: 11.5px; max-width: 420px; }
.form-alert { margin-bottom: 15px; padding: 12px 14px; border-radius: 11px; font-size: 13px; }
.form-alert-error { color: var(--danger); background: var(--danger-soft); border: 1px solid #fecdca; }
.form-alert-note { margin-top: 15px; color: #705500; background: #fff8db; border: 1px solid #f2df8e; }
.button:disabled, button:disabled { cursor: not-allowed; opacity: .55; transform: none !important; box-shadow: none !important; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.callback-form.is-submitting .button-loader { display: inline-block; }
.callback-form.is-submitting [data-button-label] { opacity: .85; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Inner pages */
.inner-hero { position: relative; overflow: hidden; padding: 68px 0 72px; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); }
.inner-hero::after { content: ""; position: absolute; width: 430px; height: 430px; inset-inline-end: -130px; inset-block-start: -220px; border: 80px solid rgba(255,255,255,.05); border-radius: 50%; }
.inner-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: center; }
.inner-hero h1 { max-width: 720px; color: #fff; }
.inner-hero p { max-width: 690px; color: #c9e8f8; }
.inner-hero .eyebrow { color: #91d8fa; }
.inner-hero.compact { padding: 58px 0; }
.back-link { display: inline-flex; gap: 7px; margin-bottom: 22px; color: #d4f0fd; font-size: 13px; font-weight: 800; }
.inner-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; color: #fff; font-size: 13px; font-weight: 800; }
.inner-points span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); }
.mini-contact-card { padding: 27px; border: 1px solid rgba(255,255,255,.19); border-radius: 22px; background: rgba(255,255,255,.1); color: #fff; box-shadow: 0 25px 60px rgba(0,0,0,.13); }
.mini-contact-card span { color: #bfe8fb; font-size: 13px; }
.mini-contact-card strong { display: block; margin: 5px 0; font-size: 31px; text-align: start; unicode-bidi: isolate; }
.mini-contact-card p { color: #d8f0fb; font-size: 13px; }
.standalone-form-section { background: var(--surface-soft); }
.standalone-form-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: 35px; align-items: start; }
.form-side-note { position: sticky; top: calc(var(--header-height) + 25px); padding: 32px; border: 1px solid #d9e8f2; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.form-side-note h2 { margin: 9px 0 12px; color: var(--blue-950); font-size: 27px; line-height: 1.35; }
.form-side-note p { color: var(--muted); font-size: 14px; }
.form-side-note ol { margin: 22px 0 0; padding: 0; list-style: none; counter-reset: step; }
.form-side-note li { position: relative; padding: 11px 42px 11px 0; color: #36546e; font-size: 13px; font-weight: 700; counter-increment: step; }
.form-side-note li::before { content: counter(step); position: absolute; inset-inline-start: 0; display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; color: #fff; background: var(--blue-700); font-size: 12px; }
.standalone-card { box-shadow: var(--shadow-md); }

/* Thank you and privacy */
.success-section { min-height: calc(100vh - var(--header-height)); display: grid; align-items: center; padding: 75px 0 90px; background: radial-gradient(circle at 50% 10%, #e9f8ff, #f8fcff 50%, #fff); }
.success-card { max-width: 760px; margin-inline: auto; padding: 55px 48px; border: 1px solid #d8e8f2; border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); text-align: center; }
.success-icon { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%; color: #fff; background: var(--green-600); box-shadow: 0 14px 28px rgba(85,181,44,.24); }
.success-icon svg { width: 43px; fill: none; stroke: currentColor; stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.success-card h1 { font-size: clamp(30px,4vw,45px); }
.success-card > p { color: var(--muted); }
.reference-box { width: fit-content; min-width: 230px; margin: 20px auto 28px; padding: 12px 22px; border: 1px dashed var(--blue-600); border-radius: 13px; color: var(--blue-800); background: var(--blue-50); font-size: 23px; font-weight: 900; letter-spacing: .06em; }
.success-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 28px 0; }
.success-steps span { display: flex; align-items: center; gap: 9px; padding: 13px; border-radius: 13px; color: #36536d; background: #f5f9fc; font-size: 12px; font-weight: 700; text-align: right; }
.success-steps strong { flex: 0 0 27px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #fff; background: var(--blue-700); unicode-bidi: isolate; }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.policy-section { background: var(--surface-soft); }
.policy-card { max-width: 900px; padding: 45px 50px; border: 1px solid #dbe8f1; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.policy-card h2 { margin: 28px 0 8px; color: var(--blue-900); font-size: 21px; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p { margin: 0; color: #526a81; font-size: 15px; }
.policy-version { margin-top: 32px !important; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px !important; }

/* Footer and mobile actions */
.site-footer { padding: 56px 0 24px; color: #d8ebf6; background: #052f56; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 64px; object-fit: contain; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: #fff; font-size: 17px; }
.footer-brand span { margin-top: 5px; color: #afd4e7; font-size: 12px; }
.footer-title { display: block; margin-bottom: 11px; color: #fff; }
.footer-grid > div > a { display: block; width: fit-content; margin: 7px 0; color: #bcdcea; font-size: 13px; }
.footer-grid > div > a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8dbbd1; font-size: 11px; }
.mobile-actions { display: none; }

@media (max-width: 1120px) {
    :root { --container: 980px; }
    .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 35px; }
    .stage-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .stage-card:nth-child(4), .stage-card:nth-child(5) { min-height: 280px; }
    .benefits-layout, .callback-layout { gap: 40px; }
}

@media (max-width: 900px) {
    :root { --header-height: 76px; }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 72px 0; }
    .site-header { height: var(--header-height); }
    .header-actions { gap: 10px; }
    .brand img { width: 47px; height: 56px; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy small { font-size: 8.8px; }
    .nav-toggle { display: block; }
    .site-nav { position: fixed; inset-inline: 15px; inset-block-start: calc(var(--header-height) + 8px); display: none; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid #d7e5ef; border-radius: 17px; background: #fff; box-shadow: var(--shadow-md); }
    .site-nav.is-open { display: flex; }
    .site-nav > a { text-align: center; }
    .site-nav > .nav-cta { margin: 4px 0 0; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
    .hero { min-height: auto; padding: 48px 0 54px; }
    .hero-grid { grid-template-columns: 1fr; gap: 35px; }
    .hero-copy { padding: 0; text-align: center; }
    .hero-copy h1, .hero-copy > p { margin-inline: auto; }
    .hero-actions, .hero-microcopy { justify-content: center; }
    .hero-visual { width: min(100%, 510px); }
    .trust-strip { margin-top: 0; padding-top: 18px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item + .trust-item { border-inline-start: 0; border-top: 1px solid #e3edf5; }
    .benefits-layout, .faq-layout, .callback-layout, .location-card, .standalone-form-layout, .inner-hero-grid { grid-template-columns: 1fr; }
    .benefits-layout, .faq-layout, .callback-layout { gap: 30px; }
    .callback-copy { max-width: none; padding-top: 0; }
    .callback-copy h2 { max-width: none; }
    .callback-copy ul { margin-bottom: 18px; }
    .callback-form-card { width: 100%; }
    .fees-head { align-items: stretch; flex-direction: column; }
    .deadline-card { width: fit-content; }
    .location-copy { padding: 40px 35px; }
    .form-side-note { position: static; }
    .inner-hero-grid { gap: 30px; }
    .mini-contact-card { max-width: 440px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
    body { padding-bottom: 66px; }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 58px 0; }
    .preview-ribbon { padding-inline: 10px; font-size: 11px; }
    .header-actions { gap: 8px; }
    .language-switcher a { min-inline-size: 76px; block-size: 44px; font-size: 12px; padding-inline: 12px; gap: 6px; }
    .language-switch-icon { width: 14px; height: 14px; }
    .brand-copy small { display: none; }
    .hero { padding-top: 35px; }
    .hero-copy h1 { font-size: clamp(36px, 12vw, 49px); }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { align-self: center; }
    .hero-microcopy { gap: 10px; }
    .hero-visual { padding-inline: 10px; }
    .hero-image-frame { border-width: 7px; border-radius: 42% 42% 24% 24% / 32% 32% 21% 21%; }
    .seats-badge { width: 103px; height: 103px; inset-inline-start: -2%; }
    .seats-badge strong { font-size: 15px; }
    .saving-badge { min-width: 148px; inset-inline-end: 0; padding: 12px 14px; }
    .saving-badge strong { font-size: 25px; }
    .year-pill { inset-inline: 11%; padding: 10px 13px; }
    .year-pill span { display: none; }
    .stage-grid { grid-template-columns: 1fr; }
    .stage-card, .stage-card:nth-child(4), .stage-card:nth-child(5) { min-height: 250px; }
    .benefit-list { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }
    .fees-table-wrap { margin-inline: -12px; border-radius: 0; border-inline: 0; }
    .fees-notes { display: grid; gap: 7px; }
    .location-copy { padding: 32px 24px; }
    .location-actions, .success-actions { flex-direction: column; align-items: stretch; }
    .location-actions .button, .success-actions .button { width: 100%; }
    .callback-form-card { border-radius: 20px; }
    .form-card-head { padding: 16px 18px; }
    .form-card-head strong { display: none; }
    .callback-layout { gap: 22px; }
    .callback-copy h2 { font-size: clamp(1.7rem, 6.2vw, 2.45rem); line-height: 1.1; max-width: 100%; }
    .callback-copy > p { max-width: 100%; font-size: 15px; }
    .callback-copy ul { gap: 7px; margin: 16px 0 18px; }
    .callback-copy li::before { flex-basis: 18px; width: 18px; height: 18px; font-size: 9px; transform: translateY(2px); }
    .callback-phone { margin-top: 14px; }
    .callback-phone a { font-size: clamp(1.25rem, 5.4vw, 1.55rem); }
    .callback-form { padding: 18px 16px 22px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .form-actions { align-items: stretch; flex-direction: column; }
    .form-actions .button { width: 100%; }
    .form-actions p { text-align: center; }
    .inner-hero { padding: 45px 0 52px; }
    .inner-hero h1 { font-size: 35px; }
    .mini-contact-card strong { font-size: 25px; }
    .form-side-note { padding: 25px 21px; }
    .success-section { padding: 45px 0 60px; }
    .success-card { padding: 40px 20px; border-radius: 22px; }
    .success-steps { grid-template-columns: 1fr; }
    .policy-card { padding: 30px 22px; border-radius: 18px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 4px; }
    .mobile-actions {
        position: fixed;
        z-index: 1100;
        inset-inline: 0;
        inset-block-end: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1.35fr;
        min-height: 62px;
        padding: 6px max(6px, env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
        border-top: 1px solid #d4e1ea;
        background: rgba(255,255,255,.97);
        box-shadow: 0 -10px 28px rgba(7,63,104,.13);
        backdrop-filter: blur(13px);
    }
    .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 4px; border-radius: 10px; color: var(--blue-800); font-size: 11px; font-weight: 900; }
    .mobile-actions a + a { border-inline-start: 1px solid #e2ebf2; }
    .mobile-actions .primary { color: #fff; background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); border: 0; }
}

@media (max-width: 767px) {
    .callback-form .form-grid { grid-template-columns: 1fr; gap: 16px; }
    .callback-form .field-wide { grid-column: auto; }
    .callback-form .form-actions { align-items: flex-start; flex-direction: column; }
    .callback-form .form-actions .button { width: min(100%, 240px); }
    .callback-form .form-actions p { text-align: start; max-width: 100%; }
}

@media (max-width: 380px) {
    .brand-copy strong { font-size: 12px; }
    .hero-copy h1 { font-size: 34px; }
    .hero-microcopy { display: grid; }
    .seats-badge { width: 91px; height: 91px; }
    .saving-badge { min-width: 135px; }
    .saving-badge strong { font-size: 22px; }
    .callback-copy h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

@media (max-width: 340px) {
    .callback-form .recaptcha-field .g-recaptcha {
        transform: scale(.86);
        transform-origin: 0 0;
        margin-bottom: -18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html.js-enabled [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.stage-card.is-selected { border-color: var(--orange-500); box-shadow: 0 18px 42px rgba(242,103,34,.18); }
.stage-card.is-selected::after { background: var(--orange-500); }
