/* ============================================================
   GETVR.LIFE — Premium Dark Theme Stylesheet
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
    /* Colors */
    --clr-bg: #050810;
    --clr-bg-2: #080d1a;
    --clr-bg-card: rgba(12, 18, 36, 0.7);
    --clr-surface: rgba(255, 255, 255, 0.04);
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-border-hover: rgba(0, 212, 255, 0.3);

    --clr-cyan: #00D4FF;
    --clr-purple: #7B2FFF;
    --clr-cyan-dim: rgba(0, 212, 255, 0.15);
    --clr-purple-dim: rgba(123, 47, 255, 0.15);

    --clr-gold: #FFD700;
    --clr-orange: #FF6B35;

    --clr-text: #E8EFF8;
    --clr-text-muted: #8899B0;
    --clr-text-faint: #4A5568;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #00D4FF 0%, #7B2FFF 100%);
    --grad-bg: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(123, 47, 255, 0.10) 0%, transparent 60%);
    --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);

    /* Typography */
    --font-primary: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 7rem;

    /* Layout */
    --container-max: 1280px;
    --container-pad: clamp(1.25rem, 5vw, 3rem);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-card: 0 1px 1px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.2);
    --shadow-glow-purple: 0 0 40px rgba(123, 47, 255, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
    --dur-fast: 200ms;
    --dur-med: 400ms;
    --dur-slow: 700ms;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--grad-bg);
    pointer-events: none;
    z-index: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ── PARTICLE CANVAS ────────────────────────────────────────── */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    position: relative;
    z-index: 1;
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section {
    padding-block: var(--space-2xl);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
}

.section-header--left {
    text-align: left;
    margin-inline: 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-text);
    margin-bottom: var(--space-sm);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out),
        box-shadow var(--dur-fast) var(--ease-out),
        opacity var(--dur-fast);
    text-decoration: none;
}

.btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.btn--ghost {
    background: transparent;
    color: var(--clr-text);
    border: 1.5px solid var(--clr-border);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--clr-cyan);
    color: var(--clr-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

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

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 999;
    transition: background var(--dur-med) var(--ease-out),
        box-shadow var(--dur-med) var(--ease-out),
        backdrop-filter var(--dur-med);
}

.site-header.scrolled {
    background: rgba(5, 8, 16, 0.88);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 1px 0 var(--clr-border), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--clr-text);
}

.logo-dot {
    color: var(--clr-cyan);
}

.logo-icon svg {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--dur-fast), background var(--dur-fast);
}

.nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface);
}

.nav-cta {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: var(--grad-primary);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.2);
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
}

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

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--dur-fast) var(--ease-out),
        opacity var(--dur-fast);
}

/* Mobile nav */
@media (max-width: 860px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        inset-inline: 0;
        background: rgba(5, 8, 16, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem var(--container-pad);
        border-top: 1px solid var(--clr-border);
        gap: 0.25rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        padding: 0.9rem 1rem;
        font-size: 1rem;
        color: var(--clr-text);
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        padding: 0.9rem 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Animated sphere */
.hero-sphere {
    position: absolute;
    top: 50%;
    right: 5%;
    translate: 0 -50%;
    width: min(55vw, 680px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            rgba(0, 212, 255, 0.08) 0%,
            rgba(123, 47, 255, 0.12) 30%,
            rgba(0, 212, 255, 0.04) 50%,
            rgba(123, 47, 255, 0.1) 70%,
            rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.12);
    box-shadow:
        inset 0 0 80px rgba(0, 212, 255, 0.06),
        0 0 80px rgba(0, 212, 255, 0.08),
        0 0 160px rgba(123, 47, 255, 0.06);
    animation: sphere-rotate 20s linear infinite;
}

.hero-sphere::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.08);
    animation: sphere-rotate 12s linear infinite reverse;
}

