/* ============================================
   RESET & BASE
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --black: #050508;
    --gray-950: #0a0a12;
    --gray-900: #10101a;
    --gray-800: #1a1a2e;
    --gray-700: #252540;
    --gray-600: #3a3a60;
    --gray-400: #8888aa;
    --gray-300: #aaaac0;
    --gray-100: #e8e8f0;
    --white: #f8f8ff;

    --purple: #7c3aed;
    --purple-light: #a855f7;
    --purple-glow: rgba(124, 58, 237, 0.35);
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-elec: #06b6d4;
    --blue-glow: rgba(6, 182, 212, 0.3);

    --accent: #7c3aed;
    --accent2: #06b6d4;
    --cta: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    --cta-glow: 0 0 40px rgba(124, 58, 237, 0.5);

    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);

    --font-display: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
}

body {
    font-family: var(--font-display);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: default;
}

::selection {
    background: var(--purple);
    color: white;
}

/* ============================================
   SCROLL PROGRESS
============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--blue-elec));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================
   CUSTOM CURSOR
============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--blue-elec);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.3s;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
}

/* ============================================
   BACKGROUND EFFECTS
============================================ */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -200px;
    right: -100px;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--blue);
    bottom: 20%;
    left: -150px;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--blue-elec);
    top: 50%;
    right: 15%;
    opacity: 0.12;
}

/* ============================================
   NAVBAR
============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--cta);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.nav-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--blue-elec);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--cta);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 0 0 var(--purple-glow);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--cta-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   SECTIONS BASE
============================================ */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--blue-elec);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-elec);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-title .grad {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--blue-elec) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   HERO
============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--blue-elec);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-elec);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-headline {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-headline .grad-text {
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-400);
    font-weight: 400;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--cta);
    color: white;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.5);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--glass);
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 400;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 540px;
}

.hero-dashboard {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-url {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray-600);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.dash-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}

.dash-metric:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(124, 58, 237, 0.3);
}

.dash-metric-label {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-weight: 500;
}

.dash-metric-value {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dash-metric-value.purple {
    color: var(--purple-light);
}

.dash-metric-value.cyan {
    color: var(--blue-elec);
}

.dash-metric-value.green {
    color: #10b981;
}

.dash-metric-change {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-chart-area {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.dash-chart-label {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 12px;
    font-weight: 500;
}

.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
}

.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.dash-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
}

.dash-bar:hover {
    filter: brightness(1.2);
}

.dash-row {
    display: flex;
    gap: 12px;
}

.dash-status {
    flex: 1;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.dash-status-label {
    font-size: 10px;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dash-status-value {
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

.dash-progress-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.dash-progress-label {
    font-size: 10px;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue-elec));
    width: 74%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Floating cards */
.float-card {
    position: absolute;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.float-card-1 {
    left: -40px;
    top: 100px;
    animation: float2 5s ease-in-out infinite;
}

.float-card-2 {
    right: -20px;
    bottom: 80px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(1.5deg);
    }

    50% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

.float-card-title {
    font-size: 10px;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.float-card-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.float-card-sub {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

.float-card-badge {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block;
}

.float-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

/* ============================================
   SERVICES
============================================ */
#services {
    padding: 120px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-light), var(--blue-elec), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WHY LIGRE
============================================ */
#why {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.04) 50%, transparent 100%);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left .section-subtitle {
    max-width: 480px;
    margin-bottom: 48px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.metric-card:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-4px);
}

.metric-value {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-value.grad {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-elec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.4;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-feature:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateX(8px);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.why-feature p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ============================================
   PROCESS
============================================ */
#process {
    padding: 120px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--blue-elec), var(--purple));
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.timeline-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
    cursor: default;
}

.timeline-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.timeline-step:hover .timeline-num {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--purple-glow);
}

.timeline-step:hover .timeline-num::after {
    border-color: rgba(124, 58, 237, 0.4);
}

.timeline-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.timeline-step p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

.timeline-arrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    color: var(--purple-light);
    font-size: 16px;
}

/* ============================================
   TECH STACK
============================================ */
#tech {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.03), transparent);
}

.tech-header {
    text-align: center;
    margin-bottom: 64px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: default;
}

.tech-badge:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-badge-icon {
    font-size: 28px;
    line-height: 1;
}

.tech-badge-name {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* ============================================
   CASES
============================================ */
#cases {
    padding: 120px 0;
}

.cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: var(--transition);
}

.case-card:hover {
    background: var(--glass-hover);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(124, 58, 237, 0.2);
}

.case-card:hover::before {
    opacity: 1;
}

.case-industry {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-industry::before {
    content: '';
    width: 16px;
    height: 2px;
    border-radius: 1px;
}

.case-card h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.case-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 28px;
}

.case-results {
    display: flex;
    gap: 24px;
}

.case-result-value {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.case-result-label {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
    line-height: 1.3;
}

/* ============================================
   CTA SECTION
============================================ */
#cta-section {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-box .section-tag {
    margin-bottom: 32px;
}

.cta-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-sub {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 48px;
    font-size: 16px;
    border-radius: 60px;
}

/* ============================================
   FOOTER
============================================ */
footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--glass-hover);
    color: var(--white);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--gray-600);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--gray-300);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .timeline-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 380px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .hero-headline {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .float-card-1 {
        left: -10px;
        top: 60px;
    }

    .float-card-2 {
        right: -10px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile nav open */
.nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
}

.nav-mobile-open .nav-links a {
    font-size: 24px;
}

.nav-mobile-open .nav-cta {
    display: block;
    font-size: 18px;
}