/* GigaBrands Landing Page - Complete Component Styles */

/* Global Reset & Variables */
:root {
    /* Brand Colors - Enhanced for Better Contrast & Reduced Eye Strain */
    --giga-orange: #FF8533;
    --giga-orange-hover: #FF7519;
    --giga-orange-dark: #E66A00;
    --giga-orange-light: #FFF4E6;
    
    /* Professional Backgrounds - Softer Dark Theme with Less Contrast */
    --bg-primary: #1C1C1E;
    --bg-secondary: #252527;
    --bg-tertiary: #2C2C2E;
    --bg-elevated: #323235;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.06);
    
    /* Enhanced Text System - Better Contrast & Reduced Eye Strain */
    --text-primary: #F5F5F7;
    --text-secondary: #D1D1D6;
    --text-muted: #A1A1A6;
    --text-light: #8E8E93;
    --text-accent: #FF8533;
    --text-success: #34C759;
    
    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Status & Brand Colors */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --error: #FF6B6B; /* softened error color to reduce harsh red */
    --amazon: #FF9900;
    
    /* Modern Border System */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.24);
    --border-accent: rgba(255, 107, 53, 0.3);
    
    /* Professional Shadow System */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 0 1px rgba(255, 107, 53, 0.1), 0 0 20px rgba(255, 107, 53, 0.2);
    --shadow-glow-lg: 0 0 0 1px rgba(255, 107, 53, 0.2), 0 0 40px rgba(255, 107, 53, 0.3);
    
    /* Modern Spacing System */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Border Radius System */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', ui-sans-serif, system-ui, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    /* Softer dark background to reduce eye strain */
    background: #1C1C1E;
    
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 var(--space-xl);
    
    /* Responsive container padding */
    @media (max-width: 767px) {
        padding: 0 var(--space-lg);
    }
    
    @media (min-width: 1440px) {
        max-width: 80rem; /* 1280px on larger screens */
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 3rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    
    /* Softer background with improved gradient */
    background: linear-gradient(135deg, #1C1C1E 0%, #252527 50%, #2C2C2E 100%);
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    padding: var(--space-lg) var(--space-2xl);
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%),
        var(--bg-glass);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-accent);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    
    /* Subtle glow animation */
    animation: trustGlow 4s ease-in-out infinite alternate;
}

@keyframes trustGlow {
    0% {
        box-shadow: var(--shadow-md);
    }
    100% {
        box-shadow: var(--shadow-md), var(--shadow-glow);
    }
}

.trust-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-item.accent {
    color: var(--giga-orange);
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-right {
    display: flex;
    flex-direction: column;
}

.hero-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    
    /* Enhanced gradient text with better contrast */
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 40%, var(--giga-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Improved fallback */
    color: var(--text-primary);
    
    /* Add text shadow for depth */
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.text-accent {
    color: var(--giga-orange);
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 42rem;
    letter-spacing: -0.01em;
    
    /* Better text rendering */
    text-wrap: balance;
}

.hero-social-proof {
    margin: var(--space-lg) 0;
}

.hero-social-proof .social-proof-indicators {
    gap: var(--space-lg);
    margin-bottom: 0;
}

.hero-social-proof .proof-item {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-social-proof .proof-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

.hero-urgency {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    font-style: italic;
}

.qualification-note {
    font-size: 14px;
    color: var(--gray-400);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-2xl);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: var(--text-base);
    font-family: inherit;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    
    /* Base state animations */
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.btn-primary {
    background: linear-gradient(135deg, var(--giga-orange) 0%, var(--giga-orange-dark) 100%);
    color: white;
    box-shadow: 
        0 8px 24px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--giga-orange), transparent, var(--giga-orange));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--giga-orange-hover) 0%, var(--giga-orange) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.3),
        0 0 0 2px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-primary:hover::after {
    opacity: 0.3;
}

.btn-large {
    padding: var(--space-xl) var(--space-3xl);
    font-size: var(--text-lg);
    font-weight: 700;
    min-height: 56px;
    letter-spacing: -0.015em;
    
    /* Enhanced mobile touch target */
    @media (max-width: 767px) {
        min-height: 60px;
        width: 100%;
    }
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
}

.play-button {
    width: 40px;
    height: 40px;
    background: var(--giga-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    text-align: center;
}

.metric-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--giga-orange);
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Revenue Calculator */
.revenue-calculator {
    background: var(--bg-glass);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-default);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    
    /* Animated gradient border */
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        padding: 2px;
        background: linear-gradient(135deg, var(--giga-orange), var(--success), var(--giga-orange));
        border-radius: inherit;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: subtract;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: subtract;
        animation: borderRotate 8s linear infinite;
    }
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(135deg, var(--giga-orange), var(--success), var(--giga-orange));
    }
    25% {
        background: linear-gradient(225deg, var(--success), var(--giga-orange), var(--success));
    }
    50% {
        background: linear-gradient(315deg, var(--giga-orange), var(--success), var(--giga-orange));
    }
    75% {
        background: linear-gradient(45deg, var(--success), var(--giga-orange), var(--success));
    }
    100% {
        background: linear-gradient(135deg, var(--giga-orange), var(--success), var(--giga-orange));
    }
}

.revenue-calculator h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.calculator-field {
    margin-bottom: 24px;
}

.calculator-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--giga-white);
}

.slider-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--giga-orange);
    text-align: center;
    margin-top: 8px;
}

.calculator-result {
    background: linear-gradient(135deg, var(--giga-orange), var(--amazon-orange));
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 24px;
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
}

.result-improvement {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-note {
    font-size: 12px;
    opacity: 0.8;
}

/* Calculator CTA */
.calculator-cta {
    margin-top: 16px;
}

.btn-calculator {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    color: var(--giga-orange);
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.btn-calculator:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Logo Carousel */
.logo-carousel {
    margin-top: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #000000 0%, transparent 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #000000 100%);
}

.logo-carousel-label {
    text-align: center;
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.logo-track {
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
    opacity: 0.85;
    padding: var(--space-xl) 0;
    animation: slide-logos 30s linear infinite;
    width: max-content;
    
    /* Smooth hover transitions */
    transition: opacity 0.3s ease;
}

.logo-track:hover {
    opacity: 1;
    animation-play-state: paused;
}

@keyframes slide-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: inline-block;
    margin: 0 var(--space-lg);
}

.logo-item img {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Enhanced logo hover effects */
.logo-carousel-section .logo-item:hover img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* Pause animation on section hover */
.logo-carousel-section:hover .logo-track {
    animation-play-state: paused;
}

/* Sections */
.section {
    padding: clamp(2rem, 6vh, 4rem) 0;
    position: relative;
}

.section-header {
    margin-bottom: clamp(3rem, 6vh, 4rem);
}

/* Reduce top padding for what-you-get section */
#what-you-get {
    padding-top: clamp(1rem, 4vh, 2rem);
}

/* Significantly reduce top padding for built-in-system section */
#built-in-system {
    padding-top: clamp(0rem, 0.5vh, 0.25rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
}

/* Refined Inline CTA Styling */
.inline-cta {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 16px;
    margin: clamp(2rem, 6vh, 4rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.inline-cta.section-alt {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: #333333;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.section-alt .cta-text {
    color: #ffffff;
}

.btn-inline {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%) !important;
    color: white !important;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-inline::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-inline:hover::after {
    transform: translateX(4px);
}

.section-alt .btn-inline {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #FF6B00 !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-inline:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.section-alt .btn-inline:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .inline-cta {
        margin: clamp(1.5rem, 4vh, 2.5rem) 0;
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    }
    
    .btn-inline {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Add subtle section dividers */
.section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 50%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section-alt {
    background: #000000;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    max-width: 56rem; /* 896px */
    margin: 0 auto var(--space-2xl);
    
    /* Better text flow */
    @supports (text-wrap: balance) {
        h2 {
            text-wrap: balance;
        }
    }
}

.section-header h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
    
    /* Subtle gradient */
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.6;
}

/* Features Grid */
/* Features Grid - Professional Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
    align-items: start;
}

.feature-card {
    background: var(--bg-glass);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-align: left;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    
    /* Subtle inner glow */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--border-accent);
    background: rgba(255, 255, 255, 0.08);
    
    &::before {
        opacity: 1;
    }
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card .feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.feature-card .feature-icon-wrapper .feature-icon {
    font-size: 24px;
    color: var(--giga-orange);
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.4);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.feature-card .benefit-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin: 60px 0;
}

.stats-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 8px;
}

.stats-section p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    align-items: center;
    
    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--giga-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-default);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    
    /* Smooth slide-up animation */
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Safe area support for modern devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-sticky-cta {
        padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
    }
}

