:root {
    --blue: #005b99;
    --blue-dark: #00426e;
    --blue-darker: #002a47;
    --yellow: #fecc00;
    --yellow-dark: #e0b400;
    --ink: #16202b;
    --muted: #5a6b7b;
    --line: #e3e9ef;
    --bg: #f5f8fb;
    --white: #ffffff;
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(16, 32, 43, 0.08);
    --shadow: 0 10px 30px rgba(16, 32, 43, 0.10);
    --shadow-lg: 0 24px 60px rgba(16, 32, 43, 0.18);
    --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   BASE = MOBILE FIRST. Larger screens scale up via min-width.
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 18px;
}

.section { padding: 48px 0; }
.section--tight { padding: 40px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.section-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.55rem, 6vw, 2.5rem); line-height: 1.18; color: var(--blue-darker); }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    min-height: 46px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--yellow); color: var(--blue-darker); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--yellow-dark); box-shadow: var(--shadow); }
.btn--light { background: var(--white); color: var(--blue-dark); }
.btn--light:hover { background: #eef4f9; }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--ghost { background: transparent; color: var(--blue-dark); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; min-height: 52px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px;
}
.brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; color: var(--blue-darker);
    font-size: 1rem; line-height: 1.1; white-space: nowrap;
    min-width: 0;
}
.brand .flag {
    width: 30px; height: 30px; border-radius: 7px; flex: none;
    background: var(--blue);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.brand .flag::before, .brand .flag::after { content: ""; position: absolute; background: var(--yellow); }
.brand .flag::before { left: 9px; top: 0; bottom: 0; width: 5px; }
.brand .flag::after { top: 12px; left: 0; right: 0; height: 5px; }

/* Mobile nav: dropdown menu toggled by hamburger */
.nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex: none;
    background: none; border: 0; font-size: 1.7rem; color: var(--blue-darker); cursor: pointer;
    margin-right: -8px;
}
.nav-links {
    display: none;
    list-style: none;
}
.nav-links.open {
    display: flex;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); padding: 16px 18px 20px;
    border-bottom: 1px solid var(--line); gap: 6px; box-shadow: var(--shadow);
}
.nav-links a { color: var(--ink); font-weight: 600; font-size: 1rem; }
.nav-links.open > li > a:not(.btn) { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); }
.nav-links li.nav-links-cta { margin-top: 10px; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
/* The landing page's header CTA duplicates the hero CTA + mobile menu CTA, so hide on mobile */
.nav-cta--hide-mobile { display: none; }

/* Hero */
.hero {
    color: var(--white);
    background:
        radial-gradient(1000px 460px at 80% -10%, rgba(254,204,0,0.25), transparent 60%),
        linear-gradient(160deg, var(--blue-dark), var(--blue-darker));
    position: relative;
    overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 44px 0 48px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 8vw, 3.4rem); line-height: 1.1; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--yellow); }
.hero p.lead { margin-top: 16px; font-size: 1.06rem; color: rgba(255,255,255,0.9); max-width: 560px; }
.hero-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.hero-actions .btn { width: 100%; }
.hero-badges { margin-top: 28px; display: flex; gap: 20px 26px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge b { font-size: 1.5rem; color: var(--yellow); }
.hero-badge span { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 16px; }
.hero-card ul { list-style: none; display: grid; gap: 12px; }
.hero-card li { display: flex; align-items: center; gap: 10px; font-size: 0.96rem; }
.hero-card li .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); color: var(--blue-darker); display: grid; place-items: center; font-weight: 900; font-size: 0.8rem; flex: none; }
.hero-card .btn { margin-top: 20px; }

/* Trust strip */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; padding: 18px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.trust-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); flex: none; }

/* Cards grid (base: single column) */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0ee; }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; color: var(--blue-darker); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card ul { margin-top: 12px; padding-left: 18px; color: var(--muted); font-size: 0.92rem; }
.card ul li { margin-bottom: 4px; }

/* Steps (base: single column) */
.steps { counter-reset: step; display: grid; grid-template-columns: 1fr; gap: 30px 24px; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px 22px; box-shadow: var(--shadow-sm); }
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: -18px; left: 22px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.step h3 { margin-top: 8px; font-size: 1.08rem; color: var(--blue-darker); }
.step p { color: var(--muted); font-size: 0.94rem; margin-top: 6px; }

