/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors - matching SeatRadar app */
    --background: #121826;
    --card: #171E2E;
    --muted: #1A2234;
    --accent: #1E2738;
    --foreground: #F2F8FD;
    --muted-foreground: #9BA1AF;
    --border: #1E2738;
    --destructive: #7E1D1D;
    
    /* Mint Green Palette */
    --mint-50: #E8FCF0;
    --mint-100: #D1F9E2;
    --mint-200: #A3F3C5;
    --mint-300: #75EDA8;
    --mint-400: #47E78B;
    --mint-500: #3DE288;
    --mint-600: #1BC96C;
    --mint-700: #159751;
    --mint-800: #0E6537;
    --mint-900: #07321C;
    
    /* California Orange Palette */
    --california-400: #FFB347;
    --california-500: #FF9500;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
}

html {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Unified Page Background Animation */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-orb-1 {
    top: -10%;
    right: -3%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(61, 226, 136, 0.35) 0%, rgba(61, 226, 136, 0.2) 25%, rgba(61, 226, 136, 0.1) 50%, transparent 75%);
    animation: pulseFloat 12s ease-in-out infinite;
}

.bg-orb-2 {
    bottom: -3%;
    left: -2%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 226, 136, 0.3) 0%, rgba(61, 226, 136, 0.15) 25%, rgba(61, 226, 136, 0.08) 50%, transparent 75%);
    animation: pulseFloat 14s ease-in-out infinite reverse;
}

.bg-orb-3 {
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(61, 226, 136, 0.2) 0%, rgba(61, 226, 136, 0.1) 30%, transparent 60%);
    animation: pulseFloatCenter 16s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes pulseFloatCenter {
    0% {
        transform: translate(-50%, -50%) scale(1) translate(0, 0);
        opacity: 0.6;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.15) translate(30px, -20px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) translate(-20px, 30px);
        opacity: 0.7;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1) translate(20px, -10px);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) translate(0, 0);
        opacity: 0.6;
    }
}

/* Ensure all sections are above the background */
section, .navbar, footer {
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Logo Styles with Mint Green Glow Effect */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
    vertical-align: middle;
}

.logo-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    vertical-align: middle;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.logo-radar {
    color: var(--mint-500);
    filter: brightness(1.3) saturate(1.2)
        drop-shadow(0 0 2px rgba(61, 226, 136, 0.7))
        drop-shadow(0 0 5px rgba(61, 226, 136, 0.5))
        drop-shadow(0 0 8px rgba(61, 226, 136, 0.3))
        drop-shadow(0 0 12px rgba(61, 226, 136, 0.2))
        drop-shadow(0 0 20px rgba(61, 226, 136, 0.1));
    -webkit-filter: brightness(1.3) saturate(1.2)
        drop-shadow(0 0 2px rgba(61, 226, 136, 0.7))
        drop-shadow(0 0 5px rgba(61, 226, 136, 0.5))
        drop-shadow(0 0 8px rgba(61, 226, 136, 0.3))
        drop-shadow(0 0 12px rgba(61, 226, 136, 0.2))
        drop-shadow(0 0 20px rgba(61, 226, 136, 0.1));
    text-shadow: none;
    -webkit-text-fill-color: var(--mint-500);
    will-change: filter;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: relative;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: var(--space-sm) 0;
    min-height: 60px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
}

.logo-link {
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-close {
    display: none;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--foreground);
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    gap: var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mint-500) 0%, var(--mint-600) 100%);
    color: var(--background);
    box-shadow: 0 4px 12px rgba(61, 226, 136, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--mint-600) 0%, var(--mint-500) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 226, 136, 0.4);
}

.btn-secondary {
    background-color: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--accent);
    border-color: var(--mint-500);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
}

/* Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -120px;
    padding-top: 60px;
}

@keyframes pulseFloat {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.15) translate(40px, -30px);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) translate(-30px, 40px);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.1) translate(30px, -20px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }
}


.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-2xl);
    align-items: center;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--mint-400) 0%, var(--mint-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.3) saturate(1.2)
        drop-shadow(0 0 2px rgba(61, 226, 136, 0.7))
        drop-shadow(0 0 5px rgba(61, 226, 136, 0.5))
        drop-shadow(0 0 8px rgba(61, 226, 136, 0.3))
        drop-shadow(0 0 12px rgba(61, 226, 136, 0.2))
        drop-shadow(0 0 20px rgba(61, 226, 136, 0.1));
    -webkit-filter: brightness(1.3) saturate(1.2)
        drop-shadow(0 0 2px rgba(61, 226, 136, 0.7))
        drop-shadow(0 0 5px rgba(61, 226, 136, 0.5))
        drop-shadow(0 0 8px rgba(61, 226, 136, 0.3))
        drop-shadow(0 0 12px rgba(61, 226, 136, 0.2))
        drop-shadow(0 0 20px rgba(61, 226, 136, 0.1));
    will-change: filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-actions .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--mint-500);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--mint-500);
    opacity: 0.8;
    animation: bounceScroll 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    pointer-events: none;
    visibility: visible;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden !important;
    animation: none !important;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(61, 226, 136, 0.6))
            drop-shadow(0 0 16px rgba(61, 226, 136, 0.3));
}

@keyframes bounceScroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
    }
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(61, 226, 136, 0.1);
    transition: all var(--transition-base);
}

.video-container:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(61, 226, 136, 0.2);
    transform: translateY(-2px);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    width: 100%;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
}

/* Hero without video - Desktop centering */
.hero--no-video .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero--no-video .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero--no-video .hero-stats {
    justify-content: center;
}

/* Features Section */
.features {
    padding: var(--space-2xl) 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

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

.feature-card {
    background: linear-gradient(135deg, var(--card) 0%, rgba(23, 30, 46, 0.8) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--mint-500);
    box-shadow: 0 16px 32px rgba(61, 226, 136, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--card) 0%, rgba(61, 226, 136, 0.05) 100%);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--mint-500);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: var(--space-2xl) 0;
    position: relative;
}

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

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--mint-500) 0%, var(--mint-600) 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.steps.visible::before {
    opacity: 0.3;
    transform: scaleX(1);
}

.step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.steps.visible .step:nth-child(1) {
    transition-delay: 0.1s;
}

.steps.visible .step:nth-child(2) {
    transition-delay: 0.3s;
}

.steps.visible .step:nth-child(3) {
    transition-delay: 0.5s;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mint-500) 0%, var(--mint-600) 100%);
    color: var(--background);
    font-size: var(--font-size-xl);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(61, 226, 136, 0.3);
    transition: all var(--transition-base);
    transform: scale(0);
}

.steps.visible .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.steps.visible .step:nth-child(1) .step-number {
    animation-delay: 0.2s;
}

.steps.visible .step:nth-child(2) .step-number {
    animation-delay: 0.4s;
}

.steps.visible .step:nth-child(3) .step-number {
    animation-delay: 0.6s;
}

@keyframes stepNumberPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.steps.visible .step:hover .step-number {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(61, 226, 136, 0.4);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s;
}

.steps.visible .step-title {
    opacity: 1;
    transform: translateY(0);
}

.steps.visible .step:nth-child(1) .step-title {
    transition-delay: 0.4s;
}

.steps.visible .step:nth-child(2) .step-title {
    transition-delay: 0.6s;
}

.steps.visible .step:nth-child(3) .step-title {
    transition-delay: 0.8s;
}

.step-description {
    color: var(--muted-foreground);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out 0.4s, transform 0.5s ease-out 0.4s;
}

.steps.visible .step-description {
    opacity: 1;
    transform: translateY(0);
}

.steps.visible .step:nth-child(1) .step-description {
    transition-delay: 0.5s;
}

.steps.visible .step:nth-child(2) .step-description {
    transition-delay: 0.7s;
}

.steps.visible .step:nth-child(3) .step-description {
    transition-delay: 0.9s;
}

/* Pricing Section */
.pricing {
    padding: var(--space-2xl) 0 var(--space-lg) 0;
    position: relative;
}

.pricing .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.pricing-loading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    color: var(--muted-foreground);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--mint-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pricing-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: linear-gradient(135deg, var(--card) 0%, rgba(23, 30, 46, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    min-height: 480px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--mint-500);
    box-shadow: 0 16px 32px rgba(61, 226, 136, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--card) 0%, rgba(61, 226, 136, 0.05) 100%);
}

.pricing-card.popular {
    border-color: var(--mint-500);
    box-shadow: 0 0 0 2px rgba(61, 226, 136, 0.2), 0 8px 24px rgba(61, 226, 136, 0.15);
    background: linear-gradient(135deg, var(--card) 0%, rgba(61, 226, 136, 0.08) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--mint-500);
    color: var(--background);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.plan-name {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.plan-price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.plan-price .currency {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
}

.plan-interval {
    color: var(--muted-foreground);
    margin-bottom: 4px;
    font-size: 0.875rem;
}

/* Plan Price Container - New Layout */
.plan-price-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.plan-price-left {
    display: flex;
    flex-direction: column;
}

.plan-price-row-internal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.plan-price-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1;
}

.plan-price-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Override previous styles */
.plan-interval {
    color: var(--muted-foreground);
    margin-bottom: 0;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Plan Price Row with Badges (Legacy/Fallback) */
.plan-price-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xs);
}

