/* ============================================
   ADOLESCENT IOP V2 - Conversion-Focused Styles
   Using Kin brand colors and patterns
   ============================================ */

/* Low-commitment CTAs */
.low-commitment-ctas {
    margin-top: 40px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.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(--ink);
    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(--ink);
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.low-commitment-card:hover {
    background: var(--lime);
    border-color: var(--ink);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 var(--ink);
}

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

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

.low-commitment-card:hover i {
    color: var(--ink);
}

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

.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);
}

.low-commitment-mobile-link {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 2px solid var(--ink);
    background: white;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 3px 3px 0 var(--ink);
}

@media (max-width: 767px) {
    .hero-secondary .low-commitment-ctas {
        display: none;
    }

    .low-commitment-mobile-link {
        display: inline-flex;
        margin-top: 8px;
    }
}

/* ============================================
   SYMPTOM SECTION
   ============================================ */
.symptom-section {
    padding: var(--space-2xl) var(--space-md);
    background: white;
}

.symptom-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.symptom-intro h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

.symptom-intro p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.symptom-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-500);
}

.symptom-count {
    font-weight: 600;
    color: var(--gray-700);
}

.symptom-skip {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.symptom-skip:hover {
    text-decoration: underline;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.symptom-card {
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: var(--space-md);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

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

.symptom-card.selected {
    border-color: var(--blue);
    background: rgba(47, 75, 255, 0.05);
    border-width: 3px;
}

.symptom-card.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.symptom-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
    color: var(--ink);
}

.symptom-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

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

.symptom-result {
    background: #f7f7fb;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    display: block;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: none;
}

.symptom-result.visible {
    background: var(--lime);
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
}

.symptom-result h3 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.symptom-result p {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.symptom-safety {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--cream);
}

.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-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-sm);
}

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

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

.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;
    }
}

/* ============================================
   OUTCOMES SECTION
   ============================================ */
.outcomes-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--teal);
    color: white;
    position: relative;
    overflow: hidden;
}

.outcomes-section::before {
    content: '';
    position: absolute;
    inset: 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;
}

.outcomes-section .container {
    position: relative;
    z-index: 1;
}

.outcomes-section .section-header h2 {
    color: white;
}

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

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

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

.outcome-card {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.outcome-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.outcome-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.outcome-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-carousel {
    margin-top: var(--space-xl);
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.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;
    color: var(--ink);
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--cream);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
    .how-steps::before {
        display: none;
    }
}

.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--lime);
    border: 3px solid var(--ink);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

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

.step-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-xs);
    font-family: 'Fraunces', serif;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

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

.how-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */
.conditions-section {
    padding: var(--space-2xl) var(--space-md);
    background: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

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

.condition-card {
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
}

.condition-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: 1.5rem;
    flex-shrink: 0;
    color: var(--ink);
}

.condition-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    font-family: 'Fraunces', serif;
}

.condition-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.condition-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.symptom-tag {
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */
.program-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--cream);
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
    .program-visual {
        order: 2;
    }
}

.program-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.program-feature {
    display: flex;
    gap: var(--space-sm);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--lime);
    border: 2px solid var(--ink);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.program-visual {
    background: white;
    border: 3px solid var(--ink);
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 8px 8px 0 var(--ink);
}

.schedule-preview {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-header {
    background: var(--blue);
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
}

.schedule-note {
    padding: 10px var(--space-md);
    font-size: 0.85rem;
    color: var(--gray-600);
    background: #f7f7fb;
    border-bottom: 1px solid var(--gray-200);
}

.schedule-day {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-day .day {
    font-weight: 600;
}

.schedule-day .time {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.schedule-day .session {
    background: var(--lime);
    color: var(--ink);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   INSURANCE SECTION
   ============================================ */
.insurance-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--lime);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
}

.insurance-content h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.insurance-content p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.insurance-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 1rem;
    color: var(--ink);
}

.insurance-list li i {
    color: var(--blue);
    font-size: 20px;
}

.insurance-logos {
    background: white;
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: var(--space-lg);
}

.insurance-logos p {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

.insurance-logo-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

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

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

.insurance-logo-item.insurance-more {
    background: var(--ink);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-2xl) var(--space-md);
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

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

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

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

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

.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;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-2xl) var(--space-md);
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-md);
    background: var(--cream);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Fraunces', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: var(--space-sm);
    color: var(--gray-400);
}

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

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

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

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 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-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    color: white;
}

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

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.guarantee-badge i {
    color: var(--lime);
    font-size: 20px;
}

/* ============================================
   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;
}

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

.sticky-cta.is-hidden {
    display: none;
}

@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }
    .sticky-cta.is-hidden {
        display: none;
    }
    body {
        padding-bottom: 80px;
    }
}

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

.sticky-cta-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: var(--gray-600);
    cursor: pointer;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
