/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Vibrant Professional Blue */
    --primary-900: #0a1628;
    --primary-800: #0f1f3a;
    --primary-700: #1a2f4d;
    --primary-600: #2563eb;
    --primary-500: #3b82f6;
    --primary-400: #60a5fa;
    --primary-300: #93c5fd;
    --primary-200: #bfdbfe;
    --primary-100: #dbeafe;

    /* Accent Highlight */
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;

    /* Accent Colors - Subtle Accents */
    --gold-500: #b8935f;
    --gold-400: #c9a876;
    --gold-300: #d4b98a;
    --red-500: #b83a3a;
    --red-400: #c85656;
    --red-300: #d47474;

    /* Professional Colors */
    --casino-green: #2c6e49;
    --casino-black: #1a1a1a;
    --casino-white: #f8fafc;
    --chip-blue: #4a6fa5;
    --chip-red: #b83a3a;
    --chip-gold: #b8935f;

    /* Neutrals - Clean Slate & Cool Grays */
    --neutral-900: #0f172a;
    --neutral-800: #1e293b;
    --neutral-700: #334155;
    --neutral-600: #475569;
    --neutral-500: #64748b;
    --neutral-400: #94a3b8;
    --neutral-300: #cbd5e1;
    --neutral-200: #e2e8f0;
    --neutral-100: #f1f5f9;
    --white: #ffffff;

    /* Functional Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Gradients - Professional */
    --gradient-primary: linear-gradient(135deg, #4a6fa5 0%, #5b7db8 100%);
    --gradient-gold: linear-gradient(135deg, #b8935f 0%, #c9a876 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    --gradient-luxury: linear-gradient(135deg, #1e3a5f 0%, #4a6fa5 50%, #b8935f 100%);
    --gradient-casino: linear-gradient(135deg, #4a6fa5 0%, #7a9cc6 50%, #b8935f 100%);
    --gradient-table: linear-gradient(135deg, #2c6e49 0%, #1e5033 100%);
    --gradient-cyber: linear-gradient(135deg, #5b7db8 0%, #7a9cc6 100%);
    --gradient-accent: linear-gradient(135deg, #7a9cc6 0%, #a8c5e3 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing - Generous */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;

    /* Shadows - Strong Depth */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.20);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.30);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.35);
    --shadow-glow-blue: 0 0 0 1px rgba(59, 130, 246, 0.2);
    --shadow-glow-intense: 0 0 0 1px rgba(59, 130, 246, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions - Smooth & Dramatic */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.65;
    color: var(--neutral-100);
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: none;
}

body::after {
    content: none;
}

.container {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===================================
   Typography - Clean & Professional
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.015em;
    color: var(--white);
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--white);
}

h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--neutral-200);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-base);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.005em;
}


.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Button animations removed for professional appearance */

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-300);
    border: 2px solid var(--primary-400);
}

.btn-outline:hover {
    background: var(--primary-400);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    transition: all var(--transition-base);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShine 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-link {
    color: var(--neutral-200);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-nav {
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(91, 125, 184, 0.06) 0%, transparent 60%);
    opacity: 0.5;
}

/* Professional Background Elements */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.06));
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
    animation: floatOrb 30s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -80px) scale(1.1);
    }
    66% {
        transform: translate(-30px, -50px) scale(0.9);
    }
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    border: 2px solid rgba(59, 130, 246, 0.3);
    animation: shapeFloat 25s ease-in-out infinite;
}

.geometric-shape.circle {
    border-radius: 50%;
}

.geometric-shape.square {
    border-radius: 10px;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.1;
    }
}

/* Subtle Particle Effect */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: particleRise 15s ease-in infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-500px) translateX(50px);
        opacity: 0;
    }
}

/* Gradient Wave Animation */
.gradient-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(59, 130, 246, 0.03) 0%,
        transparent 50%
    );
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: waveMove 30s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translate(-25%, -25%) scale(1);
    }
    50% {
        transform: translate(-30%, -30%) scale(1.1);
    }
}

/* Coin Flip Animation */
.coin-flip {
    display: inline-block;
    animation: coinFlip 2s ease-in-out infinite;
}

@keyframes coinFlip {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Pulse Glow Effect */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
    /* backdrop-filter removed */
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.95);
}

@keyframes badgePulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(59, 130, 246, 0.5);
    }
}

.hero-proof {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.25s both;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    /* backdrop-filter removed */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    letter-spacing: -0.005em;
}

.proof-badge:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.proof-icon {
    font-size: 1.125rem;
    color: var(--primary-300);
}

