/* ========================================
   Cobra Clicks - Main Styles
   ======================================== */

:root {
    --neon-green: #bff747;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text-gray: #a0a0a0;
    --white: #ffffff;
    --neon-glow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
    --neon-glow-strong: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 60px var(--neon-green), 0 0 80px var(--neon-green);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   Animated Background
   ======================================== */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(191, 247, 71, 0.05) 0%, transparent 50%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(191, 247, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191, 247, 71, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(191, 247, 71, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    color: var(--white);
}

.logo .neon {
    color: var(--neon-green);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.cta-btn):hover {
    color: var(--neon-green);
}

.nav-links a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-btn):hover::after {
    width: 100%;
}

.nav-links .cta-btn {
    background: var(--neon-green);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .cta-btn:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section - Redesigned
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orb-float 20s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-green), transparent);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7fff00, transparent);
    bottom: -200px;
    left: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-green), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.hero-main {
    text-align: center;
    max-width: 100%;
}

/* Badge */
.hero-badge-wrapper {
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(191, 247, 71, 0.05);
    border: 2px solid var(--neon-green);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(191, 247, 71, 0.3);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 247, 71, 0.3), transparent);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge i {
    font-size: 18px;
    animation: crown-pulse 2s ease-in-out infinite;
}

@keyframes crown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Title */
.hero-title-wrapper {
    margin-bottom: 40px;
}

.hero-title-main {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title-emphasis {
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero-title-emphasis::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(191, 247, 71, 0.15) 0%, transparent 70%);
    animation: pulse-bg 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.word-highlight {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7fff00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    animation: word-glow 3s ease-in-out infinite, gradient-shift 4s ease-in-out infinite;
    transform-origin: center;
}

.word-highlight.typewriter {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--neon-green);
    animation: word-glow 3s ease-in-out infinite, gradient-shift 4s ease-in-out infinite, typing 3s steps(40) 1s forwards, blink-caret 0.75s step-end infinite;
}

.word-highlight.typewriter.typing-complete {
    border-right: none;
    animation: word-glow 3s ease-in-out infinite, gradient-shift 4s ease-in-out infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--neon-green);
    }
}

@keyframes word-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(191, 247, 71, 0.6)) drop-shadow(0 0 40px rgba(191, 247, 71, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(191, 247, 71, 0.9)) drop-shadow(0 0 60px rgba(191, 247, 71, 0.5));
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--neon-green);
}

/* Question */
.hero-question {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--white);
}

.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(191, 247, 71, 0.5);
}

/* Description */
.hero-description-wrapper {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
}

.description-line {
    width: 60px;
    height: 2px;
    background: var(--neon-green);
    margin: 0 auto 30px;
    box-shadow: 0 0 10px var(--neon-green);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-description strong {
    color: var(--white);
    font-weight: 700;
}

.brand-highlight {
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-hero {
    position: relative;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(191, 247, 71, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(191, 247, 71, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(191, 247, 71, 0.4);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover .btn-glow-effect {
    width: 400px;
    height: 400px;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(191, 247, 71, 0.05), rgba(191, 247, 71, 0.02));
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 50px rgba(191, 247, 71, 0.2);
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(191, 247, 71, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(191, 247, 71, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--neon-green);
    font-size: 20px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--neon-green);
    margin-left: 4px;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0.8;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i {
    color: var(--neon-green);
    font-size: 18px;
}

/* Scroll Indicator */
.scroll-indicator-new {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--neon-green));
    margin-bottom: 10px;
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-arrow {
    color: var(--neon-green);
    font-size: 20px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   Problem Section
   ======================================== */

.problem-section {
    padding: 120px 0;
    position: relative;
    background: var(--black);
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    max-width: 100%;
    word-wrap: break-word;
}

.section-badge {
    display: inline-block;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--neon-green);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.problem-stat {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: var(--neon-green);
    color: var(--black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.stat-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(191, 247, 71, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

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

/* ========================================
   Solution Section
   ======================================== */

.solution-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(191, 247, 71, 0.02), transparent);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(191, 247, 71, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(191, 247, 71, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.solution-card:hover::before {
    transform: translateX(100%);
}

.solution-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(191, 247, 71, 0.2);
}

.solution-card.featured {
    border: 2px solid var(--neon-green);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-green);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-green);
    color: var(--black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.solution-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--white);
}

.solution-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 14px;
}

.solution-features i {
    color: var(--neon-green);
    font-size: 16px;
}

/* ========================================
   Features Showcase
   ======================================== */

.features-showcase {
    padding: 120px 0;
}

.features-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, var(--neon-green), #a0d030);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--black);
    box-shadow: 
        0 30px 80px rgba(191, 247, 71, 0.3),
        0 0 0 20px rgba(191, 247, 71, 0.1),
        0 0 0 40px rgba(191, 247, 71, 0.05);
    animation: visualFloat 4s ease-in-out infinite;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.feature-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--neon-green);
}

.feature-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-content ul {
    list-style: none;
}

.feature-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-content i {
    color: var(--neon-green);
    font-size: 18px;
}

/* ========================================
   Process Section
   ======================================== */

.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(191, 247, 71, 0.02), transparent);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green), transparent);
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--neon-green);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: var(--neon-glow);
    position: relative;
    z-index: 2;
}

.step-content {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-duration {
    display: inline-block;
    background: rgba(191, 247, 71, 0.1);
    color: var(--neon-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials-section {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(191, 247, 71, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--neon-green);
}

.testimonial-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(145deg, rgba(191, 247, 71, 0.05), transparent);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--neon-green);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(191, 247, 71, 0.2);
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.benefit-item i {
    color: var(--neon-green);
    font-size: 20px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(191, 247, 71, 0.1);
}

.cta-form textarea {
    resize: vertical;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(191, 247, 71, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin: 20px 0 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-green);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--neon-green);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(191, 247, 71, 0.1);
    color: var(--text-gray);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 36px; }
    .section-title { font-size: 40px; }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title-emphasis {
        font-size: 64px;
        gap: 20px;
    }
    
    .hero-question {
        font-size: 28px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-title-emphasis {
        font-size: 48px;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-question {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 18px 35px;
        font-size: 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 12px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-stat {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .problem-stat .stat-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .stat-content h3 {
        font-size: 24px;
    }
    
    .stat-content p {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-content {
        padding: 50px 30px;
    }
    
    .section-title { 
        font-size: 28px;
        line-height: 1.4;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .gradient-orb {
        filter: blur(60px);
    }
    
    .orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .orb-2 {
        width: 350px;
        height: 350px;
    }
    
    .orb-3 {
        width: 300px;
        height: 300px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .hero-title-main {
        font-size: 24px;
    }
    
    .hero-title-emphasis {
        font-size: 36px;
    }
    
    .hero-question {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-hero {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .trust-badge {
        font-size: 11px;
    }
    
    .scroll-indicator-new {
        bottom: 20px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .device-frame {
        width: 220px;
        height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .btn { padding: 14px 24px; font-size: 14px; }
    .cta-title { font-size: 24px; }
    .section-title { 
        font-size: 22px;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}