.plan-price-row .plan-price {
    margin-bottom: 0;
}

.price-original {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    text-decoration: line-through;
    font-weight: normal;
    margin-right: 0;
}

.badge-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
    height: 20px;
}

.badge-trial {
    background-color: var(--mint-500);
    color: var(--background);
}

.badge-discount {
    background-color: var(--california-500);
    color: var(--background);
}

/* Coupon Info */
.coupon-info {
    color: var(--california-500);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.coupon-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.15rem 0.5rem;
    border: 1px solid var(--california-500);
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--california-500);
    height: 18px;
}

.countdown-badge svg {
    width: 12px;
    height: 12px;
}

/* Common Coupon Banner */
.coupon-banner {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    padding: 12px 24px;
    border-radius: 8px;
    background-color: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    box-shadow: none;
}

.coupon-banner-name {
    color: var(--california-500);
    font-weight: 600;
    font-size: var(--font-size-base);
    letter-spacing: normal;
}

.coupon-banner-terms {
    color: var(--california-400);
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.coupon-banner .countdown-badge {
    background-color: var(--california-500);
    color: var(--background);
    border: none;
    padding: 0 10px;
    font-size: 0.75rem;
    border-radius: 12px;
    box-shadow: none;
    height: 24px;
    font-weight: 600;
}

.coupon-banner .countdown-badge svg {
    width: 14px;
    height: 14px;
}

.plan-sections {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.plan-section {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.plan-section:first-child {
    padding-top: 0;
    border-top: none;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.plan-features {
    list-style: none;
    margin-bottom: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--muted-foreground);
    font-size: var(--font-size-base);
    cursor: help;
}

.plan-features li::before {
    content: '✓';
    color: var(--mint-500);
    font-weight: 700;
    font-size: var(--font-size-lg);
    min-width: 20px;
    text-align: center;
}

.plan-features li.inactive {
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.7;
}

.plan-features li.inactive::before {
    display: none;
}

.inactive-icon {
    color: var(--destructive);
    font-weight: 700;
    font-size: var(--font-size-lg);
    min-width: 20px;
    text-align: center;
    display: inline-block;
}

.plan-cta {
    width: 100%;
    margin-top: auto;
}

/* CTA Section */
.cta {
    padding: var(--space-md) 0;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.cta-actions .btn {
    min-width: 200px;
}

/* Tooltips */
.plan-features li {
    position: relative;
}

.tooltip-wrapper {
    position: relative;
    display: inline;
    cursor: help;
}

/* Info Icon */
.tooltip-wrapper::after {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-left: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted-foreground);
    transition: all 0.2s ease;
    vertical-align: middle;
    transform: translateY(-1px);
    opacity: 0.7;
    text-decoration: none;
}

.tooltip-wrapper:hover::after {
    background-color: var(--mint-500);
    border-color: var(--mint-500);
    color: var(--background);
    opacity: 1;
}

.tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(23, 30, 46, 0.95);
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    white-space: normal;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 1000;
    width: max-content;
    max-width: 280px;
    min-width: 200px;
    text-align: left;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(61, 226, 136, 0.1);
}

/* Adjust tooltip position if it would go off-screen */
.plan-features li:nth-child(1) .tooltip,
.plan-features li:nth-child(2) .tooltip {
    bottom: auto;
    top: calc(100% + 10px);
}

.plan-features li:nth-child(1) .tooltip::after,
.plan-features li:nth-child(2) .tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: rgba(23, 30, 46, 0.95);
}

.plan-features li:nth-child(1) .tooltip::before,
.plan-features li:nth-child(2) .tooltip::before {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--border);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(23, 30, 46, 0.95);
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: var(--border);
    z-index: -1;
}

li:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Ensure inactive items still show tooltips */
.plan-features li.inactive .tooltip-wrapper {
    opacity: 0.7;
}

