:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --accent-gold: #E8C872;
    --text-primary: #ffffff;
    --text-secondary: #888f99;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --font: 'Public Sans', sans-serif;
}

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

::selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font);
    line-height: 1.6;
    padding-top: 70px;
    overflow-x: clip;
    max-width: 100vw;
}

html {
    overflow-x: clip;
    max-width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    max-width: 100vw;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 45px;
}

.logo-img {
    height: 100%;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-secondary);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--bg-primary);
    background: var(--accent-gold);
    border: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: var(--font);
}

.btn:hover {
    background: #d4b465;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(232, 200, 114, 0.25);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ── Hero ── */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232, 200, 114, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

h1 {
    font-family: var(--font);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

h1 .gold {
    background: linear-gradient(135deg, #E8C872 0%, #f5e0a0 50%, #d4a843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 56px;
    padding: 14px 36px;
    font-size: 1rem;
}

/* ── Hero Screenshot ── */
.hero-screenshot {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(232, 200, 114, 0.06);
    transform: perspective(1200px) rotateX(2deg);
    transition: transform 0.4s ease;
}

.hero-screenshot:hover {
    transform: perspective(1200px) rotateX(0deg);
}

.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-screenshot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

/* ── Banks Logo Marquee ── */
.banks-section {
    padding: 28px 0;
    background: var(--bg-primary);
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.banks-wrapper {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.bank-logo {
    height: 28px;
    width: auto;
    opacity: 0.35;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.banks-section:hover .bank-logo {
    opacity: 0.55;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Features ── */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-stat {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Footer / CTA ── */
footer {
    padding: 0 0 40px;
    background: var(--bg-primary);
}

.footer-cta {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(232, 200, 114, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.footer-cta .btn {
    padding: 14px 40px;
    font-size: 1rem;
}

.trust-info {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-info span {
    padding: 0 20px;
}

.trust-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 36px;
}

.footer-tagline {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 220px;
    opacity: 0.65;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-col-link {
    font-size: 0.84rem;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.65;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-col-link:hover {
    color: var(--text-primary);
    opacity: 1;
}

.footer-bar {
    border-top: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.4;
}

.sailpeak-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.sailpeak-link:hover {
    opacity: 0.8;
}

.sailpeak-logo {
    height: 18px;
    width: auto;
}

.sailpeak-link span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.feature-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

/* ── Responsive ── */
@media (max-width: 968px) {
    h1 {
        font-size: 2.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .feature-card.reveal:nth-child(2),
    .feature-card.reveal:nth-child(3) {
        transition-delay: 0s;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }
}

/* ── Nav Links ── */
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: var(--border-subtle);
    margin: 0 4px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 4px;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 4px;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
}

/* ── Section Subtitle & Tag ── */
.section-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: -28px auto 52px;
    text-align: center;
    line-height: 1.75;
}

.int-section-tag {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    background: rgba(232, 200, 114, 0.08);
    border: 1px solid rgba(232, 200, 114, 0.18);
    border-radius: 100px;
    padding: 5px 18px;
    margin: 0 auto 18px;
    width: fit-content;
}

/* ── Comparison Section ── */
.comp-section {
    border-top: 1px solid var(--border-subtle);
}

.comp-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.comp-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 200, 114, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
}

.comp-thead {
    display: grid;
    grid-template-columns: 1.6fr 2fr 2fr;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--border-subtle);
}

.comp-th {
    padding: 18px 24px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.comp-th.maf-col {
    background: rgba(232, 200, 114, 0.05);
    border-left: 1px solid rgba(232, 200, 114, 0.12);
    border-right: 1px solid rgba(232, 200, 114, 0.12);
    color: var(--accent-gold);
}

.comp-row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 2fr;
    border-bottom: 1px solid var(--border-subtle);
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.18s ease;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row.row-visible {
    opacity: 1;
    transform: translateX(0);
}

.comp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-td {
    padding: 18px 24px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    border-right: 1px solid var(--border-subtle);
    line-height: 1.4;
}

.comp-td:last-child {
    border-right: none;
}

.comp-td.feature-col {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.84rem;
}

.comp-td.maf-col {
    background: rgba(232, 200, 114, 0.025);
    border-left: 1px solid rgba(232, 200, 114, 0.08);
    border-right: 1px solid rgba(232, 200, 114, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.cell-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.cell-icon.win {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

.cell-icon.win::after {
    content: '✓';
}

.cell-icon.lose {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
}

.cell-icon.lose::after {
    content: '—';
}

.comp-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.score-bar-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.score-bar-item.score-visible {
    opacity: 1;
    transform: translateY(0);
}

.score-bar-item.maf-bar {
    border-color: rgba(232, 200, 114, 0.18);
    background: rgba(232, 200, 114, 0.025);
}

.score-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.maf-bar .score-bar-label {
    color: var(--accent-gold);
}

.score-fraction {
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    text-transform: none;
}

.score-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.maf-bar .score-fill {
    background: linear-gradient(90deg, #c49830, #E8C872, #f5e0a0);
}

.generic-bar .score-fill {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Steps Layout ── */
.steps-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    margin-bottom: 48px;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 200, 114, 0.3), transparent);
    pointer-events: none;
}

.step-item {
    display: flex;
    gap: 32px;
    padding: 36px 44px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.step-number-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.step-number-col::after {
    content: '';
    display: block;
    width: 1px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(to bottom, var(--border-subtle), transparent);
    margin-top: 10px;
}

.step-item:last-child .step-number-col::after {
    display: none;
}

.step-number {
    width: 38px;
    height: 38px;
    background: rgba(232, 200, 114, 0.07);
    border: 1px solid rgba(232, 200, 114, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-gold);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 200, 114, 0.06);
    border: 1px solid rgba(232, 200, 114, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.72;
    max-width: 640px;
}

.step-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-gold);
    background: rgba(232, 200, 114, 0.08);
    border: 1px solid rgba(232, 200, 114, 0.15);
    border-radius: 100px;
    padding: 3px 12px;
    margin-top: 14px;
}

.step-alts-wrapper {
    padding: 0 44px 36px;
    border-top: 1px solid var(--border-subtle);
}

.step-alts-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--text-secondary);
    opacity: 0.45;
    margin-bottom: 16px;
    padding-top: 28px;
}

.step-alts-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: start;
}

.step-alt-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.step-alt-card:hover {
    border-color: rgba(232, 200, 114, 0.2);
    background: rgba(232, 200, 114, 0.02);
}

.step-alt-number {
    width: 26px;
    height: 26px;
    background: rgba(232, 200, 114, 0.07);
    border: 1px solid rgba(232, 200, 114, 0.22);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.step-alt-card .step-icon {
    margin-bottom: 14px;
}

.step-alt-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.step-alt-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-alt-or {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    opacity: 0.3;
    padding-top: 88px;
    white-space: nowrap;
}

.int-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ── Footer Legal Links ── */
.footer-legal {
    border-top: 1px solid var(--border-subtle);
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.45;
    padding: 4px 16px;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--text-primary);
}

.footer-legal-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.2;
    flex-shrink: 0;
}

/* ── Legal Pages ── */
.legal-hero {
    padding: 80px 0 56px;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.legal-hero p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.legal-content {
    padding: 60px 0 100px;
    max-width: 720px;
}

.legal-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 14px;
    letter-spacing: -0.2px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 28px 0 10px;
}

.legal-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 0 0 16px 0;
    padding-left: 22px;
}

.legal-content li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 200, 114, 0.3);
    transition: border-color 0.2s ease;
}

.legal-content a:hover {
    border-color: var(--accent-gold);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 24px 0 0;
    transition: color 0.2s ease;
    border-bottom: none !important;
}

.legal-back:hover {
    color: var(--text-primary);
    border-bottom: none !important;
}

.legal-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 40px 0;
}

/* ── Integrations Section ── */
.integrations-section {
    border-top: 1px solid var(--border-subtle);
}

.int-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.int-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.int-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% -10%, rgba(232, 200, 114, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.int-card:hover {
    border-color: rgba(232, 200, 114, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.int-card:hover::after {
    opacity: 1;
}

.int-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 200, 114, 0.08);
    border: 1px solid rgba(232, 200, 114, 0.15);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
}

.int-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.int-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.int-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-gold);
    background: rgba(232, 200, 114, 0.08);
    border: 1px solid rgba(232, 200, 114, 0.15);
    border-radius: 100px;
    padding: 3px 12px;
    position: relative;
    z-index: 1;
}

.int-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.int-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

/* Enterprise Panel */
.enterprise-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}

.enterprise-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 200, 114, 0.4), transparent);
    pointer-events: none;
}