.hero-sphere::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px solid rgba(123, 47, 255, 0.1);
    background: radial-gradient(circle at 35% 35%, rgba(0, 212, 255, 0.06), transparent 60%);
    animation: sphere-rotate 8s linear infinite;
}

@keyframes sphere-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: orb-drift 12s ease-in-out infinite alternate;
}

.hero-orb--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: var(--clr-cyan);
    animation-duration: 12s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: 30%;
    background: var(--clr-purple);
    animation-duration: 16s;
    animation-delay: -4s;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 45%;
    background: var(--clr-cyan);
    animation-duration: 10s;
    animation-delay: -8s;
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 20px) scale(1.08);
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-block: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-cyan);
    box-shadow: 0 0 8px var(--clr-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
}

.hero-heading--line {
    display: block;
}

.hero-subtext {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat__number {
    font-family: var(--font-primary);
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--clr-border);
    flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    translate: -50% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    z-index: 1;
}

.hero-scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clr-text), transparent);
    animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {

    0%,
    100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-sphere {
        display: none;
    }

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

    .hero-stats {
        gap: var(--space-md);
    }

    .hero-scroll-hint {
        display: none;
    }
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color var(--dur-med) var(--ease-out),
        box-shadow var(--dur-med) var(--ease-out),
        transform var(--dur-med) var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(0, 212, 255, 0.06), transparent 60%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--dur-med);
}

.service-card:hover {
    border-color: var(--clr-border-hover);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow-cyan);
    transform: translateY(-4px);
}

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

.service-card--featured {
    border-color: rgba(0, 212, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 255, 0.05));
}

.service-card--pro {
    border-color: rgba(255, 215, 0, 0.2);
}

.service-card--pro::before {
    background: radial-gradient(ellipse at 30% 0%, rgba(255, 215, 0, 0.06), transparent 60%);
}

.service-card--pro:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.15), 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.1);
}

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

.service-card__tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
}

.service-card__pro-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
}

.service-card__icon {
    margin-bottom: 0.5rem;
}

.service-card__icon svg {
    display: block;
}

.service-card__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.3;
}

.service-card__desc {
    font-size: 0.93rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    flex: 1;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.service-card__features i {
    width: 15px;
    height: 15px;
    color: var(--clr-cyan);
    flex-shrink: 0;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-cyan);
    margin-top: 0.5rem;
    transition: gap var(--dur-fast), opacity var(--dur-fast);
}

.service-card__cta:hover {
    gap: 0.8rem;
}

.service-card__cta i {
    width: 15px;
    height: 15px;
}

.service-card__cta--pro {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── WHY VR ─────────────────────────────────────────────────── */
.why-vr {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.why-vr-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .why-vr-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-vr__visual {
        order: -1;
    }
}

/* Image wrap */
.why-vr__image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.why-vr__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.why-vr__image-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    border: 1px solid transparent;
    background: linear-gradient(var(--clr-bg), var(--clr-bg)) padding-box,
        var(--grad-primary) border-box;
    pointer-events: none;
}

.why-vr__image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    padding: 0.65rem 1.1rem;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
}

.why-vr__image-badge i {
    width: 16px;
    height: 16px;
    color: var(--clr-cyan);
}

/* Why list */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item__icon i {
    width: 20px;
    height: 20px;
    color: var(--clr-cyan);
}

.why-item strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
    padding-block: 4rem;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.05) 0%,
            rgba(123, 47, 255, 0.08) 50%,
            rgba(0, 212, 255, 0.03) 100%);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-block__number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-block__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-align: center;
}

/* ── INDUSTRIES ──────────────────────────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 860px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--clr-border);
}

.industry-card__image-wrap {
    position: absolute;
    inset: 0;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
    filter: brightness(0.6);
}

.industry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 8, 16, 0.9) 0%,
            rgba(5, 8, 16, 0.3) 50%,
            transparent 100%);
}

.industry-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    gap: 0.5rem;
    z-index: 1;
}

.industry-card__content i {
    width: 28px;
    height: 28px;
    color: var(--clr-cyan);
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 5px;
}

.industry-card__content h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.2;
}

.industry-card:hover img {
    transform: scale(1.06);
}

.industry-card:hover {
    border-color: var(--clr-border-hover);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1), var(--shadow-glow-cyan);
}

/* ── WHY US ──────────────────────────────────────────────────── */
.why-us {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--clr-border);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.why-us-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med) var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-us-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow-cyan);
    transform: translateY(-3px);
}

