/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── Variables ── */
:root {
    --navy: #0d1f3c;
    --navy-dark: #091529;
    --navy-mid: #152a4a;
    --navy-light: #2a4a7f;
    --burgundy: #8b3a52;
    --burgundy-light: rgba(139, 58, 82, 0.07);
    --burgundy-border: rgba(139, 58, 82, 0.18);
    --bg-light: #faf8f4;
    --text-muted: #6b7280;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.logo-highlight {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--burgundy); }

.btn-apply {
    background: var(--navy);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-apply:hover {
    background: var(--navy-mid);
    color: #fff;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--navy-mid);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255,255,255,0.4);
}

/* ── Hero ── */
.hero {
    background: var(--navy-dark);
    padding: 14rem 2rem 10rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before, .hero::after { display: none; }

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    background: radial-gradient(ellipse 90% 100% at 50% 50%, rgba(4,10,24,0.58) 0%, transparent 72%);
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0,0,0,0.65), 0 1px 4px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 14px rgba(0,0,0,0.55);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Product Sections ── */
.product-section { padding: 5.5rem 2rem; }
.bg-light { background: var(--bg-light); }
.bg-white { background: #fff; }

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.text-center { text-align: center; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--burgundy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: var(--burgundy-light);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--burgundy-border);
}

.product-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    max-width: 600px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ── Cards ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.card {
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bg-white .card {
    background: #fff;
    border-color: rgba(203, 213, 225, 0.5);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--burgundy-light);
    border: 1px solid var(--burgundy-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin: 0 auto 1.25rem;
    flex-shrink: 0;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--navy-dark);
    padding: 6rem 2rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before, .cta-banner::after { display: none; }

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-banner p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ── Footer ── */
.footer {
    background: #060e1a;
    padding: 3.5rem 2rem 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 0.75rem; color: rgba(255,255,255,0.9); }

.footer-brand p {
    color: rgba(255,255,255,0.35);
    font-size: 0.875rem;
    max-width: 260px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-bottom: 0.55rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 0 0.5rem;
    color: rgba(255,255,255,0.18);
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 0 1.5rem;
    text-align: left;
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--navy-dark);
    padding: 13rem 2rem 10rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before, .page-hero::after { display: none; }

.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 700px;
    color: #fff;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ── Process Steps ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.process-step { text-align: center; }

.step-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--burgundy);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Checklist ── */
.checklist {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
    padding: 0.875rem 0;
    border-bottom: 1px solid #ede8de;
}

.checklist li:last-child { border-bottom: none; }
.checklist li svg { color: var(--burgundy); flex-shrink: 0; }

/* ── Section with centered heading ── */
.section-centered { text-align: center; }

.section-centered h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    max-width: none;
}

/* ── Apply Page ── */
.apply-page {
    background: var(--navy-dark);
    min-height: 100vh;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}

.apply-page::before { display: none; }

.apply-glow-1, .apply-glow-2 { display: none; }

.apply-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
    position: relative;
    z-index: 1;
}

.apply-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.apply-brand-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.apply-brand-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
}

.apply-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 8px 30px rgba(0,0,0,0.25);
}

.apply-card-top {
    background: var(--navy);
    padding: 1.5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.apply-card-top::before, .apply-card-top::after { display: none; }

.step-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.progress-track {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: var(--burgundy);
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.apply-card-body {
    padding: 2.25rem 2.25rem 2rem;
}

.form-step { display: none; }

.step-question {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.step-hint {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.field-group { margin-top: 1.25rem; }

.field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}

.field-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #111;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field-input:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 31, 60, 0.08);
}

.field-input.field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.field-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #111;
    background: #fafafa;
    outline: none;
    resize: vertical;
    min-height: 130px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field-textarea:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 31, 60, 0.08);
}