.btn-full {
    width: 100%;
}

/* Modern Mobile-First Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    /* Hide revenue calculator on mobile - too complex */
    .hero-right {
        display: none;
    }
    
    .hero-left {
        text-align: center;
        padding: 0 var(--space-sm);
    }
    
    .hero-headline {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
        text-align: center;
        margin-bottom: var(--space-md);
        line-height: 1.15;
        padding: 0 var(--space-sm);
        text-wrap: balance;
        
        /* Better gradient on mobile */
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--giga-orange) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero-subheadline {
        font-size: var(--text-base);
        text-align: center;
        margin-bottom: var(--space-lg);
        line-height: 1.5;
        padding: 0 var(--space-sm);
        color: var(--text-secondary);
        opacity: 0.9;
    }
    
    .hero-social-proof .social-proof-indicators {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
    
    .hero-social-proof .proof-item {
        width: 100%;
        max-width: 280px;
    }
    
    .qualification-note {
        font-size: 13px;
        margin-bottom: var(--space-xl);
        text-align: center;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .btn {
        width: 100%;
        min-height: 56px;
        text-align: center;
        justify-content: center;
        font-size: var(--text-base);
        padding: var(--space-md) var(--space-xl);
        border-radius: var(--radius-md);
    }
    
    .btn-primary {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
    }
    
    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        margin-top: var(--space-2xl);
        padding: 0 var(--space-sm);
    }
    
    .metric {
        padding: var(--space-sm);
    }
    
    .metric-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .metric-label {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .trust-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-md) var(--space-lg);
        margin-bottom: var(--space-xl);
        font-size: 12px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    /* Hide trust dividers on mobile */
    .trust-divider {
        display: none;
    }
    
    /* Optimize logo carousel for mobile */
    .logo-carousel {
        margin-top: 0;
        margin-bottom: 2rem;
        padding: 1rem var(--space-md);
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .logo-carousel-label {
        font-size: 12px;
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .logo-track {
        gap: var(--space-md);
        padding: var(--space-sm) 0;
        /* Enable horizontal scroll on mobile */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .logo-item {
        flex: 0 0 auto;
        scroll-snap-align: center;
        width: 100px;
        height: 60px;
    }
    
    .logo-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Hide gradient overlays on mobile carousel */
    .logo-carousel::before,
    .logo-carousel::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature-card {
        padding: var(--space-xl);
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .revenue-calculator {
        padding: var(--space-2xl);
        margin: var(--space-xl) 0;
    }
    
    .section {
        padding: clamp(2rem, 6vh, 3.5rem) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-3xl);
        text-align: center;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .mobile-sticky-cta {
        display: block;
        background: var(--bg-elevated);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-default);
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }
    
    /* Fix comparison table on mobile */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -var(--space-md);
        padding: 0 var(--space-md);
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.875rem;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .header-cell,
    .cell {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .cell.scenario .label {
        font-size: 0.8rem;
    }
    
    .cell.scenario .sublabel {
        font-size: 0.7rem;
    }
    
    /* Fix video overflow on mobile */
    .featured-video-testimonial,
    .video-testimonial {
        max-width: 100%;
        overflow: hidden;
    }
    
    .featured-video-testimonial iframe,
    .video-testimonial iframe {
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    /* Fix form container overflow */
    .form-container {
        max-width: 100%;
        padding: var(--space-lg) var(--space-md);
        margin: 0;
    }
    
    /* Optimize multi-step form for mobile */
    .multi-step-form {
        max-width: 100%;
        margin: 0;
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-elevated);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .form-step {
        padding: 0;
    }
    
    .form-step h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-md);
    }
    
    .form-step p {
        font-size: 0.875rem;
        margin-bottom: var(--space-lg);
    }
    
    .form-group {
        margin-bottom: var(--space-md);
    }
    
    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        height: 3.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-group textarea {
        height: auto;
        min-height: 5rem;
    }
    
    /* Checkbox group mobile optimization */
    .checkbox-group {
        gap: var(--space-sm);
    }
    
    .checkbox-option {
        padding: 0.875rem;
        font-size: 0.875rem;
        min-height: 3rem;
    }
    
    /* Form navigation buttons */
    .form-navigation {
        gap: var(--space-md);
        margin-top: var(--space-xl);
    }
    
    .form-navigation button {
        min-height: 3.5rem;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .btn.form-submit {
        width: 100%;
        min-height: 4rem;
        font-size: 1.125rem;
        font-weight: 600;
    }
    
    /* Form progress mobile */
    .form-progress {
        padding: 0 var(--space-md);
        margin-top: var(--space-xl);
    }
    
    .progress-steps {
        gap: var(--space-sm);
    }
    
    .progress-step {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    /* Form security notice */
    .form-security {
        margin-top: var(--space-lg);
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Hide duplicate mobile CTAs */
    .inline-cta {
        display: none;
    }
    
    /* Final CTA section mobile optimization */
    .final-cta {
        padding: var(--space-2xl) 0;
    }
    
    .final-cta-content {
        padding: 0;
    }
    
    .final-content {
        padding: 0;
    }
    
    .final-content.full-width-form {
        padding: 0;
    }
    
    /* Form steps indicator mobile */
    .form-steps-indicator {
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    
    .form-steps-indicator::before {
        display: none; /* Hide connecting line on mobile */
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .step-circle {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.625rem;
    }
    
    /* Reduce footer message spacing on mobile */
    .footer-message {
        margin-top: var(--space-md);
        padding: var(--space-md) var(--space-lg);
    }
    
    .footer-message p {
        font-size: var(--text-base);
        margin-bottom: var(--space-sm);
    }
}

/* Extra small devices (phones < 375px) */
@media (max-width: 374px) {
    .hero-section {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 8vw, 2.25rem) !important;
    }
    
    .hero-subheadline {
        font-size: 14px !important;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr !important;
    }
    
    .metric-number {
        font-size: 20px !important;
    }
    
    .btn {
        font-size: 14px !important;
        min-height: 48px !important;
    }
    
    .trust-bar {
        font-size: 11px !important;
        padding: var(--space-sm) !important;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        gap: var(--space-3xl);
    }
    
    .revenue-calculator {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Input Styling */
input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--gray-200);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--giga-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--giga-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
}

/* Quote Section */
.quote-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: var(--giga-white);
    border-radius: 16px;
    border-left: 4px solid var(--giga-orange);
}

.quote-section blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.3;
}

.quote-mark {
    color: var(--giga-orange);
    font-size: 40px;
}

.quote-section cite {
    font-size: 16px;
    color: var(--gray-600);
    font-style: normal;
    font-weight: 600;
}

/* Additional Critical CSS Improvements */

/* Trust Signals & Social Proof */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 100%);
    border-radius: 100px;
    border: 1px solid var(--border-default);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Revenue Calculator - Make it POP */
.revenue-calculator {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        var(--shadow-lg),
        0 0 60px rgba(255, 107, 0, 0.1);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.revenue-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.revenue-calculator h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--giga-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Form Improvements for Better Conversion */
input[type="email"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-elevated);
    border: 2px solid var(--border-default);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--giga-orange);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 0, 0.1),
        var(--shadow-sm);
    background: var(--bg-secondary);
}

/* Value Stack Improvements */
/* Value Stack Section - Professional Design */
.value-stack {
    margin: var(--space-4xl) 0;
}

.value-stack h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.value-items {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.value-item {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 60px rgba(255, 107, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.value-item:hover::before {
    left: 100%;
}

.value-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--giga-orange) 0%, #E55A00 100%);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.value-icon {
    font-size: 36px;
    line-height: 1;
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.value-header h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.value-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--giga-orange);
    background: rgba(255, 107, 0, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    white-space: nowrap;
}

.value-content > p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.value-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.value-features li {
    font-size: var(--text-sm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Responsive for Value Stack */
@media (max-width: 767px) {
    .value-item {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .value-icon-wrapper {
        width: 60px;
        height: 60px;
        align-self: flex-start;
    }
    
    .value-icon {
        font-size: 28px;
    }
    
    .value-header {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
    }
    
    .value-price {
        align-self: flex-start;
    }
    
    .value-item:hover {
        transform: translateY(-2px);
    }
}

/* Testimonial Improvements */
.testimonial-tab {
    padding: 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
    align-items: center;
}

.testimonial-tab.active {
    border-color: var(--giga-orange);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: var(--shadow-glow);
}

.testimonial-tab img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.tab-result {
    font-size: 14px;
    font-weight: 700;
    color: var(--success-green);
}

/* Value Stack Redesign - Modern Card Layout */
.value-stack-redesigned {
    margin: var(--space-4xl) 0;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
    border-radius: 32px;
}

.value-stack-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.value-stack-header h3 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stack-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Top row: 3 cards, each spanning 2 columns */
.value-card:nth-child(1) {
    grid-column: 1 / 3;
}

.value-card:nth-child(2) {
    grid-column: 3 / 5;
}

.value-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Bottom row: 2 cards, each spanning 3 columns */
.value-card:nth-child(4) {
    grid-column: 1 / 4;
}

.value-card:nth-child(5) {
    grid-column: 4 / 7;
}

.value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.value-card.highlight {
    border-color: rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 107, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.value-card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 0, 0.2));
    transition: transform 0.3s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h5 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.card-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

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

.tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--text-accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-1px);
}

.value-summary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: var(--space-2xl);
    align-items: center;
}

.summary-content h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.summary-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.summary-cta {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.cta-highlight {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.cta-text {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .value-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .value-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: auto;
    }
}
    
    .value-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .value-card {
        padding: var(--space-xl);
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .value-stack-header h3 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .value-stack-redesigned {
        margin: var(--space-2xl) 0;
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .tag {
        font-size: var(--text-xs);
    }
}

/* Scarcity & Urgency Elements - Updated for FTC Compliance */

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* CTA Optimization */
.btn-primary.btn-large {
    padding: 24px 48px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    position: relative;
}

.btn-primary.btn-large::after {
    content: '→';
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 20px;
}

.btn-primary.btn-large:hover::after {
    transform: translateY(-50%) translateX(4px);
}

/* Enhanced Mobile Touch Experience */
@media (max-width: 767px) {
    /* Improved touch targets */
    .btn-primary.btn-large {
        padding: var(--space-xl) var(--space-2xl);
        font-size: var(--text-base);
        width: 100%;
        min-height: 60px;
        font-weight: 700;
    }
    
    /* Better form elements */
    input[type="email"],
    input[type="text"],
    select,
    textarea {
        min-height: 56px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: var(--space-lg);
    }
    
    /* Optimized spacing */
    .section {
        padding: clamp(2.5rem, 6vh, 4rem) 0;
    }
    
    /* Better readability */
    .feature-card p,
    .section-subtitle {
        font-size: var(--text-lg);
        line-height: 1.8;
    }
    
    /* Improved logo carousel */
    .logo-item img {
        height: 64px;
        max-width: 200px;
        object-fit: contain;
    }
}

/* Loading States for Forms */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =============================================
   MISSING SECTIONS STYLES
   ============================================= */

/* Total Value Section */
.total-value {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    margin: var(--space-3xl) 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.total-value::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--giga-orange), transparent);
    border-radius: inherit;
    opacity: 0.3;
    z-index: -1;
}

.total-label {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary), var(--giga-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.total-investment {
    font-size: var(--text-xl);
    color: var(--giga-orange);
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    margin: var(--space-3xl) 0;
}

.timeline-section h3 {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.timeline-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
}

.timeline-item:hover {
    background: var(--bg-elevated);
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-step {
    position: absolute;
    top: -16px;
    left: var(--space-xl);
    background: var(--giga-orange);
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.timeline-content {
    margin-top: var(--space-lg);
}

.timeline-content h4 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding-left: var(--space-xl);
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Timeline Section - Redesigned */
.timeline-section-redesigned {
    margin: var(--space-4xl) 0;
    padding: var(--space-3xl) 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.timeline-header h3 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

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

.timeline-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: var(--space-2xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 107, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.timeline-card:hover::before {
    left: 100%;
}

.timeline-phase {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.phase-number {
    background: linear-gradient(135deg, var(--giga-orange) 0%, var(--giga-orange-dark) 100%);
    color: white;
    font-size: var(--text-xl);
    font-weight: 800;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    flex-shrink: 0;
}

.phase-days {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 107, 0, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.timeline-card-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.timeline-card-content h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.phase-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

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

.deliverable {
    background: rgba(255, 107, 0, 0.08);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding-left: calc(var(--space-md) + var(--space-lg));
}

.deliverable::before {
    content: '✓';
    position: absolute;
    left: var(--space-sm);
    color: var(--success);
    font-weight: 700;
    font-size: var(--text-sm);
}

.deliverable:hover {
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.25);
    transform: translateX(4px);
}

/* Timeline Mobile Responsiveness */
@media (max-width: 767px) {
    .timeline-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        max-width: 500px;
    }
    
    .timeline-card {
        padding: var(--space-xl);
    }
    
    .phase-number {
        width: 48px;
        height: 48px;
        font-size: var(--text-lg);
    }
    
    .timeline-header h3 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .timeline-section-redesigned {
        margin: var(--space-2xl) 0;
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .phase-deliverables {
        gap: var(--space-xs);
    }
}

/* Results & Testimonials Section - Fixed Spacing */
#results-testimonials {
    background: var(--bg-primary);
    padding: var(--space-4xl) 0;
}

#results-testimonials .section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

#results-testimonials .section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.main-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-5xl);
}

.main-stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-2xl);
    transition: all 0.3s ease;
}

.main-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.main-stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--giga-orange);
    margin-bottom: var(--space-sm);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.main-stat-label {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.main-stat-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-section {
    margin-top: 0;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
}

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

.testimonial-tab {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.testimonial-tab:hover {
    border-color: var(--border-default);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.testimonial-tab.active {
    border-color: var(--giga-orange);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}

.testimonial-tab img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.tab-info {
    flex: 1;
}

.tab-company {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.tab-industry {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.tab-result {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--success);
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-3xl);
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial blockquote {
    font-size: var(--text-2xl);
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--space-2xl);
    font-style: italic;
    position: relative;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    content: '"';
    font-size: var(--text-3xl);
    color: var(--giga-orange);
    font-weight: 700;
}

cite {
    display: block;
    margin-bottom: var(--space-xl);
    font-style: normal;
}

.cite-name {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.cite-title {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.case-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.case-detail {
    background: rgba(255, 107, 0, 0.05);
    border-radius: 8px;
    padding: var(--space-lg);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.detail-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--giga-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.detail-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.5;
}

.case-results {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl);
    background: rgba(0, 212, 106, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 106, 0.2);
    margin-top: var(--space-xl);
}

.case-results span {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--success);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .testimonial-nav {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 767px) {
    .main-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .case-details {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .testimonial blockquote {
        font-size: var(--text-xl);
    }
    
    .testimonial-content {
        padding: var(--space-2xl);
    }
    
    .case-results {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* Delivery Guarantee */
.delivery-guarantee {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
}

.delivery-guarantee::before {
    content: '🛡️';
    font-size: var(--text-3xl);
    display: block;
    margin-bottom: var(--space-md);
}

/* Services Grid */
/* Services Grid - Professional Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin: var(--space-4xl) 0;
}

.service-card {
    display: flex;
    gap: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: var(--space-2xl);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 80px rgba(255, 107, 0, 0.15);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--giga-orange) 0%, #E55A00 100%);
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 16px 32px rgba(255, 107, 0, 0.4);
}

.service-icon {
    font-size: 48px;
    line-height: 1;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.service-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-metric {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.metric-number {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--giga-orange);
    line-height: 1;
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive for Services Grid */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .service-card {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        align-self: flex-start;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card:hover {
        transform: translateY(-3px);
    }
}

/* Process Section Styles */
.process-section {
    margin: var(--space-6xl) 0 var(--space-4xl);
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-section h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-4xl);
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 60px;
    right: -40px;
    color: var(--giga-orange);
    font-size: 24px;
    font-weight: 700;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--giga-orange) 0%, #E55A00 100%);
    border-radius: 50%;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: white;
    box-shadow: 0 12px 24px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 16px 32px rgba(255, 107, 0, 0.4);
}

.process-step h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.process-step p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 767px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .process-step::after {
        content: '↓';
        position: static;
        margin: var(--space-md) 0;
    }
    
    .process-step:last-child::after {
        display: none;
    }
    
    .process-number {
        width: 100px;
        height: 100px;
        font-size: var(--text-2xl);
    }
}

/* Scale Proof Section */
.scale-proof {
    text-align: center;
    margin: var(--space-5xl) 0 var(--space-4xl);
}

.scale-label {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.scale-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.scale-badge {
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--giga-orange) 0%, #E55A00 100%);
    border-radius: 24px;
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.scale-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* Key Message Section */
.key-message {
    text-align: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin-top: var(--space-4xl);
}

.key-message h4 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-lg);
}

.key-message p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .scale-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .scale-badge {
        width: fit-content;
    }
    
    .key-message {
        padding: var(--space-2xl);
    }
}

.service-stat {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--giga-orange);
}

/* How It Works */
.how-it-works {
    margin: var(--space-3xl) 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    position: relative;
}

.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
    z-index: -1;
}

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.step-number {
    background: var(--giga-orange);
    color: var(--text-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.step-description {
    color: var(--text-secondary);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    margin: var(--space-3xl) 0;
}

.testimonial-nav {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    overflow-x: auto;
    padding-bottom: var(--space-md);
}

.testimonial-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 280px;
    flex-shrink: 0;
}

.testimonial-tab:hover {
    background: var(--bg-elevated);
    border-color: var(--border-default);
}

.testimonial-tab.active {
    background: var(--bg-elevated);
    border-color: var(--giga-orange);
    box-shadow: var(--shadow-glow);
}

.testimonial-tab h4 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.testimonial-tab .brand {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.testimonial-tab .result {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--giga-orange);
}

.testimonial-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    min-height: 400px;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.testimonial-quote {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    margin-right: var(--space-md);
    border: 2px solid var(--border-default);
}

.testimonial-author-info h5 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.testimonial-author-info p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.testimonial-details h6 {
    color: var(--text-muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.testimonial-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-metric {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: inline-block;
    margin-right: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-metric strong {
    color: var(--giga-orange);
    font-size: var(--text-xl);
}

/* =============================================
   REVENUE IMPACT COMPARISON
   ============================================= */
.revenue-impact-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.impact-comparison {
    margin-top: 3rem;
}

.comparison-table {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.header-cell {
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    padding: 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-row.current {
    opacity: 0.7;
}

.table-row.improved {
    background: rgba(255, 133, 51, 0.05);
}

.table-row.difference {
    background: rgba(255, 133, 51, 0.1);
    border-bottom: none;
}

.cell {
    color: var(--text-primary);
}

.cell.scenario .label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cell.scenario .sublabel {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cell.rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--giga-orange);
}

.cell.revenue {
    font-size: 1.25rem;
    font-weight: 600;
}

.cell.revenue.highlight {
    color: var(--text-success);
}

.cell.revenue.accent {
    color: var(--giga-orange);
    font-size: 1.5rem;
}

.impact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 133, 51, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--giga-orange);
}

.impact-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Revenue Impact Table */
@media (max-width: 767px) {
    .revenue-impact-section {
        padding: 3rem 0;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1.2fr;
        padding: 1rem;
    }
    
    .header-cell:last-child,
    .cell:last-child {
        display: none;
    }
    
    .cell.rate {
        font-size: 1.125rem;
    }
    
    .cell.revenue {
        font-size: 1rem;
    }
    
    .cell.revenue.accent {
        font-size: 1.125rem;
    }
    
    .impact-note {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* =============================================
   QUALIFICATION & AVAILABILITY SECTION
   ============================================= */

.qualification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
}

@media (max-width: 968px) {
    .qualification-content {
        grid-template-columns: 1fr;
    }
}

.availability-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.availability-tracker h3 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.availability-subtitle {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xl);
}

.availability-visual {
    margin: var(--space-2xl) 0;
}

.capacity-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    height: 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.capacity-fill {
    background: linear-gradient(90deg, var(--giga-orange-dark), var(--giga-orange));
    height: 100%;
    border-radius: inherit;
    position: relative;
    transition: width 0.8s ease;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.capacity-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.capacity-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.capacity-details {
    display: flex;
    justify-content: space-around;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.capacity-icon {
    font-size: var(--text-xl);
    color: var(--giga-orange);
}

.availability-summary {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.summary-stat {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.summary-stat:hover {
    border-color: var(--giga-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.summary-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--giga-orange);
    margin-bottom: var(--space-xs);
    display: block;
}

.summary-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.urgency-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: urgency-pulse 3s infinite;
}

@keyframes urgency-pulse {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-box h4 {
    font-size: var(--text-lg);
    color: var(--giga-orange);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.urgency-box p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    position: relative;
    z-index: 1;
}

/* Qualification Checker */
.qualification-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.qualification-checker {
    margin-bottom: var(--space-2xl);
}

.qualification-progress {
    margin-bottom: var(--space-xl);
}

.qualification-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.qualification-progress-header h4 {
    font-size: var(--text-lg);
    color: var(--text-primary);
}

.qualification-progress-header span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.qualification-progress-bar {
    background: var(--bg-elevated);
    height: 8px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.qualification-progress-fill {
    background: var(--giga-orange);
    height: 100%;
    width: 33%;
    transition: width var(--transition-base);
}

.qualification-question {
    margin-bottom: var(--space-xl);
}

.qualification-question h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.qualification-question p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.qualification-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.qualification-option {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    color: var(--text-primary);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.qualification-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.qualification-option:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qualification-option:hover::before {
    left: 100%;
}

.qualification-requirements {
    margin-top: var(--space-2xl);
}

.qualification-requirements h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

/* OLD requirement-item styles - commented out to avoid conflicts
.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.requirement-icon {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: var(--space-lg);
}

.requirement-icon span {
    font-size: var(--text-xl);
}
*/

.requirement-content h4 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.requirement-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.requirement-badge {
    display: inline-block;
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-left: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Revenue Calculator */
.revenue-calculator {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.revenue-calculator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    border-radius: inherit;
    opacity: 0.5;
    z-index: -1;
}

.revenue-calculator h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.calculator-field {
    margin-bottom: var(--space-lg);
}

.calculator-field label {
    display: block;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.calculator-field input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    backdrop-filter: blur(5px);
}

.calculator-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.calculator-field input:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.calculator-field input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--giga-orange);
    box-shadow: 
        0 0 0 1px var(--giga-orange) inset,
        0 0 20px rgba(255, 107, 53, 0.2);
}

.calculator-result {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 107, 53, 0.1) inset,
        0 0 20px rgba(255, 107, 53, 0.1);
}

.calculator-result::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.calculator-result h4 {
    color: var(--text-muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.calculator-result .revenue-increase {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--giga-orange);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.calculator-result p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    position: relative;
    z-index: 1;
}

/* =============================================
   STATS GRID SECTION
   ============================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.stat-item {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: var(--bg-elevated);
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--giga-orange);
    margin-bottom: var(--space-sm);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.stat-sublabel {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* =============================================
   MULTI-STEP FORM SECTION
   ============================================= */

.multi-step-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.multi-step-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--giga-orange), transparent, var(--giga-orange));
    border-radius: inherit;
    opacity: 0.1;
    z-index: -1;
    animation: gradient-shift 8s ease infinite;
}

/* Submit button states - hide loading text by default */
.submit-loading {
    display: none !important;
}

.btn.form-submit .submit-text {
    display: inline;
}

.btn.form-submit.loading .submit-text {
    display: none !important;
}

.btn.form-submit.loading .submit-loading {
    display: inline !important;
}

@keyframes gradient-shift {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.form-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.form-steps-indicator::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(255, 107, 53, 0.3) 50%, 
        rgba(255, 107, 53, 0.1) 100%);
    border-radius: 2px;
    z-index: 0;
}

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

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(17, 17, 17, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.step-indicator.active .step-circle::before,
.step-indicator.completed .step-circle::before {
    opacity: 1;
}

.step-indicator.active .step-circle,
.step-indicator.completed .step-circle {
    background: linear-gradient(135deg, var(--giga-orange), var(--giga-orange-dark));
    border-color: var(--giga-orange);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.step-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.step-indicator.active .step-label {
    color: var(--text-primary);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn var(--transition-base);
}

.form-step h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary), var(--giga-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-step p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: var(--text-lg);
    line-height: 1.6;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--giga-orange);
    opacity: 0.6;
}

.form-group label span {
    color: #ffffff; /* white for required asterisk */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--giga-orange);
    box-shadow: 
        0 0 0 1px var(--giga-orange) inset,
        0 0 20px rgba(255, 107, 53, 0.2);
}

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

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

.checkbox-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.checkbox-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.checkbox-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.checkbox-item:hover::before {
    left: 100%;
}

.checkbox-item.selected {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--giga-orange);
    box-shadow: 
        0 0 0 1px var(--giga-orange) inset,
        0 0 20px rgba(255, 107, 53, 0.2);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-sm);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-2xl);
}

.form-navigation button {
    padding: var(--space-md) var(--space-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Success State */
.success-step {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: var(--text-3xl);
}

.success-step h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.success-step .next-steps {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    text-align: left;
}

.success-step .next-steps h4 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.success-step .next-steps ol {
    list-style: none;
    padding: 0;
    counter-reset: steps;
}

.success-step .next-steps li {
    counter-increment: steps;
    padding-left: var(--space-xl);
    position: relative;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.success-step .next-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--giga-orange);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */

.final-cta {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

.final-cta h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

.final-cta .value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.value-prop {
    text-align: center;
}

.value-prop-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.value-prop h3 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-prop p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.testimonial-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: var(--space-xl);
    font-size: var(--text-6xl);
    color: var(--giga-orange);
    opacity: 0.3;
}

.testimonial-highlight .author {
    font-style: normal;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.security-badge span {
    font-size: var(--text-lg);
}

/* =============================================
   PRESS/FEATURED SECTION
   ============================================= */

.press-section {
    text-align: center;
    margin: var(--space-3xl) 0;
}

.press-section h4 {
    font-size: var(--text-lg);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xl);
}

.press-logos {
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
    padding: var(--space-lg) 0;
}

.press-logos img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.press-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* =============================================
   CLIENT LOGOS SECTION
   ============================================= */

.client-logos-section {
    text-align: center;
    margin: var(--space-3xl) 0;
}

.client-logos-section h3 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
}

.client-logos-carousel {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logos-carousel::before,
.client-logos-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.client-logos-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #000000 0%, transparent 100%);
}

.client-logos-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #000000 100%);
}

.client-logos-track {
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-xl) 0;
    animation: slide-client-logos-reverse 40s linear infinite;
    width: max-content;
}

.client-logos-track:hover {
    animation-play-state: paused;
}

@keyframes slide-client-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slide-client-logos-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
}

.client-logo img {
    height: 56px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* =============================================
   REQUIREMENTS SECTION
   ============================================= */

.requirements-section {
    margin: var(--space-3xl) 0;
}

.requirements-section h3 {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.requirement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--giga-orange);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.requirement-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.requirement-priority {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.requirement-priority.required {
    background: rgba(255, 107, 53, 0.2);
    color: var(--giga-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.requirement-priority.essential {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.requirement-priority.important {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.requirement-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    display: block;
}

.requirement-card h4 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.requirement-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.requirement-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   WHY WE LIMIT SPOTS SECTION
   ============================================= */

.why-limit-section {
    margin: var(--space-3xl) 0;
    text-align: center;
}

.why-limit-section h3 {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
}

.why-limit-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.reason-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: left;
    transition: all var(--transition-base);
    position: relative;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--giga-orange), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.reason-card:hover {
    background: var(--bg-elevated);
    border-color: var(--border-default);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.reason-card h4 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.reason-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* =============================================
   QUALIFICATION CTA
   ============================================= */

.qualification-cta {
    text-align: center;
    max-width: 700px;
    margin: var(--space-3xl) auto 0;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.qualification-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.qualification-cta h3 {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.qualification-cta p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.qualification-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-note {
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-style: italic;
}

/* === FINAL CTA SECTION === */
.final-cta {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.final-cta .section-header h2 {
    color: #ffffff;
    text-align: center;
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: var(--space-lg);
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: var(--text-lg);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

/* Final Value Points */
.final-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.final-point {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.final-point:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--giga-orange);
    transform: translateY(-4px);
}

.final-point .point-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.final-point h3 {
    color: #ffffff;
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.final-point p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
}

/* Final Content Layout */
.final-content {
    display: block;
    width: 100%;
    margin-bottom: var(--space-3xl);
}

.final-content.full-width-form {
    max-width: 900px;
    margin: 0 auto var(--space-3xl) auto;
}

.form-section.full-width {
    width: 100%;
    max-width: none;
}

/* Form Section */
.form-section {
    padding: 0;
}

.multi-step-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.form-step h3 {
    color: #ffffff;
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.form-step p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--giga-orange);
    background: rgba(255, 255, 255, 0.15);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.checkbox-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.checkbox-option:hover {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 107, 0, 0.08);
    transform: translateY(-1px);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-option input:checked ~ .checkmark {
    background: var(--giga-orange);
    border-color: var(--giga-orange);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

.checkbox-option input:checked + .checkmark + * {
    color: #ffffff;
    font-weight: 600;
}

.checkbox-option .checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Checkmark animation */
.checkbox-option input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    animation: checkmark-pop 0.3s ease;
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Selected state styling */
.checkbox-option:has(input:checked) {
    border-color: var(--giga-orange);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.2) inset;
}

/* Challenges Section Specific */
.challenges-section .checkbox-grid {
    margin-top: 32px;
}

.challenges-section .form-step h3 {
    margin-bottom: 8px;
}

.challenges-section .form-step p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Add visual interest to checkbox options */
.checkbox-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.checkbox-option:hover::before {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .checkbox-option {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .checkbox-option .checkmark {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-2xl);
}

/* Form Progress */
.form-progress {
    margin-bottom: var(--space-3xl);
}

.progress-steps {
    display: none;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.progress-step.active {
    border-color: var(--giga-orange);
    background: var(--giga-orange);
    color: #ffffff;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--giga-orange);
    transition: width var(--transition-base);
}

/* Form Security */
.form-security {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

/* Success Step */
.success-step {
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: var(--space-lg);
}

.success-step h3 {
    color: #00D46A;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

/* Trust Indicators Bottom */
.trust-indicators-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.trust-indicators-bottom .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
}

.trust-indicators-bottom .trust-item span {
    font-size: var(--text-lg);
}

/* Calendly Inline Integration - Full Width */
.calendly-container {
    margin: var(--space-2xl) 0 var(--space-xl) 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 750px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    max-width: 100%;
}

.calendly-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
    color: var(--text-secondary);
    padding: var(--space-xl);
}

.calendly-loading p {
    margin-top: var(--space-md);
    font-size: var(--text-lg);
    font-weight: 500;
    opacity: 0.8;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--giga-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-md);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide loading when Calendly is loaded */
.calendly-container.loaded .calendly-loading {
    display: none;
}

/* Calendly widget styling */
.calendly-inline-widget {
    border-radius: var(--radius-xl) !important;
    overflow: hidden;
    width: 100% !important;
    height: 700px !important;
    border: none !important;
}

/* Success step improvements */
.success-step {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl) 0;
}

.success-step h3 {
    color: var(--text-primary) !important;
    font-size: var(--text-3xl) !important;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary), var(--giga-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-step > p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.success-contact {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-align: center;
}

/* Responsive Full-Width Form */
@media (max-width: 1024px) {
    .final-content.full-width-form {
        max-width: 100%;
        padding: 0 var(--space-lg);
    }
    
    .calendly-container {
        margin: var(--space-xl) 0 var(--space-lg) 0;
        border-radius: var(--radius-lg);
        min-height: 700px;
    }
    
    .calendly-loading {
        height: 700px;
        padding: var(--space-lg);
    }
    
    .calendly-inline-widget {
        height: 700px !important;
        border-radius: var(--radius-lg) !important;
    }
    
    .trust-indicators-bottom {
        margin: var(--space-xl) 0;
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .final-content.full-width-form {
        padding: 0 var(--space-md);
    }
    
    .calendly-container {
        margin: var(--space-lg) 0 var(--space-md) 0;
        border-radius: var(--radius-md);
        min-height: 650px;
    }
    
    .calendly-loading {
        height: 650px;
        padding: var(--space-md);
    }
    
    .calendly-loading p {
        font-size: var(--text-md);
    }
    
    .calendly-inline-widget {
        height: 650px !important;
        border-radius: var(--radius-md) !important;
    }
    
    .success-step h3 {
        font-size: var(--text-2xl) !important;
    }
    
    .success-step > p {
        font-size: var(--text-md);
        padding: 0 var(--space-sm);
    }
    
    .trust-indicators-bottom {
        flex-direction: column;
        gap: var(--space-md);
        margin: var(--space-lg) 0;
        padding: var(--space-md);
    }
    
    .trust-indicators-bottom .trust-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .final-content.full-width-form {
        padding: 0 var(--space-sm);
    }
    
    .calendly-container {
        margin: var(--space-md) 0 var(--space-sm) 0;
        border-radius: var(--radius-sm);
        min-height: 600px;
    }
    
    .calendly-loading {
        height: 600px;
        padding: var(--space-sm);
    }
    
    .calendly-inline-widget {
        height: 600px !important;
        border-radius: var(--radius-sm) !important;
    }
    
    .success-contact {
        margin: var(--space-lg) 0 0 0;
        padding: var(--space-md);
    }
    
    .trust-indicators-bottom {
        margin: var(--space-md) 0;
        padding: var(--space-sm);
    }
    
    .trust-indicators-bottom .trust-item {
        font-size: var(--text-xs);
    }
}

.success-next-steps {
    background: rgba(0, 212, 106, 0.1);
    border: 1px solid rgba(0, 212, 106, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: left;
}

.success-next-steps h4 {
    color: #00D46A;
    margin-bottom: var(--space-sm);
}

.success-next-steps ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: var(--space-lg);
}

.success-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    font-style: italic;
}

/* Sidebar Section */
.sidebar-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Urgency Sidebar */
.urgency-sidebar {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.urgency-sidebar::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.urgency-sidebar h3 {
    color: #FFC107;
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.urgency-sidebar ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.urgency-sidebar li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.urgency-sidebar li span {
    color: #FFC107;
    font-weight: bold;
}

/* Social Proof Sidebar */
.social-proof-sidebar {
    background: rgba(0, 212, 106, 0.1);
    border: 2px solid #00D46A;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.social-proof-sidebar h3 {
    color: #00D46A;
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.social-proof-sidebar blockquote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0 0 var(--space-md) 0;
    font-size: var(--text-base);
    line-height: 1.6;
}

.social-proof-sidebar cite {
    color: #00D46A;
    font-weight: 600;
    font-style: normal;
    font-size: var(--text-sm);
}

/* Trust Indicators */
.trust-indicators {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-item span {
    color: #00D46A;
}

/* Footer Message */
.footer-message {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
}

.footer-message p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
}

.footer-message cite {
    color: var(--giga-orange);
    font-weight: 600;
    font-style: normal;
    font-size: var(--text-base);
}

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

/* === CASE STUDIES SECTION === */
.case-studies-section {
    background: #000000;
    color: #ffffff;
    padding: var(--space-lg) 0 var(--space-3xl) 0;
}

.case-studies-section .section-header h2 {
    color: #ffffff;
}

.case-studies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    overflow-x: auto;
    padding: var(--space-sm) 0;
}

/* Individual Case Study Cards */
.case-study-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: var(--giga-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
    background: #111111;
}

/* Card Header with Logo */
.case-card-header {
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.case-logo {
    max-height: 100px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all var(--transition-base);
}

.case-study-card:hover .case-logo {
    opacity: 1;
    transform: scale(1.1);
}

/* Card Content */
.case-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Case Metrics */
.case-metric {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--giga-orange);
    line-height: 1;
    margin-bottom: var(--space-sm);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

.case-metric-label {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

/* Case Description */
.case-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    flex: 1;
}

/* Case Study Link */
.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--giga-orange);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
}

.case-study-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(4px);
}

.case-study-link span {
    transition: transform var(--transition-base);
}

.case-study-link:hover span {
    transform: translateX(4px);
}

/* Horizontal Scroll for Mobile */
@media (max-width: 1200px) {
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .case-studies-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-lg);
        padding: var(--space-md) 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .case-study-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: var(--space-lg);
    }
    
    .case-study-card:last-child {
        margin-right: var(--space-xl);
    }
}

/* Section CTA Styling for Dark Background */
.case-studies-section .section-cta {
    text-align: center;
}

.case-studies-section .btn-primary {
    background: var(--giga-orange);
    border-color: var(--giga-orange);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.case-studies-section .btn-primary:hover {
    background: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6);
}

/* Single Video Testimonial Section */
.single-video-testimonial {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: var(--space-4xl) 0;
    position: relative;
}

.single-video-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.single-video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-video-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.featured-video-testimonial::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    border-radius: 50%;
}

.featured-video-testimonial iframe {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
}

.testimonial-content {
    padding: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-header {
    margin-bottom: var(--space-2xl);
}

.testimonial-header h3 {
    color: #ffffff;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.testimonial-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-lg);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.social-proof-indicators {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    width: 100%;
}

.proof-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    min-width: 160px;
    transition: all 0.3s ease;
}

.proof-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.proof-number {
    display: block;
    color: var(--giga-orange);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.proof-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Testimonials Section */
.video-testimonials-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: var(--space-4xl) 0;
    position: relative;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.video-testimonials-section .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.video-testimonials-section h2 {
    color: #ffffff;
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.video-testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.video-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
}

.video-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.video-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.3);
}

.video-testimonial:hover::before {
    opacity: 1;
}

.video-testimonials-grid .video-testimonial iframe {
    width: 100%;
    height: 200px !important;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    aspect-ratio: unset !important;
}

/* Testimonial Text Styles */
.testimonial-info {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-info .company {
    font-size: 16px;
    color: var(--giga-orange);
    font-weight: 500;
    margin-bottom: 12px;
}

.testimonial-info .quote {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .final-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .final-points {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .form-navigation .btn {
        width: 100%;
    }
    
    .case-studies-section {
        padding: var(--space-2xl) 0;
    }
    
    .case-study-card {
        min-height: 280px;
        padding: var(--space-xl);
    }
    
    .case-metric {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    /* Video Testimonials Mobile */
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .video-testimonial {
        padding: var(--space-md);
    }
    
    .video-testimonials-grid .video-testimonial iframe {
        height: 180px !important;
    }
    
    .video-testimonials-section h2 {
        font-size: var(--text-2xl);
    }
    
    /* Single Video Testimonial Mobile */
    .single-video-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .featured-video-testimonial iframe {
        height: 220px;
    }
    
    .social-proof-indicators {
        justify-content: center;
        gap: var(--space-xl);
    }
}

/* === COMPLIANCE SECTION === */
.compliance-section {
    background: #000000;
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-disclaimer,
.earnings-disclaimer {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

.compliance-disclaimer {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.earnings-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .compliance-section {
        padding: var(--space-xl) 0;
    }
    
    .compliance-disclaimer,
    .earnings-disclaimer {
        font-size: 12px;
        text-align: left;
        padding: 0 var(--space-md);
    }
}

/* === REVENUE QUALIFICATION COMPONENTS === */

/* Revenue Qualification Section in Hero */
.revenue-qualification {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    background: rgba(255, 133, 51, 0.05);
    border: 1px solid rgba(255, 133, 51, 0.2);
    border-radius: var(--radius-lg);
}

.qualification-visual {
    flex: 1;
    text-align: center;
}

.revenue-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.revenue-screenshot.large {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

.visual-caption {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.qualification-text {
    flex: 1;
}

.qualification-note {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: var(--space-sm);
}

.qualification-subtext {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

/* Revenue Qualifier Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-default);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.qualifier-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.qualifier-header h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.qualifier-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.revenue-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.revenue-option:hover {
    border-color: var(--border-default);
    background: var(--bg-glass);
}

.revenue-option.qualified:hover {
    border-color: var(--success);
    background: rgba(52, 199, 89, 0.05);
}

.revenue-option.unqualified:hover {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.option-text {
    font-weight: 600;
    color: var(--text-primary);
}

.option-status {
    font-size: var(--text-sm);
    font-weight: 500;
}

.qualified .option-status {
    color: var(--success);
}

.unqualified .option-status {
    color: var(--warning);
}

/* Qualification Results */
.qualification-result {
    margin-top: var(--space-xl);
    text-align: center;
}

.qualification-success,
.qualification-unqualified {
    padding: var(--space-xl);
}

.success-icon,
.warning-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.qualification-success h3 {
    color: var(--success);
    margin-bottom: var(--space-md);
}

.qualification-unqualified h3 {
    color: var(--warning);
    margin-bottom: var(--space-md);
}

.qualification-benefits,
.qualification-requirements {
    text-align: left;
    margin: var(--space-lg) 0;
}

.benefit-item,
.req-item {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.benefit-item {
    color: var(--success);
}

.retry-text {
    margin-top: var(--space-lg);
}

.retry-btn {
    background: none;
    border: none;
    color: var(--text-accent);
    cursor: pointer;
    text-decoration: underline;
    font-size: var(--text-sm);
}

/* Dashboard Results Grid */
.dashboard-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

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

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-default);
}

.dashboard-image {
    position: relative;
    overflow: hidden;
}

.dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.dashboard-description {
    padding: var(--space-lg);
}

.dashboard-description h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.dashboard-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.dashboard-credibility {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 133, 51, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 133, 51, 0.1);
    margin-top: var(--space-xl);
}

.dashboard-credibility p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .revenue-qualification {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .modal-content {
        margin: var(--space-md);
        padding: var(--space-xl);
    }
    
    .dashboard-results-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .qualification-visual {
        order: -1;
    }
    
    .revenue-screenshot {
        max-width: 280px;
    }
}

/* === HERO FORM STYLES === */

.hero-form-container {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 2rem;
}

.hero-form {
    max-width: none;
}

.hero-form .form-step h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.hero-form .form-step p {
    font-size: var(--text-sm);
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.hero-form .form-group {
    margin-bottom: var(--space-lg);
}

.hero-form .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.hero-form .checkbox-option span:last-child {
    font-size: var(--text-sm);
}

.hero-form .form-security {
    font-size: var(--text-xs);
    text-align: center;
}

/* Mobile adjustments for hero form */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-form-container {
        position: static;
        order: 2;
    }
    
    .hero-left {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-form-container {
        padding: var(--space-lg);
    }
    
    .hero-form .checkbox-grid {
        grid-template-columns: 1fr;
    }
}


/* === EXIT INTENT MODAL === */

.exit-intent-modal {
    z-index: 2000;
}

.exit-intent-content {
    max-width: 600px;
    text-align: center;
    animation: exitBounceIn 0.6s ease-out;
}

.exit-intent-header h3 {
    font-size: var(--text-2xl);
    color: var(--text-accent);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.exit-intent-visual {
    margin-bottom: var(--space-xl);
    position: relative;
}

.exit-dashboard-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-default);
}

.exit-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.exit-metric {
    text-align: center;
}

.exit-metric .metric-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: var(--space-xs);
}

.exit-metric .metric-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.exit-intent-message {
    margin-bottom: var(--space-xl);
}

.exit-intent-message p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

.exit-intent-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.exit-intent-cta .btn {
    min-width: 250px;
}

@keyframes exitBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .exit-intent-content {
        max-width: 90%;
        margin: var(--space-md);
        padding: var(--space-lg);
    }
    
    .exit-intent-header h3 {
        font-size: var(--text-xl);
    }
    
    .exit-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .exit-intent-cta .btn {
        min-width: 200px;
    }
}

/* ============================================
   SCALING SYSTEM SECTION
   ============================================ */

#scaling-system {
    padding: var(--space-4xl) 0;
    background: #000000;
    position: relative;
}

/* Bottom transition to next section */
#scaling-system::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, 
        var(--bg-secondary) 0%, 
        transparent 100%);
    pointer-events: none;
}

.system-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

/* First row: 3 cards spanning 2 columns each */
.system-phases .phase-card:nth-child(1) {
    grid-column: 1 / 3;
}

.system-phases .phase-card:nth-child(2) {
    grid-column: 3 / 5;
}

.system-phases .phase-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Second row: 3 cards */
.system-phases .phase-card:nth-child(4) {
    grid-column: 1 / 3;
}

.system-phases .phase-card:nth-child(5) {
    grid-column: 3 / 5;
}

.system-phases .phase-card:nth-child(6) {
    grid-column: 5 / 7;
}

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

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--giga-orange), var(--giga-orange-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Connecting lines between phases */
.phase-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--giga-orange), transparent);
    transform: translateY(-50%);
    opacity: 0.6;
    z-index: 1;
}

/* Hide connector on last phase */
.phase-card:nth-child(5)::after {
    display: none;
}

.phase-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

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

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

.phase-card.highlight {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, rgba(255, 133, 51, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.02);
    box-shadow: 0 0 0 2px rgba(255, 133, 51, 0.1);
}

.phase-card.highlight::before {
    opacity: 1;
}

.phase-card.highlight::after {
    opacity: 1;
    background: var(--giga-orange);
}

.phase-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-accent);
    font-family: 'Inter', sans-serif;
    margin-bottom: var(--space-sm);
    display: block;
}

.phase-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.phase-timeline {
    font-size: var(--text-sm);
    color: var(--text-accent);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phase-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.phase-result {
    font-size: var(--text-sm);
    color: var(--text-accent);
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 133, 51, 0.1);
    border: 1px solid rgba(255, 133, 51, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.system-key-message {
    background: linear-gradient(135deg, rgba(255, 133, 51, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.system-key-message p {
    font-size: var(--text-lg);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.system-key-message strong {
    color: var(--text-accent);
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .system-phases {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    /* Reset all desktop grid positioning */
    .system-phases .phase-card:nth-child(1),
    .system-phases .phase-card:nth-child(2),
    .system-phases .phase-card:nth-child(3),
    .system-phases .phase-card:nth-child(4),
    .system-phases .phase-card:nth-child(5),
    .system-phases .phase-card:nth-child(6) {
        grid-column: unset;
    }
}

@media (max-width: 767px) {
    #scaling-system {
        padding: var(--space-3xl) 0;
    }
    
    .system-phases {
        /* Horizontal scroll with snap points */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-lg);
        padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
        margin: 0 calc(-1 * var(--space-lg));
    }
    
    .phase-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: var(--space-lg);
    }
    
    /* Visual indicator for scrollability */
    .system-phases::after {
        content: "→";
        position: sticky;
        right: 0;
        background: linear-gradient(90deg, transparent, var(--bg-secondary));
        padding: var(--space-md);
        display: flex;
        align-items: center;
        color: var(--text-accent);
        font-size: var(--text-xl);
        font-weight: 700;
        min-width: 40px;
    }
    
    .phase-number {
        font-size: var(--text-xl);
    }
    
    .phase-content h3 {
        font-size: var(--text-lg);
    }
    
    .system-key-message {
        padding: var(--space-xl);
    }
    
    .system-key-message p {
        font-size: var(--text-base);
    }
}

/* ============================================
   DASHBOARD ANNOTATIONS
   ============================================ */

.dashboard-annotation {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(255, 133, 51, 0.3);
}

.phase-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.metric-context {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   CTA HIERARCHY SYSTEM
   ============================================ */

/* Primary CTA: Assessment/booking (highest priority) */
.btn-primary {
    background: linear-gradient(135deg, var(--giga-orange) 0%, var(--giga-orange-hover) 100%);
    color: var(--text-primary);
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 18px 40px;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--giga-orange-hover) 0%, var(--giga-orange-dark) 100%);
}

/* Secondary CTA: Educational/exploratory */
.btn-secondary {
    background: transparent;
    color: var(--text-accent);
    border: 2px solid var(--giga-orange);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 133, 51, 0.1);
    border-color: var(--giga-orange-hover);
    transform: translateY(-1px);
}

/* Tertiary CTA: Supplementary actions */
.btn-tertiary {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

/* ============================================
   MOBILE SECTION NAVIGATOR
   ============================================ */

.mobile-section-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    padding: var(--space-xs);
    display: none;
    gap: var(--space-xs);
    border: 1px solid var(--border-default);
}

.mobile-section-nav .nav-item {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-section-nav .nav-item.active {
    background: var(--giga-orange);
    color: var(--text-primary);
}

.mobile-section-nav .nav-item:hover:not(.active) {
    background: rgba(255, 133, 51, 0.2);
    color: var(--text-accent);
}

@media (max-width: 767px) {
    .mobile-section-nav {
        display: flex;
    }
}

/* ============================================
   LOGO CAROUSEL SECTION STYLING
   ============================================ */

.logo-carousel-section {
    background: #000000;
    /* Add subtle texture to reduce starkness */
    background-image: 
        linear-gradient(180deg, 
            rgba(255,133,51,0.02) 0%, 
            transparent 50%, 
            rgba(255,133,51,0.02) 100%);
    padding: var(--space-2xl) 0 var(--space-md) 0;
    position: relative;
}

/* Top transition only (from hero) */
.logo-carousel-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, 
        var(--bg-primary) 0%, 
        transparent 100%);
    pointer-events: none;
}

.logo-carousel-section .logo-carousel-label {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: var(--text-2xl);
    font-weight: 600;
    letter-spacing: -0.02em;
    /* Add subtle gradient text */
    background: linear-gradient(90deg, 
        var(--text-secondary) 0%, 
        var(--text-primary) 50%, 
        var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support background-clip */
    color: var(--text-secondary);
}

/* ============================================
   DASHBOARD RESULTS TWO COLUMN LAYOUT
   ============================================ */

.dashboard-results-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.dashboard-results-two-column .dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-results-two-column .dashboard-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.dashboard-results-two-column .dashboard-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.dashboard-results-two-column .dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dashboard-results-two-column .dashboard-card:hover .dashboard-image img {
    transform: scale(1.02);
}

.dashboard-results-two-column .dashboard-description {
    padding: var(--space-xl);
}

.dashboard-results-two-column .dashboard-description h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.dashboard-results-two-column .dashboard-description p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for 2-column layout */
@media (max-width: 1023px) {
    .dashboard-results-two-column {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .dashboard-results-two-column .dashboard-image {
        height: 250px;
    }
}
/* Honeypot field - invisible to humans, visible to bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