.enterprise-panel::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 200, 114, 0.03) 0%, transparent 65%);
    pointer-events: none;
}

.enterprise-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.enterprise-text {
    flex: 1;
    max-width: 560px;
}

.ep-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.enterprise-text h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.enterprise-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.client-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 6px 16px;
    transition: all 0.2s ease;
    cursor: default;
}

.client-tag:hover {
    color: var(--accent-gold);
    border-color: rgba(232, 200, 114, 0.25);
    background: rgba(232, 200, 114, 0.06);
}

.enterprise-cta-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
    padding-top: 8px;
}

.enterprise-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.enterprise-note {
    font-size: 0.73rem;
    color: var(--text-secondary);
    opacity: 0.55;
    line-height: 1.6;
    max-width: 200px;
}

/* ── Responsive (comparison & integrations) ── */
@media (max-width: 968px) {
    .comp-scores {
        grid-template-columns: 1fr;
    }

    .int-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .int-card.reveal:nth-child(2),
    .int-card.reveal:nth-child(3) {
        transition-delay: 0s;
    }

    .enterprise-content {
        flex-direction: column;
        gap: 32px;
    }

    .enterprise-panel {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {

    .comp-td,
    .comp-th {
        padding: 14px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.1rem;
        letter-spacing: -1px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-screenshot {
        transform: none;
    }

    .hero-screenshot:hover {
        transform: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 36px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 0;
        margin-bottom: 36px;
    }

    /* Comparison: hide column headers, stack feature name as full-width label */
    .comp-thead {
        display: none;
    }

    .comp-row {
        grid-template-columns: 1fr 1fr;
    }

    .comp-td.feature-col {
        grid-column: 1 / -1;
        font-size: 0.67rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.7px;
        color: var(--text-secondary);
        padding: 11px 14px 7px;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .comp-td.maf-col,
    .comp-td.generic-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding: 8px 12px 12px;
        font-size: 0.79rem;
    }

    .comp-td.maf-col {
        border-right: 1px solid rgba(232, 200, 114, 0.1);
    }

    .comp-td.maf-col::before {
        content: 'Mon Agent Financier';
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-gold);
    }

    html[lang="nl"] .comp-td.maf-col::before {
        content: 'Mijn Financieel Agent';
    }

    .comp-td.generic-col::before {
        content: 'Generic AI (ChatGPT etc.)';
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        opacity: 0.5;
    }

    html[lang="fr"] .comp-td.generic-col::before {
        content: 'IA générique (ChatGPT etc.)';
    }

    html[lang="nl"] .comp-td.generic-col::before {
        content: 'Generieke AI (ChatGPT etc.)';
    }

    .cell-icon {
        display: none;
    }

    .score-bar-item {
        padding: 16px 18px;
    }

    .score-bar-label {
        font-size: 0.7rem;
    }

    /* Integrations */
    .int-cards {
        max-width: 100%;
    }

    .int-card {
        padding: 24px 20px;
    }

    .int-section-tag {
        font-size: 0.65rem;
    }

    .step-item {
        padding: 28px 20px;
        gap: 16px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.76rem;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        margin: 0 auto 14px;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

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

    .step-badge {
        display: block;
        width: fit-content;
        margin: 14px auto 0;
    }

    .int-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .step-alts-wrapper {
        padding: 0 20px 28px;
    }

    .step-alts-label {
        text-align: center;
        padding-top: 24px;
    }

    .step-alts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-alt-or {
        padding-top: 0;
        justify-content: center;
    }

    .step-alt-card {
        padding: 22px 18px;
        text-align: center;
    }

    .step-alt-number {
        margin: 0 auto 14px;
        display: flex;
    }

    .step-alt-card .step-icon {
        margin: 0 auto 14px;
    }

    /* ── Global mobile centering ── */
    .mobile-nav-link {
        text-align: center;
    }

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

    .feature-stat {
        margin: 0 auto 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 36px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }

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

    .nav-links {
        display: none;
    }
}