/* Adjust tooltip position for mobile */
@media (max-width: 768px) {
    .tooltip {
        position: fixed;
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        white-space: normal;
        max-width: 80vw;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .tooltip::after,
    .tooltip::before {
        display: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    color: var(--muted-foreground);
    transition: all var(--transition-fast);
}

.cookie-close:hover {
    background-color: rgba(102, 112, 133, 0.1);
    color: var(--foreground);
}

.cookie-title {
    color: var(--foreground);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0 0 var(--space-sm) 0;
    padding-right: var(--space-xl);
}

.cookie-text {
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin: 0 0 var(--space-lg) 0;
    max-width: 800px;
}

.cookie-text a {
    color: var(--mint-500);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color var(--transition-fast);
}

.cookie-text a:hover {
    border-bottom-color: var(--mint-500);
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
    min-width: 120px;
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--space-md);
    }
    
    .cookie-title {
        font-size: var(--font-size-base);
        padding-right: var(--space-2xl);
    }
    
    .cookie-text {
        font-size: 0.8125rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-banner .btn-primary,
    .cookie-banner .btn-secondary {
        flex: 1;
        min-width: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--card);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    align-items: start;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--muted-foreground);
    max-width: 300px;
}

.footer-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

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

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-background {
        display: none;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .navbar {
        min-height: 50px;
        padding: var(--space-xs) 0;
    }
    
    .navbar .container {
        position: relative;
        min-height: 50px;
    }
    
    .nav-brand {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-toggle {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--background);
        width: 100%;
        height: 100vh;
        padding: var(--space-2xl) var(--space-lg);
        transition: right var(--transition-base);
        z-index: 1001;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-close {
        position: absolute;
        top: var(--space-lg);
        right: var(--space-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        color: var(--foreground);
        opacity: 0.9;
        transition: all var(--transition-fast);
        z-index: 1002;
    }
    
    .nav-close:hover,
    .nav-close:active {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav-close svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
        align-items: center;
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
        font-weight: 500;
        padding: var(--space-xs) 0;
        color: var(--foreground);
        transition: all var(--transition-fast);
        border: none;
        text-align: center;
    }
    
    .nav-link:active {
        color: var(--mint-500);
        transform: scale(0.98);
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: var(--space-sm);
    }
    
    .nav-menu .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-base);
        font-weight: 500;
    }
    
    .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .hero {
        padding: var(--space-xl) 0 var(--space-lg);
        min-height: auto;
        margin-top: 0;
        justify-content: flex-start;
    }
    
    /* Hero without video - Mobile vertical centering */
    .hero--no-video {
        min-height: calc(100vh - 50px); /* Account for navbar height */
        padding: var(--space-md) 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero--no-video .hero-content {
        display: block; /* Override display: contents */
    }
    
    .hero--no-video .hero-title,
    .hero--no-video .hero-subtitle,
    .hero--no-video .hero-actions,
    .hero--no-video .hero-stats {
        order: unset; /* Reset order property */
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        display: contents;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
        text-align: center;
        margin-bottom: var(--space-xs);
        line-height: 1.2;
        order: 1;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-md);
        line-height: 1.5;
        padding: 0 var(--space-sm);
        order: 2;
    }
    
    .hero-video {
        order: 3;
        margin: var(--space-sm) 0;
        width: 100%;
        display: block;
    }
    
    .hero-video .video-container {
        width: 100%;
        padding-bottom: 56.25%;
        position: relative;
        border-radius: 8px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin: var(--space-md) 0;
        order: 4;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-base);
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: var(--space-sm);
        margin-top: var(--space-md);
        flex-wrap: wrap;
        order: 5;
    }
    
    .stat {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .stat-number {
        font-size: var(--font-size-lg);
        margin-bottom: 0.125rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .scroll-indicator {
        bottom: var(--space-md);
    }
    
    .scroll-indicator svg {
        width: 28px;
        height: 28px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .steps::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .feature-card {
        padding: var(--space-md);
    }
    
    .pricing-grid {
        gap: var(--space-md);
    }
    
    .pricing-card {
        min-height: auto;
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .footer-description {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero {
        padding: var(--space-lg) 0 var(--space-md);
        margin-top: 0;
        justify-content: flex-start;
    }
    
    /* Hero without video - Small mobile vertical centering */
    .hero--no-video {
        min-height: calc(100vh - 50px);
        padding: var(--space-sm) 0;
    }
    
    .hero .container {
        gap: var(--space-sm);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
        margin-bottom: var(--space-xs);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--space-sm);
        line-height: 1.5;
        padding: 0 var(--space-xs);
    }
    
    .hero-video {
        margin: var(--space-xs) 0;
    }
    
    .hero-video .video-container {
        border-radius: 6px;
    }
    
    .hero-actions {
        margin: var(--space-sm) 0;
    }
    
    .hero-actions .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        gap: var(--space-xs);
        margin-top: var(--space-sm);
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: var(--font-size-base);
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: var(--space-md);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: var(--font-size-lg);
    }
}
