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

:root {
    /* Red Color Palette */
    --red-primary: #DC143C;
    --red-bright: #FF0000;
    --red-dark: #8B0000;
    --red-glow: rgba(220, 20, 60, 0.5);
    --red-light: rgba(220, 20, 60, 0.1);

    /* Black & Grays */
    --black: #000000;
    --gray-900: #0a0a0a;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #666666;
    --gray-400: #999999;
    --gray-300: #cccccc;

    /* White */
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

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

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 0 40px var(--red-glow);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-only {
    display: none;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: rgba(220, 20, 60, 0.85);
    /* Slightly transparent red */
    backdrop-filter: blur(10px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 2rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.2);
}

.announcement-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.announcement-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.announcement-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-90);
}

.countdown {
    display: flex;
    gap: 0.8rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    line-height: 1;
    padding: 0.4rem 0.6rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.countdown-label {
    font-size: 0.6rem;
    color: var(--white-70);
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-image:hover {
    filter: drop-shadow(0 0 20px var(--red-glow));
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition-fast);
}

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red-dark) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-90);
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    position: relative;
    display: inline-block;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.gradient-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px;
    background: var(--red-primary);
    transform-origin: right;
    transform: scaleX(0);
    animation: underlineExpand 1.5s ease-out forwards;
    animation-delay: 0.5s;
    box-shadow: 0 0 15px var(--red-primary);
}

@keyframes underlineExpand {
    0% {
        transform: scaleX(0);
        transform-origin: right;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-70);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(220, 20, 60, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid var(--white-30);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--white-10);
    border-color: var(--red-primary);
    transform: translateY(-2px);
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    border: 3px solid var(--black);
    margin-left: -12px;
    transition: var(--transition-fast);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.proof-text {
    text-align: left;
}

.stars {
    color: var(--red-primary);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.proof-text p {
    font-size: 0.875rem;
    color: var(--white-70);
}

/* ============================================
   CODE METRICS SECTION
   ============================================ */
.code-metrics-section {
    padding: 6rem 0 1rem 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.code-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

.code-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.code-metric-card {
    background: #0d0d0d;
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: var(--font-mono, monospace);
    transition: var(--transition-normal);
}

.code-metric-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
}

.code-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    padding-bottom: 0.75rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--red-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.file-name {
    font-size: 0.75rem;
    color: rgba(220, 20, 60, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.metric-value-container {
    margin-bottom: 0.5rem;
}

.metric-value-container .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--red-primary);
}

.metric-value-container .unit {
    font-size: 1.5rem;
    color: var(--red-primary);
    margin-left: 0.25rem;
}

.code-line {
    font-size: 0.85rem;
    color: #8b0000;
}

.syntax-var {
    color: #ff3333;
}

.syntax-string {
    color: #ffcccc;
}

.bars-container {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
}

.bar {
    flex: 1;
    background: rgba(220, 20, 60, 0.1);
    border-top: 2px solid var(--red-primary);
    animation: barPulse 1.5s infinite ease-in-out;
}

.bar:nth-child(1) {
    animation-delay: 0.1s;
}

.bar:nth-child(2) {
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    animation-delay: 0.5s;
}

.bar:nth-child(4) {
    animation-delay: 0.2s;
}

.bar:nth-child(5) {
    animation-delay: 0.4s;
}

.bar:nth-child(6) {
    animation-delay: 0.1s;
}

.bar:nth-child(7) {
    animation-delay: 0.6s;
}

.bar:nth-child(8) {
    animation-delay: 0.3s;
}

@keyframes barPulse {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.system-check {
    margin-top: 3rem;
    color: rgba(139, 0, 0, 0.3);
    font-family: var(--font-mono, monospace);
    font-size: 0.65rem;
    text-align: center;
    animation: pulseFade 2s infinite;
}

@keyframes pulseFade {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.features-section {
    padding: 0.5rem 0;
}

.faq-section {
    padding: 0.5rem 0 6rem 0;
}

.problem-section,
.solution-section,
.process-section,
.comparison-section,
.testimonials-section,
.results-section,
.pricing-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.results-section {
    padding-top: 1rem;
    position: relative;
    background-color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--white-70);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.problem-card:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.problem-card p {
    color: var(--white-70);
    line-height: 1.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    background: linear-gradient(180deg, transparent 0%, rgba(220, 20, 60, 0.03) 50%, transparent 100%);
}

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

.solution-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-bright) 0%, var(--red-primary) 100%);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(220, 20, 60, 0.3);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.solution-card p {
    color: var(--white-70);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-card p {
    color: var(--white-70);
    line-height: 1.7;
}

.benefits-box {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefits-box h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefits-list li {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.4);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.step-content:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-content p {
    color: var(--white-70);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--white-10);
    transition: var(--transition-fast);
}

.comparison-row:last-child {
    border-bottom: none;
}

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

.comparison-label {
    font-weight: 600;
    color: var(--white);
}

.comparison-value {
    text-align: center;
    color: var(--white-70);
}

.comparison-value.highlight {
    color: var(--red-primary);
    font-weight: 700;
}

.comparison-col.highlight {
    color: var(--red-primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--red-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--white-90);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--white-70);
}

.testimonial-result {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--red-primary);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 20, 60, 0.3);
}