/* Why choose (base: single column) */
.why { background: linear-gradient(160deg, var(--blue-dark), var(--blue-darker)); color: var(--white); }
.why .section-head h2, .why .section-head .eyebrow { color: var(--white); }
.why-list { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 900px; margin: 0 auto; }
.why-item { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 16px 18px; border-radius: 12px; }
.why-item .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); color: var(--blue-darker); font-weight: 900; display: grid; place-items: center; flex: none; }
.why-item p { color: rgba(255,255,255,0.9); }

/* Testimonials */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 2px; }
.quote blockquote { margin: 12px 0 18px; font-size: 1rem; color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: grid; place-items: center; font-weight: 800; flex: none; }
.quote .who b { display: block; font-size: 0.96rem; }
.quote .who span { color: var(--muted); font-size: 0.86rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 2px 18px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; color: var(--blue-darker); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); padding: 0 0 18px; }

/* CTA band */
.cta-band { background: var(--yellow); }
.cta-band .container { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding: 34px 18px; }
.cta-band h2 { color: var(--blue-darker); font-size: clamp(1.4rem, 5vw, 2.1rem); }
.cta-band p { color: #5b4d00; margin-top: 6px; }
.cta-band .btn { width: 100%; }

/* Footer */
.site-footer { background: var(--blue-darker); color: rgba(255,255,255,0.82); padding: 44px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.site-footer h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.82); font-size: 0.94rem; }
.site-footer a:hover { color: var(--yellow); }
.site-footer .brand { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 30px; padding-top: 18px; font-size: 0.84rem; display: flex; flex-direction: column; gap: 6px; }

/* ---------- Assessment / Form ---------- */
.assess-hero {
    background: linear-gradient(160deg, var(--blue-dark), var(--blue-darker));
    color: var(--white);
    padding: 40px 0 90px;
    text-align: center;
}
.assess-hero h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); }
.assess-hero p { color: rgba(255,255,255,0.88); margin-top: 10px; font-size: 1rem; }

.form-wrap { max-width: 760px; margin: -64px auto 0; padding: 0 14px 64px; position: relative; z-index: 3; }
.form-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 22px 18px;
    border: 1px solid var(--line);
}

.progress { margin-bottom: 24px; }
.progress-bar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--blue), var(--yellow)); border-radius: 999px; transition: width 0.35s ease; }
.progress-meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.84rem; color: var(--muted); font-weight: 600; }

