:root {
    --lime: #C6FF52;
    --lime-dark: #9FD93D;
    --blue: #2F4BFF;
    --blue-dark: #1E3ACC;
    --teal: #113C3B;
    --cream: #FFFDF7;
    --ink: #0A0A0A;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }
}

/* ============================================
   HEADER
============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 247, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    height: 36px;
}

.header-nav {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--ink);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Compact header button on mobile */
@media (max-width: 480px) {
    .header-cta .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    .header-cta {
        gap: 10px;
    }
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

@media (min-width: 640px) {
    .header-phone {
        display: flex;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--lime);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
}

.btn-primary:hover {
    box-shadow: 1px 1px 0 var(--ink);
    transform: translate(2px, 2px);
}

.btn-secondary {
    background: white;
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
}

.btn-secondary:hover {
    box-shadow: 1px 1px 0 var(--ink);
    transform: translate(2px, 2px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: none;
    padding: 12px 16px;
}

.btn-ghost:hover {
    background: var(--gray-100);
}

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

/* ============================================
   HERO SECTION
============================================ */
.hero {
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0 100px;
    }
}

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hero-content {
    max-width: 600px;
}

/* Hero badge - non-interactive info tag (should NOT look clickable) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gray-700);
    /* No border, no shadow - clearly non-interactive */
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    /* Static dot, no animation - non-interactive indicator */
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.75rem);
    margin-bottom: 24px;
    color: var(--ink);
    line-height: 1.1;
}

/* Better title wrap on mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }
}

.hero h1 .highlight {
    color: var(--blue);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--lime);
    z-index: -1;
    transform: skewX(-3deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-value-props {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-value-props li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.hero-value-props li i {
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
}

.stat-single {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
}

.stat-single .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-single .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.3;
    text-align: left;
}

@media (min-width: 640px) {
    .stat-single {
        padding: 16px 20px;
        gap: 16px;
    }

    .stat-single .stat-value {
        font-size: 2rem;
    }

    .stat-single .stat-label {
        font-size: 1rem;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

/* Low-commitment CTAs */
.low-commitment-ctas {
    margin-bottom: 32px;
}

.low-commitment-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.low-commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .low-commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Low-commitment cards - clearly clickable links */
.low-commitment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 2px solid var(--blue);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.low-commitment-card::after {
    content: '→';
    position: absolute;
    right: 14px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.low-commitment-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 75, 255, 0.25);
}

.low-commitment-card:hover::after {
    color: white;
    transform: translateX(3px);
}

.low-commitment-card i {
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.low-commitment-card:hover i {
    color: white;
}

.low-commitment-card div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 20px; /* Space for arrow */
}

.low-commitment-card .card-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.low-commitment-card:hover .card-title {
    text-decoration-color: currentColor;
}

.low-commitment-card .card-desc {
    font-size: 12px;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.low-commitment-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
    padding-top: 24px;
}

.stat {
    text-align: center;
}

@media (min-width: 640px) {
    .stat {
        text-align: left;
    }
}

.stat-value {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-video-container {
    background: white;
    border: 3px solid var(--ink);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 8px 8px 0 var(--ink);
    position: relative;
}

.hero-video-main {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.hero-video-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hero-video-thumb {
    aspect-ratio: 1;
    background: var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.hero-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-thumb .label {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-video-thumb .label.therapist {
    background: var(--blue);
    font-weight: 600;
}

.hero-video-thumb.therapist-thumb {
    border: 2px solid var(--blue);
}

/* Floating elements */
.float-badge {
    position: absolute;
    background: white;
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 14px;
    z-index: 10;
}

.float-badge.top-left {
    top: -20px;
    left: -20px;
    background: var(--lime);
    transform: rotate(-6deg);
}

.float-badge.bottom-right {
    bottom: 60px;
    right: -30px;
    max-width: 200px;
    transform: rotate(3deg);
}

@media (max-width: 1023px) {
    .float-badge {
        display: none;
    }
}

/* ============================================
   INSURANCE TRUST BAR
============================================ */
.insurance-trust-bar {
    padding: 32px 0;
    background: var(--lime);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.insurance-tagline {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 24px;
}

.insurance-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .insurance-logos-row {
        gap: 16px;
    }
}

.insurance-logo-item {
    background: white;
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 100px;
}

@media (min-width: 768px) {
    .insurance-logo-item {
        height: 64px;
        min-width: 120px;
        padding: 16px 24px;
    }
}

.insurance-logo-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .insurance-logo-item img {
        height: 28px;
    }
}

.insurance-logo-item.insurance-more {
    background: var(--ink);
    color: white;
}

.insurance-logo-item.insurance-more span {
    font-weight: 700;
    font-size: 14px;
}

/* Hide last logos on mobile */
.insurance-logo-item:nth-child(n+5) {
    display: none;
}

@media (min-width: 768px) {
    .insurance-logo-item:nth-child(n+5) {
        display: flex;
    }
}

/* ============================================
   WHY KIN SECTION
============================================ */
.why-kin {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.why-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 24px;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ============================================
   COMPARISON SECTION
============================================ */
.comparison {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

/* VS Table Comparison Styles */
.vs-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.vs-table th,
.vs-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.vs-table th {
    background: var(--gray-50);
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--gray-900);
}

.vs-col-feature {
    width: 30%;
    font-weight: 600;
    color: var(--gray-700);
}

.vs-col-trad {
    width: 35%;
    color: var(--gray-600);
}

.vs-col-kin {
    width: 35%;
    background: #F0F9FF;
    color: var(--gray-900);
    font-weight: 500;
    border-left: 2px solid var(--blue);
}

.vs-header-kin {
    color: var(--blue) !important;
    background: #F0F9FF !important;
    border-left: 2px solid var(--blue);
}

.check-icon {
    color: var(--blue);
    margin-right: 8px;
    font-weight: bold;
}

.x-icon {
    color: var(--gray-400);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .vs-table th,
    .vs-table td {
        padding: 16px;
        font-size: 14px;
    }
    .vs-table th {
        font-size: 16px;
    }
}

.comparison-table {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-table {
        grid-template-columns: repeat(3, 1fr);
    }
}

.comparison-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.comparison-card.featured {
    background: var(--lime);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    transform: scale(1.05);
    z-index: 1;
}

@media (max-width: 767px) {
    .comparison-card.featured {
        transform: scale(1);
        order: -1;
    }
}

.comparison-card.featured .comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.comparison-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.comparison-card.featured .comparison-title {
    margin-top: 8px;
}

.comparison-meter {
    margin-bottom: 16px;
}

.comparison-meter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.comparison-card.featured .comparison-meter-label {
    color: var(--gray-700);
}

.comparison-meter-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
}

.comparison-card.featured .comparison-meter-bar {
    background: rgba(0,0,0,0.15);
}

.comparison-meter-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--gray-400);
}

.comparison-card.featured .comparison-meter-fill {
    background: var(--blue);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.0625rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote strong {
    color: var(--ink);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-500);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 14px;
    margin-top: 4px;
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--cream);
}

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

