/* ============================================
   CINEBITE LANDING PAGE STYLES
   Dark Theme Cinema-Optimized Design
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ============================================
       ORIGINAL COLOR THEME (Green/Teal)
       Uncomment below to switch back to original theme
       ============================================ */
    /* --deep-navy: #313131; */
    /* --charcoal: #3F4245; */
    /* --soft-white: #F8F9FA; */
    /* --ocean-blue: rgba(8, 185, 111, 0.72); */
    /* --ocean-blue-solid: #08B96F; */
    /* --teal-green: rgba(80, 157, 138, 0.77); */
    /* --teal-green-solid: #509D8A; */
    /* --light-gray: #E8ECEF; */
    /* --medium-gray: #CBCCCD; */
    /* --product-container-1: #5D6861; */
    /* --product-container-2: #4B4A45; */
    /* --gradient-primary: linear-gradient(135deg, var(--ocean-blue), var(--teal-green)); */
    /* --gradient-dark: linear-gradient(135deg, var(--deep-navy), var(--charcoal)); */

    /* ============================================
       NEW COLOR THEME (Dark Blue & White)
       ============================================ */
    --deep-navy: #0A1128;
    --charcoal: #1C2541;
    --soft-white: #FFFFFF;
    --ocean-blue: rgba(65, 105, 225, 0.72);
    --ocean-blue-solid: #4169E1;
    --teal-green: rgba(30, 144, 255, 0.77);
    --teal-green-solid: #1E90FF;
    --light-gray: #F0F4F8;
    --medium-gray: #D1D5DB;
    --product-container-1: #2D3E5F;
    --product-container-2: #1F2937;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--ocean-blue), var(--teal-green));
    --gradient-dark: linear-gradient(135deg, var(--deep-navy), var(--charcoal));

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(65, 105, 225, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--deep-navy);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-icon {
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-white);
}

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

.nav-link {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-blue-solid);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--soft-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--soft-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid var(--ocean-blue-solid);
}

.btn-secondary:hover {
    background: var(--ocean-blue-solid);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(8, 185, 111, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(80, 157, 138, 0.1), transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(63, 66, 69, 0.3);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(8, 185, 111, 0.2);
    transition: all var(--transition-normal);
    flex: 1;
    min-width: 140px;
}

.stat:hover {
    background: rgba(63, 66, 69, 0.5);
    border-color: var(--ocean-blue-solid);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ocean-blue-solid);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.stat p {
    color: var(--light-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   PROFESSIONAL PHONE MOCKUP
   ============================================ */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* iPhone-Style Phone Frame */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #0a0a0a, #1f1f1f);
    border-radius: 42px;
    padding: 11px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    animation: phoneFloat 5s ease-in-out infinite;
    z-index: 1;
    transform-style: preserve-3d;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(-3deg) rotateX(2deg);
    }
    50% {
        transform: translateY(-20px) rotateY(-3deg) rotateX(2deg);
    }
}

/* Phone Notch (iPhone style) */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 3px;
}

/* Phone Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1d2e 0%, #23263a 50%, #2b2e42 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

/* Screen Content */
.screen-content {
    height: 100%;
    overflow-y: auto;
    padding: 0 16px 20px;
    scrollbar-width: none;
}

.screen-content::-webkit-scrollbar {
    display: none;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 12px;
    font-size: 11px;
    color: #ffffff;
    font-weight: 500;
}

.status-time {
    letter-spacing: 0.5px;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 10px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 0;
}

