/* =============================================
   CASTO IPTV - Premium Dark Theme Styles
   Android TV / IPTV App Landing Page Design
   ============================================= */

/* CSS Variables - Matching Casto IPTV App Branding */
:root {
    /* Primary Blue Accent Colors */
    --primary: #1E88E5;
    --primary-light: #42A5F5;
    --primary-dark: #1565C0;
    --primary-hover: #1565C0;
    --secondary: #42A5F5;
    --accent: #64B5F6;
    --premium-gold: #FFB300;
    --premium-gold-light: #FFCA28;
    
    /* Deep Navy Backgrounds */
    --bg-dark: #0A0E14;
    --bg-card: #111820;
    --bg-card-hover: #1A2332;
    --bg-elevated: #1E2A3A;
    --bg-surface: #151B24;
    
    /* Text Colors - Light on Dark */
    --text-primary: #E8ECF0;
    --text-secondary: #D0D6DE;
    --text-muted: #8A95A5;
    --text-white: #FFFFFF;
    
    /* Borders */
    --border: #1E2A3A;
    --border-light: #2A3A4A;
    --border-accent: rgba(30, 136, 229, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E88E5 0%, #42A5F5 100%);
    --gradient-premium: linear-gradient(135deg, #FFB300 0%, #FFCA28 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E14 0%, #111820 100%);
    --gradient-card: linear-gradient(145deg, #1A2332 0%, #111820 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(30, 136, 229, 0.25);
    --shadow-glow-strong: 0 0 60px rgba(30, 136, 229, 0.35);
    
    /* Border Radius - Pill shaped buttons */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    --container-width: 1200px;
    --header-height: 120px;
    --header-height-compact: 76px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: height 0.25s ease, background 0.25s ease;
}

.header > .container {
    max-width: none;
    height: 100%;
    padding: 0 16px;
}

.header.scrolled {
    background: rgba(10, 14, 20, 0.98);
    border-bottom-color: var(--border);
}

/* Compact header on scroll */
.header.header--compact {
    height: var(--header-height-compact);
    background: rgba(10, 14, 20, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    width: 500px;
    height: auto;
    max-height: 90px;
    transition: width 0.25s ease, max-height 0.25s ease;
}

/* Compact logo on scroll */
.header.header--compact .logo-img {
    width: 340px;
    max-height: 52px;
}

/* Responsive header */
@media (max-width: 1024px) {
    .logo-img {
        width: 400px;
        max-height: 80px;
    }
    .header.header--compact .logo-img {
        width: 280px;
        max-height: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
        --header-height-compact: 64px;
    }
    .header > .container {
        padding: 0 12px;
    }
    .logo-img {
        width: 240px;
        max-height: 56px;
    }
    .header.header--compact .logo-img {
        width: 200px;
        max-height: 44px;
    }
    .nav {
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .logo-img {
        width: 200px;
        max-height: 48px;
    }
    .header.header--compact .logo-img {
        width: 160px;
        max-height: 40px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.badge:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

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

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #1E2A3A 0%, #111820 100%);
    border-radius: 36px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-light);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0A0E14;
    border-radius: 20px;
    z-index: 10;
}

.phone-mockup img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
}

/* Hero Carousel (inside phone mockup) */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 24px;
    background: #0A0E14;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Hero Carousel Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    padding: 6px 12px;
    background: rgba(10, 14, 20, 0.7);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(138, 149, 165, 0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(138, 149, 165, 0.7);
}

.hero-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(30, 136, 229, 0.5);
    width: 10px;
    height: 10px;
}

.phone-mockup.small {
    width: 220px;
    padding: 10px;
    border-radius: 28px;
}

.phone-mockup.small::before {
    height: 18px;
    width: 60px;
}

.phone-mockup.small img {
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
}

.phone-mockup.small img:hover {
    transform: scale(1.02);
}

/* =============================================
   BUTTONS - Pill Shaped Premium Style
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 24px rgba(30, 136, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.5);
    background: linear-gradient(135deg, #1565C0 0%, #1E88E5 100%);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(30, 136, 229, 0.1);
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.15);
}

.btn-premium {
    background: var(--gradient-premium);
    color: #0A0E14;
    box-shadow: 0 4px 24px rgba(255, 179, 0, 0.3);
    font-weight: 700;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.45);
}

.btn-google-play,
.btn-apk {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    text-align: left;
    border-radius: var(--radius-lg);
}

.btn-google-play span,
.btn-apk span {
    display: flex;
    flex-direction: column;
}

.btn-google-play small,
.btn-apk small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-google-play strong,
.btn-apk strong {
    font-size: 1.1rem;
}

.btn-google-play:hover,
.btn-apk:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(30, 136, 229, 0.2);
}

/* =============================================
   SECTIONS
   ============================================= */
section {
    padding: 100px 0;
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
    background: var(--bg-dark);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Glare effect overlay */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(30, 136, 229, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Border glow on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(30, 136, 229, 0.1),
        0 0 60px rgba(30, 136, 229, 0.1);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.25);
    position: relative;
    z-index: 3;
}

.feature-icon svg {
    fill: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    position: relative;
    z-index: 3;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 3;
}

/* =============================================
   SCREENSHOTS SECTION
   ============================================= */
.screenshots {
    background: var(--bg-elevated);
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.screenshots-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 0 60px;
}

.screenshot-item {
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--text-secondary);
}

.slider-btn svg {
    fill: var(--text-secondary);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
}

.slider-btn:hover svg {
    fill: var(--text-white);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    position: relative;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Glare effect for step cards */
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(30, 136, 229, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(30, 136, 229, 0.1),
        0 0 60px rgba(30, 136, 229, 0.15);
}

.step-card-highlight {
    border-color: var(--premium-gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 179, 0, 0.05) 100%);
}

/* Golden glare for highlighted step card */
.step-card-highlight::before {
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 179, 0, 0.1),
        transparent 40%
    ) !important;
}

