/* ============================================
   NORDIC TV REDESIGN - THEME CSS
   Aggregated from user provided assets
   ============================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* -------------------------------------------
   00 - VARIABLES & BASE
   ------------------------------------------- */
:root {
    /* Primary Blues - Trust & Professionalism */
    --primary-deep: #0F2847;
    --primary-mid: #1A4B7C;
    --primary-light: #3D7AB8;

    /* Accent Colors - Energy & Action */
    --accent-primary: #00D4AA;
    --accent-glow: #00F5C4;
    --accent-warm: #FF6B4A;
    --accent-gold: #FFB830;

    /* Background Colors - Light Mode */
    --bg-primary: #FAFCFF;
    --bg-secondary: #F0F4FA;
    --bg-card: #FFFFFF;

    /* Text Colors */
    --text-primary: #0F2847;
    --text-secondary: #4A6282;
    --text-muted: #8B9DB8;
    --text-inverse: #FFFFFF;

    /* Borders & Shadows */
    --border-subtle: rgba(15, 40, 71, 0.08);
    --border-medium: rgba(15, 40, 71, 0.12);
    --shadow-sm: 0 2px 8px rgba(15, 40, 71, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 40, 71, 0.08);
    --shadow-lg: 0 16px 64px rgba(15, 40, 71, 0.12);
    --shadow-glow: 0 8px 40px rgba(0, 212, 170, 0.25);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--primary-light));
    color: #ffffff !important;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 170, 0.05);
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

/* -------------------------------------------
   01 - HERO SECTION CSS (Strearena Style)
   ------------------------------------------- */
.hero {
    padding: 8rem var(--space-lg) var(--space-2xl);
    /* Increased top padding to 8rem to clear fixed header */
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    /* Text takes mostly full width, fixed width for stats */
    gap: var(--space-xl);
    /* Standard gap */
    align-items: center;
    min-height: 85vh;
}

/* Aurora Background (Moved from base to avoid global issues, applied to hero or body) */
.bg-aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-aurora::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(26, 75, 124, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(255, 107, 74, 0.03) 0%, transparent 50%);
    animation: auroraMove 25s ease-in-out infinite;
}

@keyframes auroraMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 1%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 2%) rotate(-1deg);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Rating Badge */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-deep);
    /* Dark text-safe background */
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border-subtle);
    color: white;
    /* Force white text */
}

.hero-rating .stars {
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.hero-rating .rating-text {
    color: rgba(255, 255, 255, 0.9);
    /* High contrast white */
    font-weight: 500;
}

/* Savings Badge */
.hero-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    /* Match padding to rating */
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    /* Match font size to rating */
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
    vertical-align: middle;
    /* Better inline alignment */
}

.hero-savings svg {
    color: var(--accent-primary);
    width: 16px;
    height: 16px;
}

/* Container for badges to ensure alignment */
.hero-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: var(--space-md);
}

/* Headline */
.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 540px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 170, 0.05);
}

.hero-feature svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* CTA Button */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}


/* ============================================
   STATS CARDS - 3 STACKED
   ============================================ */
.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stats-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 360px;
    width: 100%;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-md);
    /* Reduced from md/lg */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 212, 170, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Card Header with Live Dot */
.stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #FF4757;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(255, 71, 87, 0);
    }
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF4757;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-label-large {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-value.price {
    color: var(--accent-primary);
}

.stat-value.channels {
    color: var(--accent-primary);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: var(--space-xl);
    }

    .hero-content {
        order: 1;
    }

    .hero-stats {
        order: 2;
    }

    .hero-rating,
    .hero-savings {
        display: inline-flex;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-stack {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        max-width: 100%;
        /* Reset max-width for the 3-column grid */
    }

    .stat-card {
        text-align: left;
    }

    .stat-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .stats-stack {
        grid-template-columns: 1fr;
    }

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

/* -------------------------------------------
   02 - LOGOS BAR CSS
   ------------------------------------------- */
.logos-bar {
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logos-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-md);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logos-grid:hover {
    opacity: 0.7;
}

.logos-grid span {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
}

h1,
h2,
h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .logos-grid {
        gap: var(--space-md);
    }

    .logos-grid span {
        font-size: 1.1rem;
    }
}

/* -------------------------------------------
   03 - FEATURES SECTION CSS
   ------------------------------------------- */
.features {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(26, 75, 124, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--accent-primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------
   04 - SPORTS SECTION CSS
   ------------------------------------------- */
.sports {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

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

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.sport-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 212, 170, 0.3);
}

.sport-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.sport-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.sport-leagues {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sport-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-sm);
    padding: 5px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sport-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

/* -------------------------------------------
   05 - COMPARISON SECTION CSS
   ------------------------------------------- */
.comparison {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

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

.comparison-card {
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
}

.comparison-card.without {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
}

.comparison-card.with {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-mid));
    color: white;
    overflow: hidden;
}

.comparison-card.with::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    position: relative;
}

.comparison-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.comparison-dot.red {
    background: var(--accent-warm);
}

.comparison-dot.green {
    background: var(--accent-glow);
}

.comparison-label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-card.with .comparison-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.comparison-item-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-card.with .comparison-item-name {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-item-value {
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.comparison-item-value.included {
    color: var(--accent-glow);
}

.comparison-total {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
}

.comparison-card.with .comparison-total {
    background: rgba(0, 212, 170, 0.2);
}

.comparison-total-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.comparison-card.with .comparison-total-label {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-total-value {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

.comparison-total-value.expensive {
    color: var(--accent-warm);
}

.comparison-total-value.cheap {
    color: var(--accent-glow);
}

.comparison-per-month {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
}

.savings-banner {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(26, 75, 124, 0.06));
    border: 2px dashed var(--accent-primary);
    border-radius: var(--radius-xl);
}

.savings-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.savings-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

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

@media (max-width: 768px) {
    .savings-value {
        font-size: 2.5rem;
    }

    .comparison-total-value {
        font-size: 2rem;
    }
}

/* -------------------------------------------
   06 - STEPS SECTION CSS
   ------------------------------------------- */
.steps {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.66% + 50px);
    right: calc(16.66% + 50px);
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--primary-light), var(--accent-primary));
    border-radius: 3px;
    z-index: 0;
}

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

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--accent-primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
    line-height: 1.1;
    text-align: center;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .steps-grid::before {
        display: none;
    }
}

/* -------------------------------------------
   07 - DEVICES SECTION CSS
   ------------------------------------------- */
.devices {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.devices-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-width: 120px;
}

.device-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 212, 170, 0.3);
}

.device-icon {
    font-size: 2.25rem;
}

.device-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 480px) {
    .devices-grid {
        gap: var(--space-sm);
    }

    .device-item {
        min-width: 100px;
        padding: var(--space-sm);
    }
}

/* -------------------------------------------
   08 - FAQ SECTION CSS
   ------------------------------------------- */
.faq {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 170, 0.3);
}

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

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    font-weight: 300;
}

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

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

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

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -------------------------------------------
   09 - FINAL CTA SECTION CSS
   ------------------------------------------- */
.cta {
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-mid));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 245, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.cta .btn-primary {
    background: white;
    color: var(--primary-deep);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-feature svg {
    color: var(--accent-glow);
}

@media (max-width: 768px) {
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}