.step-panel { display: none; animation: fade 0.35s ease; }
.step-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-panel h2 { font-size: 1.25rem; color: var(--blue-darker); line-height: 1.25; }
.step-panel .hint { color: var(--muted); margin: 6px 0 20px; font-size: 0.96rem; }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.field .req { color: #d93636; }
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field input[type=number],
.field input[type=date],
.field input[type=time],
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.6px solid var(--line);
    border-radius: 10px;
    font-size: 16px; /* >=16px prevents iOS zoom-on-focus */
    font-family: inherit;
    color: var(--ink);
    background: #fbfdff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,91,153,0.12); background: var(--white);
}
.field .error-msg { color: #d93636; font-size: 0.85rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d93636; }
.field.invalid .error-msg { display: block; }

/* Option cards (radio grid) */
.options { display: grid; gap: 10px; grid-template-columns: 1fr; }
.options.two { grid-template-columns: 1fr; }
.option {
    position: relative;
    border: 1.6px solid var(--line);
    border-radius: 12px;
    padding: 15px 15px 15px 50px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    background: #fbfdff;
}
.option:hover { border-color: #b9d3e8; }
.option input { position: absolute; opacity: 0; }
.option .mark { position: absolute; left: 15px; top: 18px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #c4d3e0; background: var(--white); transition: all 0.15s ease; }
.option .opt-title { display: block; font-weight: 700; color: var(--ink); }
.option .opt-desc { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 3px; }
.option input:checked ~ .mark { border-color: var(--blue); box-shadow: inset 0 0 0 5px var(--blue); }
.option:has(input:checked) { border-color: var(--blue); background: #eef6fc; box-shadow: 0 0 0 3px rgba(0,91,153,0.1); }

.form-nav { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.form-nav .spacer { flex: 1; }
.form-nav .btn { flex: 1; }
.form-nav #btnPrev { flex: none; }

/* Review step */
.review-list { list-style: none; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.review-list li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.review-list li:last-child { border-bottom: 0; }
.review-list .k { color: var(--muted); font-weight: 600; }
.review-list .v { color: var(--ink); font-weight: 700; text-align: right; }

/* Booking / price box */
.price-box {
    border: 2px solid var(--blue);
    border-radius: 14px;
    padding: 18px;
    background: #eef6fc;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 20px;
}
.price-box .price { font-size: 1.9rem; font-weight: 800; color: var(--blue-darker); }
.price-box .price small { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.price-box .perk { color: var(--muted); font-size: 0.9rem; }

.toggle-call { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
.toggle-call .option { padding-left: 15px; text-align: center; }
.toggle-call .option .mark { display: none; }

.callout { background: #fff8db; border: 1px solid var(--yellow); border-radius: 10px; padding: 14px 16px; font-size: 0.9rem; color: #5b4d00; margin-top: 12px; }
.secure-note { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--muted); font-size: 0.85rem; margin-top: 16px; text-align: center; }

.form-error { display: none; background: #fdecec; border: 1px solid #f3b4b4; color: #a3271f; border-radius: 10px; padding: 12px 16px; margin-top: 16px; font-size: 0.92rem; }
.form-error.show { display: block; }

/* Status pages */
.status-page { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 48px 18px; }
.status-card { max-width: 560px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px 24px; box-shadow: var(--shadow); }
.status-icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; font-size: 2.2rem; }
.status-icon.ok { background: #e4f7ec; color: #1f9d55; }
.status-icon.cancel { background: #fdeeee; color: #d93636; }
.status-card h1 { color: var(--blue-darker); font-size: 1.6rem; }
.status-card p { color: var(--muted); margin: 12px 0 24px; }

/* Utilities */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }

/* ============================================================
   >= 600px : small tablets
   ============================================================ */
@media (min-width: 600px) {
    .container { padding: 0 24px; }
    .grid { gap: 22px; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .why-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .options.two { grid-template-columns: repeat(2, 1fr); }
    .toggle-call { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; }
    .hero-actions .btn { width: auto; }
    .cta-band .container { flex-direction: row; align-items: center; justify-content: space-between; }
    .cta-band .btn { width: auto; }
    .price-box { flex-direction: row; align-items: center; justify-content: space-between; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .form-card { padding: 30px; }
    .form-wrap { padding-left: 20px; padding-right: 20px; }
    .status-card { padding: 44px; }
}

/* ============================================================
   >= 900px : desktop (matches original design)
   ============================================================ */
@media (min-width: 900px) {
    .section { padding: 84px 0; }
    .section--tight { padding: 56px 0; }
    .section-head { margin-bottom: 48px; }
    .section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
    .section-head p { font-size: 1.08rem; }

    .nav { height: 72px; gap: 24px; }
    .brand { font-size: 1.12rem; }
    .brand .flag { width: 34px; height: 34px; border-radius: 8px; }
    .brand .flag::before { left: 11px; width: 5px; }
    .brand .flag::after { top: 14px; height: 5px; }
    .nav-toggle { display: none; }
    .nav-links { display: flex; align-items: center; gap: 28px; position: static; }
    .nav-links a { font-size: 0.96rem; }
    .nav-links li.nav-links-cta { display: none; }
    .nav-cta--hide-mobile { display: flex; }

    .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 84px 0; }
    .hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
    .hero p.lead { margin-top: 20px; font-size: 1.18rem; }
    .hero-actions { margin-top: 32px; gap: 14px; }
    .hero-badges { margin-top: 34px; }
    .hero-badge b { font-size: 1.6rem; }
    .hero-card { padding: 28px; border-radius: 20px; }

    .trust .container { justify-content: space-between; padding: 22px 24px; }
    .trust-item { font-size: 0.96rem; }

    .grid { gap: 24px; }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .card { padding: 28px; }

    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }

    .assess-hero { padding: 54px 0 120px; }
    .form-wrap { margin-top: -84px; padding-bottom: 90px; }
    .form-card { padding: 34px; }
    .step-panel h2 { font-size: 1.4rem; }
}