.why-us-card__icon-wrap svg {
    display: block;
}

.why-us-card__title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.3;
}

.why-us-card__desc {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1.25rem;
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--clr-border);
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out), filter 0.4s;
    filter: brightness(0.75);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 1.5rem 1.5rem 1.2rem;
    background: linear-gradient(to top, rgba(5, 8, 16, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--dur-med), transform var(--dur-med) var(--ease-out);
}

.gallery-item__type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.gallery-item__label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.6);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-glow-cyan);
}

.gallery-cta {
    text-align: center;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--clr-border);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info__desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.contact-details i {
    width: 20px;
    height: 20px;
    color: var(--clr-cyan);
    flex-shrink: 0;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: color var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.social-link:hover {
    color: var(--clr-cyan);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.1);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

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

.form-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-label span {
    color: var(--clr-cyan);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--clr-text-faint);
}

.form-input:focus {
    border-color: var(--clr-cyan);
    background: rgba(0, 212, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input.error {
    border-color: #FF4D4D;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238899B0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #0d1424;
    color: var(--clr-text);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.78rem;
    color: #FF6B6B;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Form success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem 2rem;
}

.form-success[hidden] {
    display: none;
}

.form-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--clr-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__icon i {
    width: 36px;
    height: 36px;
    color: var(--clr-cyan);
}

.form-success h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
}

.form-success p {
    color: var(--clr-text-muted);
    max-width: 380px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--clr-border);
    padding-block: 4rem 2.5rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand__tagline {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    transition: color var(--dur-fast);
}

.footer-nav a:hover {
    color: var(--clr-cyan);
}

.footer-badge__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    backdrop-filter: blur(8px);
}

.footer-badge__title {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
}

.footer-badge__sub {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.footer-copyright,
.footer-made {
    font-size: 0.83rem;
    color: var(--clr-text-faint);
}

.footer-made span {
    color: #e55;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
/* Only hide elements when JS has loaded (progressive enhancement) */
.js-ready [data-animate] {
    opacity: 0;
    transition: opacity var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}

.js-ready [data-animate="fade-up"] {
    transform: translateY(32px);
}

.js-ready [data-animate="fade-down"] {
    transform: translateY(-32px);
}

.js-ready [data-animate="fade-left"] {
    transform: translateX(32px);
}

.js-ready [data-animate="fade-right"] {
    transform: translateX(-32px);
}

.js-ready [data-animate="fade-in"] {
    transform: none;
}

.js-ready [data-animate].in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── HERO — pure CSS keyframe animations (no JS needed) ─────── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: heroFadeUp 0.7s 0.05s var(--ease-out) both;
}

.hero-heading {
    animation: heroFadeUp 0.8s 0.15s var(--ease-out) both;
}

.hero-subtext {
    animation: heroFadeUp 0.7s 0.28s var(--ease-out) both;
}

.hero-actions {
    animation: heroFadeUp 0.7s 0.40s var(--ease-out) both;
}

.hero-stats {
    animation: heroFadeUp 0.7s 0.52s var(--ease-out) both;
}

/* Override: don't re-animate hero children via data-animate */
.js-ready .hero-badge[data-animate],
.js-ready .hero-heading[data-animate],
.js-ready .hero-subtext[data-animate],
.js-ready .hero-actions[data-animate],
.js-ready .hero-stats[data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--clr-cyan), var(--clr-purple));
    border-radius: 3px;
}

/* Selection */
::selection {
    background: rgba(0, 212, 255, 0.25);
    color: white;
}