.hero-urgency {
    margin-top: var(--spacing-md);
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    color: rgba(147, 197, 253, 0.95);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.35s both;
    /* backdrop-filter removed */
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
    letter-spacing: -0.005em;
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 30px rgba(239, 68, 68, 0.4);
    }
}

.hero-badge .badge-icon {
    color: var(--primary-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.875rem !important;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    letter-spacing: -0.015em !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-rendering: optimizeLegibility !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: normal !important;
}

.hero-subtitle-emphasis {
    color: var(--primary-300);
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    display: inline-block;
    position: relative;
    font-size: 1em !important;
}

@keyframes gradientShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    font-weight: 400;
    letter-spacing: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: auto 1px auto 1px auto;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    /* backdrop-filter removed */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    max-width: 650px;
    margin: 0 auto;
}

@keyframes statsFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.hero-stats::before {
    display: none;
}

.hero-stats:hover::before {
    display: none;
}

.hero-stats::after {
    display: none;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.375rem;
    position: relative;
    letter-spacing: -0.02em;
}

.stat-number.slot-counter {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.85);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Card Animation */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes cardFloatAlt {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0.75rem;
}

.section-title {
    margin-bottom: 0;
}

.section-subtitle {
    display: none;
}

.section-badge {
    display: none;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeSlide 3s infinite;
}

@keyframes badgeSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes floatSmall {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.section-title {
    display: none !important;
}

.section-subtitle {
    display: none;
}

/* ===================================
   Method Section
   =================================== */
.method-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.method-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.method-grid {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.25rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.method-grid::-webkit-scrollbar {
    display: none;
}

.method-grid .method-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    max-width: 100%;
    transform: none !important;
    transition: none !important;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    color: var(--white);
}

.carousel-nav:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary-500);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.carousel-dot:hover {
    background: rgba(59, 130, 246, 0.7);
}

.method-card {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(37, 99, 235, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    overflow: hidden;
    /* backdrop-filter removed */
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.method-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(59, 130, 246, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmerSweep 3s infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.method-card:hover::before {
    opacity: 1;
}

.method-card::after {
    display: none;
}

.method-card:nth-child(even) {
    animation: none;
}

.method-card:nth-child(even)::after {
    display: none;
}

.method-card[data-step]::after {
    content: attr(data-step);
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-300);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
    }
}

.method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(37, 99, 235, 0.18) 100%);
}

.method-card:hover::after {
    display: none;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    transition: all var(--transition-base);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

.method-card:hover .method-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.method-icon svg {
    color: var(--primary-400);
}

.method-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.625rem;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.method-card p {
    color: var(--neutral-300);
    margin-bottom: 0;
}

.method-note {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: var(--primary-300);
    margin-bottom: var(--spacing-sm);
}

.note-content p {
    color: var(--neutral-200);
    margin-bottom: 0;
}

/* ===================================
   Economics Section
   =================================== */
.economics-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.economics-content {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
}

.economics-returns {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    /* backdrop-filter removed */
    box-shadow: var(--shadow-lg);
}

.economics-returns h3 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    white-space: nowrap;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.cost-label {
    color: var(--neutral-300);
    font-weight: 500;
}

.cost-value {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.cost-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-sm) 0;
}

.cost-item.total {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cost-item.total .cost-value {
    color: var(--primary-400);
    font-size: 1.5rem;
}

.cost-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-400);
}

.cost-note p {
    color: var(--neutral-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.returns-table {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.returns-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr 0.8fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-400);
    text-align: center;
}

.returns-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr 0.8fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    align-items: center;
    transition: all var(--transition-base);
}

.returns-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.returns-row.featured {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.returns-cell {
    text-align: center;
    color: var(--neutral-200);
}

.returns-cell.highlight {
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
}

.returns-cell.roi-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    animation: roiBadgeGlow 2s ease-in-out infinite;
}

@keyframes roiBadgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }
}

.returns-disclaimer {
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--neutral-400);
    font-style: italic;
}

.economics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.005em;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.feature-card p {
    color: var(--neutral-300);
    margin-bottom: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.services-grid.single-service {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto !important;
    margin-bottom: 4rem !important;
}

.services-grid.single-service .service-card {
    width: 100%;
    max-width: 100%;
}

.service-card {
    position: relative;
    padding: 2rem !important;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* backdrop-filter removed */
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
    box-sizing: border-box;
    margin: 0 auto;
}

.service-card::after {
    display: none;
}

.service-card:nth-child(2) {
    animation: none;
}

.service-card:nth-child(2)::after {
    display: none;
}

.service-card:nth-child(3)::after {
    display: none;
}

.service-card:hover::after {
    display: none;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: var(--shadow-lg);
    transform: none !important;
    transition: none !important;
}

.service-card.featured::after {
    display: none;
}

.service-card.featured:hover::after {
    display: none;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

@keyframes badgeShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.service-header {
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.875rem;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    white-space: nowrap;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-400);
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    position: relative;
}

.price-amount.animated {
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

.price-period {
    font-size: 1rem;
    color: var(--neutral-400);
}

.service-description {
    color: var(--neutral-300);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-200);
}

.service-features svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary-400);
}