.result-image-placeholder {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white-70);
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.5);
    z-index: 1;
}

.result-info {
    padding: 1.5rem;
    text-align: center;
}

.result-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.result-info p {
    color: var(--red-primary);
    font-weight: 600;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-color: var(--red-primary);
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--white-10);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-primary);
}

.amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--white-70);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--white-90);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.5);
}

.pricing-guarantee {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-guarantee h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pricing-guarantee p {
    color: var(--white-70);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--red-primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--white-70);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    background: var(--white);
    color: var(--black);
}

.btn-cta-primary svg {
    transition: transform 0.4s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(8px);
}

.cta-trust {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--white-40);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.cta-trust span:hover {
    color: var(--white-90);
}

.cta-trust svg {
    opacity: 0.5;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

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

.modal-content {
    background: #0d0d0d;
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.15);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white-50);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.modal-header p {
    color: var(--white-70);
    font-size: 0.95rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red-primary);
    background: rgba(220, 20, 60, 0.03);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.1);
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--white-40);
    margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-900);
    border-top: 1px solid var(--white-10);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.footer-brand .logo-image {
    height: 100px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--white-70);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--white-70);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--red-primary);
    color: var(--red-primary);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--white-70);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--red-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
    text-align: center;
    color: var(--white-70);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN -- UPDATED
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

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

    .process-timeline::before {
        left: 40px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 2rem 1.5rem 2rem;
        min-height: auto;
        overflow: hidden;
        z-index: 10;
    }

    .results-section {
        position: relative;
        z-index: 1;
        margin-top: -2rem;
        /* Bring it up so the hero glow overlaps it nicely */
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        background-color: var(--black);
        /* Ensure it has its own solid background */
    }

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

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        order: 1;
    }

    .hero-title .gradient-text {
        padding-bottom: 5px;
        /* Move underline down */
        display: inline-block;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 1.5rem;
        margin-top: -1rem;
        /* Move it closer to the video */
        margin-bottom: 2rem;
        order: 3;
        text-align: center;
        width: 100%;
        color: var(--white-70);
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .video-section-hero {
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 1rem;
        /* Reduce bottom margin */
        order: 2;
    }

    .hero-cta-container {
        width: 100%;
        order: 4;
        margin-top: 0;
    }

    .code-metric-card {
        padding: 1rem;
    }

    .metric-value-container .stat-number {
        font-size: 2.25rem;
    }

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

    /* Announcement Bar Mobile */
    .announcement-content {
        gap: 0.5rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .announcement-text {
        text-align: center;
    }

    .countdown {
        justify-content: center;
    }

    /* Video Section Mobile */
    .video-sticker {
        width: 100px;
        top: -30px;
        right: -10px;
    }

    /* Grid Adjustments */
    .stats-grid,
    .problem-grid,
    .solution-grid,
    .features-grid,
    .pricing-grid,
    .code-metrics-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }



    .results-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 1.5rem !important;
        padding: 0 1.5rem 1rem !important;
        margin: 0 -1.5rem !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .results-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .result-card {
        min-width: 280px !important;
        width: 85% !important;
        scroll-snap-align: center;
        flex-shrink: 0 !important;
    }

    /* Results Card Mobile */
    .result-images {
        flex-direction: column;
        gap: 1rem;
    }

    .vs-divider {
        margin: 0.5rem 0;
        transform: rotate(90deg);
    }

    .vs-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
    }

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

    /* General Typography */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        font-weight: 300;
        opacity: 0.8;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .feature-card {
        text-align: center;
    }

    .btn-hero-lg,
    .btn-cta-primary {
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-glow {
        width: 250px;
        height: 120px;
        filter: blur(40px);
        opacity: 0.6;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-trust {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
    }

    /* Modal Responsive Improvements */
    .modal-content {
        padding: 1.5rem;
        border-radius: 16px;
        width: 95%;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .modal-header p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .modal-form {
        gap: 1rem;
    }

    .form-group input {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 35px;
    }

    .countdown-number {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn-hero-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 200px;
    }

    /* Extra Small Mobile Modal Tweaks */
    .modal-header h3 {
        font-size: 1.25rem;
    }

    .modal-content {
        padding: 1.25rem;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .features-section {
        padding: 1rem 0;
    }

    .faq-section {
        padding: 0.5rem 0 1.5rem 0;
    }

    .cta-section {
        padding: 2rem 0;
    }
}

.comparison-value {
    text-align: left;
    padding-left: 1rem;
}