.step {
    display: flex;
    gap: 24px;
    position: relative;
}

.step:not(:last-child) {
    padding-bottom: 48px;
}

.step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--lime);
    border: 3px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step:nth-child(2) .step-number {
    background: var(--blue);
    color: white;
}

.step-content h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
    margin-top: 8px;
}

.step-content p {
    color: var(--gray-600);
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 12px;
}

/* ============================================
   OUTCOMES
============================================ */
.outcomes {
    padding: 80px 0;
    background: var(--teal);
    color: white;
}

.outcomes .section-eyebrow {
    color: var(--lime);
}

.outcomes .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.outcomes-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outcome-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.outcome-value {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 8px;
}

.outcome-label {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
}

.outcome-source {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

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


/* ============================================
   FAQ
============================================ */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 24px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--gray-600);
    font-size: 1.0625rem;
}

/* ============================================
   MODAL OVERRIDES
============================================ */
.fullscreen-modal-header h3 {
    font-family: 'Fraunces', serif;
}

.fullscreen-modal-inner h2 {
    font-family: 'Fraunces', serif;
}

/* Concern Options (Radio Button Cards) */
.concern-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.concern-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.concern-option:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.concern-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 14px;
    accent-color: var(--blue);
    cursor: pointer;
}

.concern-option input[type="radio"]:checked + .concern-option-text {
    font-weight: 600;
}

.concern-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(47, 75, 255, 0.05);
}

.concern-option-text {
    font-size: 1rem;
    color: var(--ink);
}

.other-concern-input {
    margin-top: 8px;
    margin-left: 34px;
}

.other-concern-input .form-input {
    width: 100%;
}

.fullscreen-modal .form-step > div {
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .fullscreen-modal .form-step > div {
        padding-top: 3rem;
    }
}

.fullscreen-modal .space-y-6 > div {
    margin-bottom: 1.25rem;
}

.fullscreen-modal .space-y-6 > div:last-child {
    margin-bottom: 0;
}

.fullscreen-modal label {
    font-family: 'DM Sans', sans-serif;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    padding: 100px 0;
    background: var(--ink);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.final-cta-note {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--ink);
    color: white;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 280px;
}

.footer-nav h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lime);
    margin-bottom: 16px;
}

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

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: white;
}

.footer-crisis {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.footer-crisis p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-crisis strong {
    color: white;
}

.footer-crisis a {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   MOBILE MENU
============================================ */

/* Hidden checkbox for CSS-only toggle */
.mobile-menu-checkbox {
    display: none;
}

/* Hamburger toggle button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay-close {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

/* Panel */
.mobile-menu-panel {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 300px;
    max-width: 90vw;
    background: white;
    z-index: 110;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header .logo {
    height: 32px;
}

.mobile-menu-close {
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-600);
}

.mobile-menu-close:hover {
    color: var(--ink);
}

.mobile-menu-nav {
    padding: 24px;
}

.mobile-menu-nav > a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-nav > a:hover {
    color: var(--blue);
}

.mobile-menu-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

.mobile-menu-cta .btn-secondary {
    background: var(--gray-100);
    color: var(--ink);
}

/* Active state when checkbox is checked */
.mobile-menu-checkbox:checked ~ .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-panel {
    transform: translateX(0);
}

/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: none;
    }
}

/* ============================================
   STICKY CTA (Mobile)
============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--ink);
    padding: 12px 16px;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }
}

.sticky-cta .btn {
    width: 100%;
}

/* Add padding to body to account for sticky CTA */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ============================================
   ANSWER BLOCK
============================================ */
.answer-block {
    margin: 20px 0 24px;
    background: #FFFFFF;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    border-radius: 16px;
    padding: 20px;
}

.answer-block-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.answer-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.answer-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.answer-item span {
    font-size: 15px;
    color: var(--ink);
}

@media (max-width: 640px) {
    .answer-block {
        padding: 16px;
    }
}