.service-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    transform: none !important;
    transition: none !important;
}

.service-card .btn {
    transform: none !important;
    transition: none !important;
}

.service-pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-tier {
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
}


.pricing-tier.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.4);
    position: relative;
}

.pricing-tier.highlight::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.tier-envelopes {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.tier-cost {
    font-size: 0.875rem;
    color: var(--neutral-300);
    margin-bottom: var(--spacing-xs);
}

.tier-return {
    font-size: 1rem;
    font-weight: 600;
    color: var(--success);
}

.service-roi {
    color: var(--primary-300);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    animation: roiGlow 2s ease-in-out infinite;
}

@keyframes roiGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(59, 130, 246, 0.25);
    }
    50% {
        text-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
    }
}

.service-guarantee {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.08));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-2xl);
    /* backdrop-filter removed */
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    text-align: left;
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
    animation: guaranteeFloat 3s ease-in-out infinite;
}

@keyframes guaranteeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(2deg);
    }
}

.guarantee-content h4 {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.guarantee-content p {
    color: var(--neutral-200);
    margin-bottom: 0;
}

.casinos-section {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.casinos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-300);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.casinos-header svg {
    color: var(--primary-400);
}

.casino-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.casino-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.casino-logo-item:hover {
    transform: translateY(-4px);
}

.casino-logo-wrapper {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.casino-logo-item:hover .casino-logo-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.casino-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.casino-logo-text {
    color: var(--primary-300);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.casino-name {
    color: var(--neutral-200);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .casino-logos {
        gap: 1.5rem;
    }

    .casino-logo-wrapper {
        width: 80px;
        height: 50px;
        padding: 0.5rem;
    }

    .casino-name {
        font-size: 0.8125rem;
    }

    .casinos-section {
        padding: 1.25rem 1.5rem;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.faq-grid {
    display: grid;
    gap: 0.625rem;
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-slow);
    /* backdrop-filter removed */
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
    color: var(--primary-400);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary-400);
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1rem 0.75rem;
}

.faq-answer p {
    color: var(--neutral-300);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--neutral-300);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-feature {
    display: flex;
    gap: 0.75rem;
}

.contact-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-feature h4 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.005em;
    text-shadow: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.contact-feature p {
    color: var(--neutral-300);
    margin-bottom: 0;
}

.contact-form-container {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--neutral-200);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(34, 163, 72, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Calculator Section
   =================================== */
.calculator-section {
    background: var(--neutral-800);
    padding: var(--spacing-3xl) 0;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all var(--transition-base);
}

.input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.range-input {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.range-input:hover {
    background: rgba(255, 255, 255, 0.15);
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    margin-top: -7px;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.range-input::-webkit-slider-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.range-input::-moz-range-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: var(--radius-full);
}

.range-input::-moz-range-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: var(--radius-full);
}

.input-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.result-card {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    /* backdrop-filter removed */
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.result-card:nth-child(2) {
    animation: none;
}

.result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: var(--shadow-lg);
}

.result-card.highlight {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.result-card.highlight:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: var(--radius-xl);
    color: var(--primary-400);
    position: relative;
    overflow: hidden;
}

.result-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: iconShine 3s infinite;
}

@keyframes iconShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(200%); }
}

.result-card.highlight .result-icon {
    color: var(--primary-300);
}

.result-label {
    color: var(--neutral-300);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.result-value {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-value.large {
    font-size: 2.5rem;
}

.result-roi {
    color: var(--primary-300);
    font-size: 1rem;
    font-weight: 600;
}

.calculator-cta {
    text-align: center;
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-2xl);
    /* backdrop-filter removed */
}

.calculator-cta h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.calculator-cta p {
    color: var(--neutral-200);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.calculator-disclaimer {
    text-align: center;
    color: var(--neutral-400);
    font-size: 0.875rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Comparison Table Section
   =================================== */
.comparison-section {
    background: var(--neutral-900);
    padding: var(--spacing-3xl) 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
    align-items: stretch;
}

.comparison-card {
    position: relative;
    padding: var(--spacing-3xl);
    padding-top: calc(var(--spacing-3xl) + var(--spacing-lg));
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-xl);
    /* backdrop-filter removed */
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    max-width: 450px;
}

.comparison-card h3,
.comparison-card p,
.comparison-card ul,
.comparison-card li,
.comparison-card span,
.comparison-card div {
    text-align: center !important;
}

.comparison-card ul {
    padding: 0 !important;
    width: 100% !important;
}

.comparison-card li {
    justify-content: center !important;
}

.comparison-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: var(--shadow-xl);
}

.comparison-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.25);
}