.step-card-highlight:hover {
    border-color: var(--premium-gold);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 179, 0, 0.15),
        0 0 60px rgba(255, 179, 0, 0.15);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.35);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card-highlight .step-icon {
    background: var(--gradient-premium);
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.35);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
}

.step-card-highlight .step-number {
    border-color: var(--premium-gold);
    color: var(--premium-gold);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-white);
    position: relative;
    z-index: 3;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.step-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.step-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.step-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 136, 229, 0.15);
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.step-badge-gold {
    background: rgba(255, 179, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.3);
    color: var(--premium-gold);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.steps-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 20px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.steps-disclaimer svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* How It Works Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .step-card {
        padding: 32px 20px;
    }
    
    .steps-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* =============================================
   PREMIUM SECTION
   ============================================= */
.premium {
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}

.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 179, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.premium-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Golden glare for premium features */
.premium-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 179, 0, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-feature:hover::before {
    opacity: 1;
}

.premium-feature:hover {
    border-color: var(--premium-gold);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(255, 179, 0, 0.15),
        0 0 0 1px rgba(255, 179, 0, 0.1);
}

.premium-feature svg {
    fill: var(--premium-gold);
    position: relative;
    z-index: 2;
}

.premium-feature span {
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.premium-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.premium-pricing {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison {
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-elevated);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table .premium-col {
    background: rgba(255, 179, 0, 0.04);
}

.comparison-table th.premium-col {
    color: var(--premium-gold);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check {
    color: #42A5F5;
    font-weight: 700;
    font-size: 1.2rem;
}

.cross {
    color: #8A95A5;
    font-weight: 500;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust {
    padding: 60px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.trust-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.25);
}

.trust-icon svg {
    fill: white;
}

.trust-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.trust-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   DOWNLOAD SECTION
   ============================================= */
.download {
    background: var(--bg-dark);
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER - Premium Design
   ============================================= */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    padding: 0;
    margin-top: 80px;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary-light) 50%, 
        var(--primary) 80%, 
        transparent 100%);
    opacity: 0.6;
}

.footer > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .logo {
    display: inline-flex;
    padding: 0;
}

.footer .logo-img {
    width: 320px;
    height: auto;
    transition: opacity 0.2s ease;
}

.footer .logo:hover .logo-img {
    opacity: 0.85;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0;
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a,
.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-email {
    color: var(--primary) !important;
    font-weight: 500 !important;
}

.footer-email:hover {
    color: var(--primary-light) !important;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 32px;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    margin: 0;
    max-width: 500px;
}

/* Footer Responsive - Tablet */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-nav,
    .footer-legal {
        align-items: center;
        text-align: center;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 600px) {
    .footer {
        margin-top: 60px;
    }
    
    .footer > .container {
        padding: 48px 16px 32px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer .logo-img {
        width: 220px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-nav h4,
    .footer-legal h4 {
        font-size: 0.75rem;
    }
    
    .footer-nav ul,
    .footer-legal ul {
        gap: 16px;
    }
    
    .footer-nav a,
    .footer-legal a {
        font-size: 1rem;
        padding: 4px 0;
    }
    
    .footer-bottom {
        padding-top: 24px;
        gap: 6px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem;
    }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--bg-dark);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--primary-light);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Delete Account Page */
.delete-account-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 32px;
    text-align: center;
}

.delete-account-box .email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 24px 0;
    box-shadow: 0 4px 24px rgba(30, 136, 229, 0.35);
}

.delete-account-box .email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.5);
    text-decoration: none;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* Hero phone mockup responsive */
    .phone-mockup {
        width: 240px;
    }
    
    .phone-mockup::before {
        width: 70px;
        height: 20px;
    }
    
    .hero-carousel {
        border-radius: 20px;
    }
    
    .hero-carousel-slide img {
        border-radius: 20px;
    }
    
    .hero-carousel-dots {
        bottom: 10px;
        padding: 5px 10px;
    }
    
    .hero-dot {
        width: 7px;
        height: 7px;
    }
    
    .hero-dot.active {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px;
        border-radius: var(--radius-sm);
    }
    
    .nav-menu a:hover {
        background: var(--bg-card);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 240px;
    }
    
    .phone-mockup.small {
        width: 180px;
    }
    
    .trust-content {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
    
    .screenshots-track {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-buttons .btn {
        justify-content: center;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .delete-account-box {
        padding: 24px;
    }
}

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

.hero-text,
.hero-image,
.feature-card,
.step-card,
.screenshot-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

/* Smooth scroll offset for anchor links */
:target::before {
    content: '';
    display: block;
    height: var(--header-height);
    margin-top: calc(var(--header-height) * -1);
}

/* =============================================
   CONVERSION OPTIMIZATION STYLES
   ============================================= */

/* Hero Social Proof Badges */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-proof-badge strong {
    color: var(--text-primary);
}

.social-proof-badge svg {
    flex-shrink: 0;
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    padding: 12px 28px;
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-light);
}

/* See More Screenshots Link */
.see-more-screenshots {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.see-more-screenshots:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Hero phone mockup single image */
.hero-image .phone-mockup img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
}

/* =============================================
   HERO FEATURES SECTION
   ============================================= */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.hero-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Glare effect overlay for hero feature cards */
.hero-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(30, 136, 229, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-feature-card:hover::before {
    opacity: 1;
}

/* Subtle shine line effect */
.hero-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.hero-feature-card:hover::after {
    left: 120%;
}

.hero-feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(30, 136, 229, 0.1),
        0 0 60px rgba(30, 136, 229, 0.1);
}

.hero-feature-content {
    position: relative;
    z-index: 3;
}

.hero-feature-content h3 {
    font-size: 1.25rem;
    margin-top: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

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

.premium-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gradient-premium);
    color: #0A0E14;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
}

.feature-icon.premium-badge {
    background: var(--gradient-premium);
}

@media (max-width: 900px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-feature-card {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =============================================
   SCREENSHOT CAPTIONS
   ============================================= */
.screenshot-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   PREMIUM PRICING BOX
   ============================================= */
.premium-pricing-box {
    text-align: center;
    margin-bottom: 40px;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price-from {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.price-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trial-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 179, 0, 0.15);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: var(--radius-pill);
    color: var(--premium-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.cancel-badge {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Premium Benefits */
.premium-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.premium-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.premium-benefit svg {
    flex-shrink: 0;
    fill: var(--premium-gold);
}

.premium-benefit span {
    font-weight: 500;
}

.premium-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   TRUST SECTION - REDESIGNED
   ============================================= */
.trust {
    padding: 80px 0;
    background: var(--bg-dark);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.trust-badge svg {
    fill: var(--primary);
}

.trust-badge span {
    font-weight: 500;
    color: var(--text-secondary);
}

.google-play-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-play-badge svg {
    fill: var(--primary);
}

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

.rating-stars {
    display: flex;
    gap: 2px;
}

.badge-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.testimonial-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-legal-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    background: var(--bg-elevated);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact {
    background: var(--bg-dark);
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%238A95A5'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   DOWNLOAD SECTION UPDATES
   ============================================= */
.download-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* =============================================
   STICKY MOBILE CTA BAR
   ============================================= */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
}

.sticky-cta-btn:hover {
    box-shadow: 0 6px 28px rgba(30, 136, 229, 0.5);
}

/* Show only on mobile */
@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind sticky bar */
    body {
        padding-bottom: 80px;
    }
    
    /* Hide sticky bar when at top of page (hero visible) */
    .sticky-cta-bar.at-top {
        transform: translateY(100%);
    }
}

/* =============================================
   MOBILE HERO OPTIMIZATIONS
   ============================================= */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
    }
    
    .hero-social-proof {
        justify-content: center;
        gap: 10px;
    }
    
    .social-proof-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        margin-bottom: 20px;
    }
    
    .see-more-screenshots {
        display: block;
        text-align: center;
    }
}

/* =============================================
   FOOTER LINK TO FAQ
   ============================================= */
.footer-nav ul li a[href="#faq"],
.footer-nav ul li a[href="#contact"] {
    color: var(--text-secondary);
}