.app-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-button {
    position: relative;
    background: rgba(8, 185, 111, 0.15);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-button:hover {
    background: rgba(8, 185, 111, 0.25);
    transform: scale(1.05);
}

.cart-icon {
    font-size: 18px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #08B96F, #509D8A);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(8, 185, 111, 0.4);
}

/* Search Bar */
.search-bar {
    background: rgba(63, 66, 89, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.search-icon {
    font-size: 16px;
    opacity: 0.6;
}

.search-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Categories Section */
.categories-section {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.categories-section::-webkit-scrollbar {
    display: none;
}

.category-chip {
    background: rgba(63, 66, 89, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-chip:hover {
    background: rgba(63, 66, 89, 0.8);
    border-color: rgba(8, 185, 111, 0.3);
    transform: translateY(-2px);
}

.category-chip.active {
    background: linear-gradient(135deg, #08B96F, #509D8A);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(8, 185, 111, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-bottom: 20px;
}

/* Product Card */
.product-card {
    background: rgba(48, 51, 70, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(8, 185, 111, 0.3);
    border-color: rgba(8, 185, 111, 0.4);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 110px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Popcorn Product 1 - Butter Popcorn */
.popcorn-1 {
    background: linear-gradient(135deg, #FFE066 0%, #FFCC33 50%, #FFB800 100%);
    position: relative;
}

.popcorn-1::before {
    content: '🍿';
    font-size: 52px;
    position: absolute;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: popBounce 2s ease-in-out infinite;
}

@keyframes popBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* Popcorn Product 2 - Caramel */
.popcorn-2 {
    background: linear-gradient(135deg, #FF9A76 0%, #FF7F50 50%, #FF6347 100%);
    position: relative;
}

.popcorn-2::before {
    content: '🍿';
    font-size: 52px;
    position: absolute;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) hue-rotate(-20deg);
    animation: popBounce 2s ease-in-out infinite 0.2s;
}

/* Drink Product 1 - Coca Cola */
.drink-1 {
    background: linear-gradient(135deg, #E63946 0%, #C1121F 50%, #9B2226 100%);
    position: relative;
}

.drink-1::before {
    content: '🥤';
    font-size: 52px;
    position: absolute;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: drinkSway 3s ease-in-out infinite;
}

@keyframes drinkSway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Drink Product 2 - Iced Tea */
.drink-2 {
    background: linear-gradient(135deg, #D4A373 0%, #B8860B 50%, #8B4513 100%);
    position: relative;
}

.drink-2::before {
    content: '🧋';
    font-size: 52px;
    position: absolute;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: drinkSway 3s ease-in-out infinite 0.3s;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, rgba(8, 185, 111, 0.95), rgba(80, 157, 138, 0.95));
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(8, 185, 111, 0.4);
    z-index: 2;
}

.product-badge.hot {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 71, 87, 0.95));
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* Product Info */
.product-info {
    padding: 10px 12px 12px;
    background: rgba(30, 33, 46, 0.4);
}

.product-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.product-category {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #08B96F, #509D8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.add-button {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #08B96F 0%, #509D8A 100%);
    border: none;
    border-radius: 9px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 3px 10px rgba(8, 185, 111, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.add-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.add-button:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow:
        0 6px 20px rgba(8, 185, 111, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.add-button:hover::before {
    opacity: 1;
}

.add-button:active {
    transform: scale(0.95) rotate(90deg);
}

/* Home Indicator */
.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Phone Shadow */
.phone-shadow {
    position: absolute;
    width: 280px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

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

.feature-card {
    background: var(--deep-navy);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--ocean-blue);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--ocean-blue-solid);
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--deep-navy);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.step-content {
    background: var(--charcoal);
    padding: 3rem 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.step-content:hover {
    border-color: var(--ocean-blue);
    transform: scale(1.05);
}

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

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--ocean-blue-solid);
}

.step-content p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--ocean-blue);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
}

/* Benefits Cards Grid */
.benefits-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.benefits-card {
    background: var(--deep-navy);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(8, 185, 111, 0.15);
    transition: all var(--transition-normal);
}

.benefits-card:hover {
    transform: translateY(-5px);
    border-color: var(--ocean-blue-solid);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.benefits-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefits-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 0.75rem;
}

.benefits-card-text {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

/* Audience Benefits Section */
.benefits-audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.audience-card {
    background: var(--deep-navy);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(8, 185, 111, 0.15);
    transition: all var(--transition-normal);
}

.audience-card:hover {
    border-color: rgba(8, 185, 111, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(8, 185, 111, 0.2);
}

.audience-icon {
    font-size: 2.5rem;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ocean-blue-solid);
    margin: 0;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.audience-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--ocean-blue-solid);
    font-weight: 700;
    font-size: 1.2rem;
}

.audience-list li:hover {
    color: var(--soft-white);
}

.benefits-action {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--deep-navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--charcoal);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
    color: var(--light-gray);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--ocean-blue-solid);
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--soft-white);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.cta-note {
    color: var(--deep-navy);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--deep-navy) 100%);
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-modern-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 194, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--ocean-blue);
    box-shadow: 0 25px 50px rgba(0, 194, 255, 0.2);
}

.contact-modern-card:hover::before {
    opacity: 1;
}

.modern-card-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.modern-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(0, 194, 255, 0.05));
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: var(--radius-md);
    color: var(--ocean-blue-solid);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-modern-card:hover .modern-icon {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.25), rgba(0, 194, 255, 0.1));
    transform: scale(1.05);
}

.modern-card-title {
    flex: 1;
}

.modern-card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--soft-white);
    margin-bottom: 0.25rem;
}

.card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ocean-blue-solid);
    background: rgba(0, 194, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.modern-card-description {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.modern-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ocean-blue-solid), var(--ocean-blue));
    color: var(--soft-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-contact-btn:hover::before {
    left: 100%;
}

.modern-contact-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 194, 255, 0.3);
}

.modern-contact-btn svg {
    transition: transform 0.3s ease;
}

.modern-contact-btn:hover svg {
    transform: translateX(3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--deep-navy);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--ocean-blue-solid);
}

.footer-section p {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--ocean-blue-solid);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
}

.social-links a {
    transition: transform var(--transition-fast);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .benefits-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-audience {
        grid-template-columns: 1fr;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .modern-card-header {
        flex-direction: row;
    }

    .modern-icon {
        width: 48px;
        height: 48px;
    }

    .modern-card-title h3 {
        font-size: 1.1rem;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 17, 40, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .stat {
        min-width: 100%;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .benefits-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-audience {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}