.comparison-header {
    text-align: center !important;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
}

.popular-badge {
    position: absolute;
    top: calc(var(--spacing-3xl) / 2);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--primary-300);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    text-align: center !important;
    z-index: 10;
}

.comparison-header h3 {
    font-size: 1.5rem !important;
    margin: 0 !important;
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--white);
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    align-self: center !important;
}

.comparison-header p {
    color: var(--neutral-300);
    font-size: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    align-self: center !important;
}

.comparison-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: var(--spacing-xl);
    text-align: center !important;
    width: 100%;
}

.comparison-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
    color: var(--neutral-200);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    color: var(--primary-400);
    font-size: 1.25rem;
    margin-top: 2px;
}

.x-icon {
    flex-shrink: 0;
    color: var(--neutral-500);
    font-size: 1.25rem;
    margin-top: 2px;
}

.comparison-footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    color: var(--neutral-200);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-stat {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-300);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-align: center;
}

.testimonial-card:nth-child(2n) {
    animation: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.star {
    color: var(--primary-300);
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--neutral-200);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    animation: avatarRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover .author-avatar::before {
    opacity: 1;
}

@keyframes avatarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.author-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.author-title {
    font-size: 0.875rem;
    color: var(--neutral-400);
}

.testimonial-earnings {
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    animation: earningsGlow 2s ease-in-out infinite;
}

@keyframes earningsGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    /* backdrop-filter removed */
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    color: var(--white);
    font-size: 0.9375rem;
}

.badge-text span {
    color: var(--neutral-400);
    font-size: 0.875rem;
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(59, 130, 246, 0.08) 100%);
    padding: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05), transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 0.25rem;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    text-shadow: none !important;
}

.final-cta-content p {
    font-size: 0.8125rem;
    color: var(--neutral-300);
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.625rem;
}

.cta-features {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--neutral-300);
    font-weight: 500;
    font-size: 0.75rem;
}

.cta-check {
    color: var(--primary-400);
    font-weight: 700;
    font-size: 1.25rem;
}

.cta-urgency {
    margin-top: var(--spacing-lg);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    animation: urgencyShake 3s ease-in-out infinite;
    /* backdrop-filter removed */
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25);
}

@keyframes urgencyShake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    92%, 96% {
        transform: translateX(-5px);
    }
    94%, 98% {
        transform: translateX(5px);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 1) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    padding: 1.5rem 0 1rem;
}

.footer-content-centered {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-content-centered p {
    color: var(--neutral-400);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--neutral-400);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.375rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--neutral-500);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        max-width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .method-grid .method-card {
        flex: 1 1 calc(50% - var(--spacing-lg));
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        /* backdrop-filter removed */
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        padding: var(--spacing-lg);
        gap: var(--spacing-sm);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-slow);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .hero-proof {
        flex-direction: column;
        align-items: stretch;
    }

    .proof-badge {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        font-size: 3rem;
    }

    .method-grid .method-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .carousel-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .economics-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-pricing-tiers {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .pricing-tier.highlight::before {
        top: -8px;
        font-size: 0.5625rem;
        padding: 0.2rem 0.625rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .returns-header,
    .returns-row {
        grid-template-columns: 1fr 1fr 1fr 1fr 0.8fr;
        font-size: 0.75rem;
        padding: var(--spacing-sm);
        gap: 0.25rem;
    }

    .returns-cell.highlight {
        font-size: 0.9375rem;
    }

    .returns-cell.roi-badge {
        font-size: 0.875rem;
        padding: 0.375rem 0.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-3xl: 3rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--spacing-3xl);
    }

    section {
        padding: var(--spacing-2xl) 0;
    }

    .economics-content {
        grid-template-columns: 1fr;
    }

    .returns-header {
        display: none;
    }

    .returns-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: left;
        padding: var(--spacing-lg);
    }

    .returns-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .returns-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-300);
        margin-right: var(--spacing-sm);
    }

    .returns-cell.roi-badge {
        justify-content: flex-start;
    }
}

/* ===================================
   Cursor Spotlight Effect (Disabled)
   =================================== */
