:root {
    --color-ivory: #FDFBF7;
    --color-navy: #0F204B;
    --color-navy-light: #1D3557;
    --color-gold: #D4AF37;
    --color-gold-dark: #B8860B;
    --color-purple-glow: rgba(147, 112, 219, 0.15);
    --color-text-main: #2C3E50;
    --color-text-muted: #546E7A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 12px 32px rgba(15, 32, 75, 0.08);
    --shadow-hover: 0 20px 48px rgba(15, 32, 75, 0.15);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-ivory);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorators */
.bg-gradient-gold {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(253, 251, 247, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.bg-gradient-navy {
    position: absolute;
    top: 40vh;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(15, 32, 75, 0.06) 0%, rgba(253, 251, 247, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.bg-gradient-purple {
    position: absolute;
    top: 120vh;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-purple-glow) 0%, rgba(253, 251, 247, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.w-full { width: 100%; }
.text-muted { color: var(--color-text-muted); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.3;
}

/* Glassmorphism Base */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(15, 32, 75, 0.05);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-gold-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-navy);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
}

.btn-primary, .primary-btn {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: white !important;
    box-shadow: 0 8px 24px rgba(15, 32, 75, 0.2);
}

.btn-primary:hover, .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 32, 75, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-navy) !important;
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.nav-link-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.text-btn {
    color: var(--color-navy) !important;
    font-weight: 600;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.15rem;
}

.btn-outline-small {
    padding: 8px 16px;
    border: 1px solid var(--color-navy);
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--color-navy);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-small:hover {
    background: var(--color-navy);
    color: white;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Split Hero Section */
.hero-split {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Visual */
.mockup-wrapper {
    position: relative;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.glow-effect {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: var(--color-gold);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(15, 32, 75, 0.2);
    display: block;
}

/* Section Headers */
.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* Tabbed Section */
.experience-section {
    padding: 100px 0;
    position: relative;
}

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

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--color-navy);
}

.tab-btn.active {
    color: var(--color-navy);
    border-bottom-color: var(--color-gold);
}

.tabs-content {
    position: relative;
    min-height: 250px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-card {
    padding: 48px;
    text-align: center;
}

.tab-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.tab-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tab-card p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(15, 32, 75, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-wrapper {
    background: var(--color-navy);
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* How It Works Timeline */
.how-it-works-section {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    background: rgba(15, 32, 75, 0.1);
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: white;
    border: 4px solid var(--color-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.step-content p {
    color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(15, 32, 75, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-gold-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: var(--color-navy);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Forms & Pages */
.page-form, .page-legal {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding-bottom: 80px;
}

.form-page-container {
    max-width: 800px;
}

.form-wrapper {
    padding: 48px;
    background: white;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.styled-form .form-section {
    margin-bottom: 40px;
}

.styled-form h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    color: var(--color-navy);
}

.styled-form h3 i {
    color: var(--color-gold-dark);
    margin-right: 8px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
    background: #FAFAFA;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--color-navy);
    background: white;
    box-shadow: 0 0 0 4px rgba(15, 32, 75, 0.1);
}

.helper-text {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Search Box (Member Signup) */
.search-box-large {
    position: relative;
    margin-bottom: 24px;
}

.search-box-large .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.search-box-large input {
    width: 100%;
    padding: 20px 20px 20px 56px;
    font-size: 1.2rem;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.search-box-large input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.search-results-large {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.search-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.search-item:last-child { border-bottom: none; }
.search-item:hover { background: #f8f9fa; }

.search-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.large-badge {
    padding: 20px 24px;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.badge-label {
    color: var(--color-text-muted);
    font-weight: 400;
    margin-right: 8px;
}

/* Messages & States */
.message {
    margin-top: 24px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}
.message.error { background: #fee2e2; color: #991b1b; }
.message.success { background: #dcfce7; color: #166534; }

.guidance-message {
    background: rgba(15, 32, 75, 0.05);
    border-left: 4px solid var(--color-gold);
    color: var(--color-navy);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    font-size: 1.05rem;
}

.guidance-message i {
    font-size: 1.5rem;
    color: var(--color-gold-dark);
}

.success-state {
    text-align: center;
    padding: 40px 0;
}

.success-state h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 32px;
}

/* Legal Pages */
.legal-wrapper {
    padding: 64px;
    background: white;
}

.legal-wrapper h1 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--color-text-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.legal-text p {
    margin-bottom: 16px;
    color: var(--color-text-main);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mockup-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-actions {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
    }
    .nav-actions a {
        width: 100%;
        text-align: center;
    }
    .input-grid {
        grid-template-columns: 1fr;
    }
    .form-wrapper, .legal-wrapper {
        padding: 32px 24px;
    }
    .timeline::before {
        left: 20px;
    }
    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }
    .timeline-step {
        gap: 20px;
    }
}


/* Expanded Legal Center */
.legal-hero {
    margin-bottom: 36px;
}
.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 12px;
}
.legal-summary {
    max-width: 850px;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    margin-bottom: 18px;
}
.legal-callout {
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-left: 5px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: 22px;
    margin: 28px 0;
}
.legal-callout.important {
    background: rgba(15, 32, 75, 0.06);
    border-color: rgba(15, 32, 75, 0.16);
    border-left-color: var(--color-navy);
}
.legal-callout h2,
.legal-callout h3 {
    margin-top: 0;
}
.legal-text a {
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.55);
    text-underline-offset: 3px;
}
.legal-text ul,
.legal-text ol {
    margin: 12px 0 22px 24px;
    color: var(--color-text-main);
}
.legal-text li {
    margin-bottom: 10px;
}
.legal-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 20px 0 36px;
}
.legal-card-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 160px;
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 32, 75, 0.10);
    background: rgba(255,255,255,0.75);
    text-decoration: none;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}
.legal-card-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.45);
}
.legal-card-link i {
    color: var(--color-gold-dark);
    font-size: 1.55rem;
}
.legal-card-link strong {
    color: var(--color-navy);
    font-size: 1.05rem;
}
.legal-card-link span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0 34px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 32, 75, 0.06);
}
.legal-table th,
.legal-table td {
    border: 1px solid rgba(15, 32, 75, 0.08);
    padding: 14px 16px;
    vertical-align: top;
    text-align: left;
}
.legal-table th {
    background: var(--color-navy);
    color: white;
    font-weight: 700;
}
.legal-consent-section {
    background: rgba(15, 32, 75, 0.04);
    border: 1px solid rgba(15, 32, 75, 0.12);
    border-radius: var(--radius-md);
    padding: 22px;
}
.checkbox-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 16px 0;
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}
.checkbox-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-navy);
    flex-shrink: 0;
}
.checkbox-consent a {
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 3px;
}
@media (max-width: 768px) {
    .legal-wrapper h1 { font-size: 2.2rem; }
    .legal-table { display: block; overflow-x: auto; }
    .legal-card-link { min-height: auto; }
}
