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

:root {
    --primary: #0A0A0A;
    --secondary: #00FF66;
    --secondary-dim: rgba(0, 255, 102, 0.08);
    --secondary-glow: rgba(0, 255, 102, 0.25);
    --text: #FFFFFF;
    --text-muted: #8a8a8a;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --font-mono: 'JetBrains Mono', monospace;
    --font-orbitron: 'Orbitron', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--secondary-glow);
}

::selection {
    background: var(--secondary);
    color: var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ===== LOADING ===== */
#loading {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    border-right-color: var(--secondary);
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.1);
}

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

.loader-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 4px;
    animation: pulseText 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin: 12px auto;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    background: var(--secondary);
    box-shadow: 0 0 30px var(--secondary-glow);
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

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

.loader-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ===== MATRIX BG ===== */
#matrixCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    pointer-events: none;
}

/* ===== SCAN LINE ===== */
.scan-line {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 102, 0.012) 2px,
            rgba(0, 255, 102, 0.012) 4px);
}

/* ===== GLOW ORB ===== */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 102, 0.03);
    top: -100px;
    right: -100px;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 102, 0.02);
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--secondary-glow);
    color: var(--primary);
}

.btn-glow {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 102, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 102, 0.3);
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.05);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-orbitron);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 1px;
}

.logo .logo-bracket {
    color: var(--text-muted);
    font-weight: 400;
}

.logo span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 0.55rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-left: 8px;
    font-family: var(--font-mono);
}

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

.nav a {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 0 20px var(--secondary-glow);
}

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

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

.nav-cta {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    box-shadow: 0 0 30px var(--secondary-glow);
    color: var(--primary) !important;
}

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 255, 102, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: var(--secondary-dim);
    border: 1px solid rgba(0, 255, 102, 0.15);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blink-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    animation: blink 1s step-end infinite;
    box-shadow: 0 0 10px var(--secondary-glow);
}

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

.hero-terminal {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 102, 0.08);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.terminal-prompt {
    color: var(--secondary);
}

.terminal-command {
    color: #fff;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--secondary);
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

.hero h1 {
    font-family: var(--font-orbitron);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--secondary), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-cyber {
    color: var(--secondary);
    text-shadow: 0 0 40px var(--secondary-glow);
}

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

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

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

.stat-number {
    font-family: var(--font-orbitron);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    text-shadow: 0 0 30px var(--secondary-glow);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hud-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 102, 0.15);
    animation: hudSpin 20s linear infinite;
}

.hud-ring-2 {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 255, 102, 0.08);
    animation: hudSpin 15s linear infinite reverse;
}

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

.hud-center {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-dim);
    border: 1px solid rgba(0, 255, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.1);
    animation: pulseCenter 2s ease-in-out infinite;
}

@keyframes pulseCenter {
    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 102, 0.05);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 255, 102, 0.15);
    }
}

.hud-line {
    position: absolute;
    background: rgba(0, 255, 102, 0.05);
}

.hud-line-1 {
    width: 120px;
    height: 1px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
}

.hud-line-2 {
    width: 120px;
    height: 1px;
    top: 20%;
    right: 10%;
    transform: rotate(-45deg);
}

.hud-line-3 {
    width: 120px;
    height: 1px;
    bottom: 20%;
    left: 10%;
    transform: rotate(-45deg);
}

.hud-line-4 {
    width: 120px;
    height: 1px;
    bottom: 20%;
    right: 10%;
    transform: rotate(45deg);
}

.hud-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.hud-dot-1 {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: dotPulse 2s ease-in-out infinite;
}

.hud-dot-2 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: dotPulse 2s ease-in-out infinite 0.5s;
}

.hud-dot-3 {
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite 1s;
}

.hud-dot-4 {
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite 1.5s;
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }
}

.hud-dot-3,
.hud-dot-4 {
    transform: translateY(-50%) !important;
}

.hud-dot-3 {
    animation: dotPulseY 2s ease-in-out infinite 1s;
}
.hud-dot-4 {
    animation: dotPulseY 2s ease-in-out infinite 1.5s;
}

@keyframes dotPulseY {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.5);
    }
}

.hud-text {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    opacity: 0.3;
}

.hud-text-1 {
    top: 5%;
    left: 30%;
}
.hud-text-2 {
    bottom: 5%;
    right: 20%;
}
.hud-text-3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 3;
}

.scroll-indicator i {
    font-size: 1rem;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--secondary-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 102, 0.1);
}

.about-card h3 {
    font-family: var(--font-orbitron);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.about-feature i {
    color: var(--secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-4px);
}

.about-stat-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 8px;
}

.about-stat-number {
    font-family: var(--font-orbitron);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.about-stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.02) 0%, transparent 70%);
}

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

.service-card {
    padding: 40px 28px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(0, 255, 102, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.05);
}

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

.service-icon {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.service-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(0, 255, 102, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.service-card:hover .service-icon-glow {
    opacity: 1;
}

.service-card h4 {
    font-family: var(--font-orbitron);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    padding: 2px 14px;
    background: var(--secondary-dim);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

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

.pricing-card {
    padding: 40px 30px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-4px);
}

.pricing-popular {
    border-color: rgba(0, 255, 102, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 102, 0.05), var(--glass-bg));
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px var(--secondary-glow);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-plan {
    font-family: var(--font-orbitron);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.pricing-price {
    margin: 12px 0;
}

.price-amount {
    font-family: var(--font-orbitron);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.price-old {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-discount {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    color: #ff6b6b;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 20px 0 30px;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-features li i {
    width: 18px;
}

.pricing-features li i.fa-check {
    color: var(--secondary);
}

.pricing-features li i.fa-times {
    color: #ff6b6b;
}

.pricing-features li.disabled {
    opacity: 0.3;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.02) 0%, transparent 70%);
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 150px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-4px);
}

.timeline-number {
    font-family: var(--font-orbitron);
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    opacity: 0.2;
    min-width: 50px;
}

.timeline-content h4 {
    font-family: var(--font-orbitron);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.timeline-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0.1;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    padding: 30px 24px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.testimonial-info h4 {
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-detail {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-detail i {
    color: var(--secondary);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.02) 0%, transparent 70%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    background: none;
    border: none;
    color: var(--text);
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    transition: var(--transition);
    font-size: 1rem;
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 300px;
    padding: 12px 0 4px;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.cta-box {
    padding: 64px 40px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(0, 255, 102, 0.05), var(--glass-bg));
    border: 1px solid rgba(0, 255, 102, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.03), transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.cta-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--secondary-dim);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--secondary);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.cta-box h2 {
    font-family: var(--font-orbitron);
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.cta-contact span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cta-contact i {
    color: var(--secondary);
    margin-right: 6px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 12px 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.05);
}

.footer-links h5 {
    font-family: var(--font-orbitron);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero p {
        margin: 0 auto 24px;
    }

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

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

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

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

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

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-popular:hover {
        transform: scale(1) translateY(-4px);
    }

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

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

    .timeline {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-item {
        width: 100%;
        justify-content: center;
    }

    .timeline-line {
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, var(--secondary), transparent);
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stat-divider {
        display: none;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hud-container {
        width: 200px;
        height: 200px;
    }

    .hud-ring {
        width: 140px;
        height: 140px;
    }

    .hud-ring-2 {
        width: 110px;
        height: 110px;
    }

    .hud-center {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .hud-line,
    .hud-dot,
    .hud-text {
        display: none;
    }
}

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

    .logo {
        font-size: 1.2rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-stat-card {
        padding: 16px;
    }

    .about-stat-number {
        font-size: 1.4rem;
    }
}