.cursor-spotlight {
    display: none;
}

.cursor-glow {
    display: none;
}

/* ===================================
   Scroll Progress Bar
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    z-index: 10001;
    transform-origin: left;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
}

/* ===================================
   Loading Bar Animation
   =================================== */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
    background-size: 200% 100%;
    animation: loadingShine 1.5s infinite;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.loading-bar.active {
    opacity: 1;
}

@keyframes loadingShine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ===================================
   Enhanced Input Styles
   =================================== */
.range-input {
    position: relative;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-400);
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-400);
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Scroll Animations
   =================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}
/* ===================================
   Accessibility Improvements
   =================================== */
*:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem;
    background: var(--primary-500);
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Ensure images have alt text context */
img:not([alt]) {
    border: 3px dashed red;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neutral-100: #ffffff;
        --neutral-900: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Timeline Section
   =================================== */
.timeline-section {
    background: var(--neutral-800);
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-400);
    border: 4px solid var(--neutral-800);
    box-shadow: 0 0 0 4px var(--primary-400);
    position: relative;
    z-index: 2;
}

.timeline-dot.active {
    background: var(--success);
    box-shadow: 0 0 0 4px var(--success), 0 0 20px rgba(16, 185, 129, 0.4);
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-400) 0%, var(--primary-600) 100%);
    margin-top: 0.5rem;
    min-height: 60px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.12);
}

.timeline-day {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-300);
    background: rgba(74, 111, 165, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--neutral-300);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content:hover {
        transform: translateX(4px);
    }
}

/* ===================================
   Hero Disclaimer
   =================================== */
.hero-disclaimer {
    text-align: center;
    color: var(--neutral-300);
    font-size: 0.9375rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* ===================================
   Comparison Section - New
   =================================== */
.comparison-section-new {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table-new {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table-new thead {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.15), rgba(91, 125, 184, 0.1));
}

.comparison-table-new th {
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table-new td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table-new tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table-new tbody tr:last-child td {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
    color: var(--neutral-200);
    min-width: 200px;
}

.comparison-diy {
    color: var(--neutral-400);
    font-size: 0.9375rem;
}

.comparison-benletters {
    color: var(--primary-200);
    font-size: 0.9375rem;
}

.comparison-benletters strong {
    color: var(--primary-300);
    font-weight: 700;
}

.comparison-highlight {
    background: rgba(74, 111, 165, 0.08);
}

.comparison-highlight td {
    padding: 1.75rem 2rem;
    font-size: 1.0625rem;
}

.comparison-cta {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.comparison-cta p {
    font-size: 1rem;
    color: var(--neutral-200);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-table-new th,
    .comparison-table-new td {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .comparison-feature {
        min-width: 150px;
    }
}

/* ===================================
   Sticky CTA Button
   =================================== */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 111, 165, 0.4);
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
}

.sticky-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(74, 111, 165, 0.6);
}

@media (max-width: 768px) {
    .sticky-cta {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* ===================================
   Visual Enhancements
   =================================== */

/* Accent colors for key numbers */
.stat-number,
.hero-stat-number,
.about-stat-number,
.roi-badge,
.testimonial-earnings,
.highlight {
    color: var(--accent-cyan) !important;
    font-weight: 800 !important;
}

.price-amount {
    color: var(--accent-green) !important;
}

/* Better card depth */
.method-card,
.service-card,
.testimonial-card,
.faq-item,
.feature-card,
.timeline-content,
.about-stat,
.trust-badge {
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.method-card:hover,
.service-card:hover,
.testimonial-card:hover,
.feature-card:hover {
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Larger, bolder headings */
h1 {
    font-size: clamp(3.5rem, 6vw, 5rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
}

.section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    font-weight: 700 !important;
}

/* Better button styling */
.btn-primary {
    background: var(--primary-500) !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary:hover {
    background: var(--primary-600) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(59, 130, 246, 0.5) !important;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.20) !important;
    padding: 1.125rem 2.25rem !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    }

    .btn {
        padding: 1rem 1.75rem !important;
        font-size: 1rem !important;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    section {
        padding: clamp(3rem, 8vw, 5rem) 0 !important;
    }

    .container {
        padding: 0 1.25rem !important;
    }

    /* Better mobile touch targets */
    .nav-link,
    .faq-question,
    .btn,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Mobile-friendly cards */
    .method-card,
    .service-card,
    .testimonial-card {
        padding: 2rem !important;
    }

    /* Mobile table scrolling */
    .comparison-table-wrapper,
    .returns-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 17px;
    }

    .container {
        padding: 0 2rem !important;
    }
}