.field-textarea.field-error { border-color: #ef4444; }

/* ── Radio Cards ── */
.radio-cards {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: #fafafa;
}

.radio-card:has(input:checked) {
    border-color: var(--burgundy);
    background: var(--burgundy-light);
    box-shadow: 0 0 0 3px rgba(139, 58, 82, 0.06);
}

.radio-card:hover { border-color: var(--burgundy-border); background: #fdf8f9; }

.radio-card input[type=radio] {
    accent-color: var(--burgundy);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    cursor: pointer;
}

.radio-card-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: #111;
}

.radio-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.82rem;
    margin-top: 0.6rem;
}

/* ── Form Navigation ── */
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5eaf2;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1.5px solid #e5e7eb;
    color: #6b7280;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover { border-color: #9ca3af; color: #374151; }

.btn-next-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--navy);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-next-submit:hover {
    background: var(--navy-mid);
}

/* ── Success Page ── */
.success-card {
    background: #fff;
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 30px rgba(0,0,0,0.2);
}

.success-icon {
    width: 68px;
    height: 68px;
    background: var(--burgundy-light);
    border: 1px solid var(--burgundy-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin: 0 auto 1.5rem;
}

.success-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.success-body {
    color: var(--text-muted);
    font-size: 0.975rem;
    max-width: 380px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ── Typeform Enquire ── */
.tf-body {
    overflow: hidden;
    height: 100vh;
    background: var(--navy-dark);
    margin: 0;
}

.tf-page {
    position: relative;
    margin-top: 64px;
    height: calc(100vh - 64px);
    background: var(--navy);
    overflow: hidden;
}

.tf-progress-track {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(255,255,255,0.12);
    z-index: 20;
}

.tf-progress-fill {
    height: 100%;
    background: #c4526e;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tf-counter-bar {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.tf-topbar-right { display: flex; align-items: center; gap: 1rem; }

.tf-step-count { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

.tf-nav-arrows { display: flex; gap: 0.3rem; }

.tf-arrow-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: rgba(255,255,255,0.75);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
}

.tf-arrow-btn:hover:not(:disabled) { border-color: rgba(255,255,255,0.6); color: #fff; }
.tf-arrow-btn:disabled { opacity: 0.25; cursor: default; }

.tf-steps-container { position: absolute; inset: 0; overflow: hidden; }

.tf-step {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 5rem max(2rem, 10vw) 3rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.tf-step.active { opacity: 1; pointer-events: auto; }

.tf-step-inner { max-width: 680px; width: 100%; }

.tf-step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.9;
}

.tf-question {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.tf-subtext {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tf-text-input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.35rem;
    font-family: inherit;
    padding: 0.6rem 0;
    outline: none;
    margin-top: 1.75rem;
    transition: border-color 0.2s;
    caret-color: var(--burgundy);
}

.tf-text-input::placeholder { color: rgba(255,255,255,0.2); }
.tf-text-input:focus { border-color: var(--burgundy); }
.tf-text-input.tf-error-field { border-color: #f87171; }
.tf-text-input--sm { font-size: 1rem; margin-top: 0.5rem; }

.tf-textarea-input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    padding: 0.6rem 0;
    outline: none;
    resize: none;
    min-height: 110px;
    margin-top: 1.75rem;
    transition: border-color 0.2s;
    caret-color: var(--burgundy);
}

.tf-textarea-input::placeholder { color: rgba(255,255,255,0.2); }
.tf-textarea-input:focus { border-color: var(--burgundy); }

.tf-multi-field { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }

.tf-field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.tf-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.2); }

.tf-ok-row { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }

.tf-ok-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--burgundy);
    color: #fff;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.tf-ok-btn:hover { background: #7a3347; }

.tf-enter-hint { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.tf-enter-hint kbd { font-family: inherit; }

.tf-error-msg { color: #f87171; font-size: 0.82rem; margin-top: 0.5rem; min-height: 1.1em; }

.tf-choices { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1.75rem; }

.tf-choice {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.tf-choice:hover { border-color: rgba(139,58,82,0.5); background: rgba(139,58,82,0.07); }
.tf-choice:has(input:checked) { border-color: var(--burgundy); background: rgba(139,58,82,0.12); }
.tf-choice input[type=radio] { display: none; }

.tf-choice-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: border-color 0.15s, color 0.15s;
}

.tf-choice:has(input:checked) .tf-choice-key { border-color: var(--burgundy); color: var(--burgundy); }
.tf-choice-text { display: flex; flex-direction: column; }
.tf-choice-title { font-size: 0.95rem; font-weight: 600; color: #fff; }
.tf-choice-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

.tf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--burgundy);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 1.5rem;
}

.tf-submit-btn:hover { background: #7a3347; }

/* Enquire success page */
.enquire-success-page {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.enquire-success-inner {
    text-align: center;
    max-width: 480px;
}

.enquire-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(139,58,82,0.12);
    border: 1px solid rgba(139,58,82,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin: 0 auto 1.75rem;
}

.enquire-success-logo {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.enquire-success-inner h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.enquire-success-inner p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── Buttons on dark backgrounds ── */
.hero .btn-primary,
.page-hero .btn-primary,
.cta-banner .btn-primary {
    background: #fff;
    color: var(--navy);
}

.hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.cta-banner .btn-primary:hover {
    background: rgba(255,255,255,0.88);
    color: var(--navy);
}

/* ── Industry page ── */
.sector-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-focus-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0.75rem 0 1rem;
    max-width: none;
}

.sector-focus-text p {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.sector-focus-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(229,231,235,0.9);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.sector-stat {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(229,231,235,0.8);
}

.sector-stat:last-child { border-bottom: none; }

.sector-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.sector-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Industry cards — full width rows */
.industry-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card {
    background: #fff;
    border: 1px solid rgba(229,231,235,0.9);
    border-radius: 12px;
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.industry-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.industry-card-sub {
    font-size: 0.88rem !important;
    color: #9ca3af !important;
    margin-bottom: 1rem !important;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--burgundy);
    background: var(--burgundy-light);
    border: 1px solid var(--burgundy-border);
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

/* Fit criteria grid */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.fit-col h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    max-width: none;
}

.checklist-no li svg { color: #9ca3af; }

/* ── Hamburger toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Responsive ── */
@media (max-width: 768px) {
    /* Navbar */
    .navbar { position: fixed; }
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 6px 24px rgba(0,0,0,0.10);
        padding: 0.5rem 0 1rem;
    }

    .nav-links.open { display: flex; }

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .btn-apply {
        margin: 0.75rem 1.5rem 0;
        text-align: center;
        border-radius: 6px;
    }

    /* Hero */
    .hero { padding: 8rem 1.25rem 5rem; }
    .hero-inner { padding: 2rem 1.5rem; }

    /* Page hero */
    .page-hero { padding: 8rem 1.25rem 4.5rem; }

    /* Sections */
    .product-section { padding: 3.5rem 1.25rem; }
    .cta-banner { padding: 4rem 1.25rem; }

    /* Footer */
    .footer { padding: 2.5rem 1.25rem 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .footer-disclaimer { padding-top: 1rem; }
    .footer-bottom { padding-bottom: 1.25rem; }

    /* Apply form */
    .apply-card-body { padding: 1.75rem 1.25rem 1.5rem; }
    .apply-card-top { padding: 1.25rem 1.5rem; }

    /* Industries */
    .sector-focus-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sector-focus-stats { flex-direction: row; }
    .sector-stat { flex: 1; border-bottom: none; border-right: 1px solid rgba(229,231,235,0.8); }
    .sector-stat:last-child { border-right: none; }
    .industry-card { padding: 1.5rem; }
    .fit-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Enquire / typeform */
    .tf-counter-bar { right: 1rem; gap: 0.6rem; }
    .tf-step { padding: 4rem 1.5rem 2rem; }
}
