/* ============================================
   ULTISAI — Premium AI Solutions
   Dark, clean, impressive
   ============================================ */

:root {
    --bg: #0c0c16;
    --bg-elevated: #111120;
    --bg-card: #151528;
    --bg-light: #f0ede6;
    --text: #f0eee9;
    --text-secondary: #9a9aad;
    --text-muted: #505068;
    --accent: #818cf8;
    --accent-bright: #a5b4fc;
    --accent-glow: rgba(129, 140, 248, 0.15);
    --cyan: #06b6d4;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay for premium feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

::selection {
    background: rgba(129, 140, 248, 0.3);
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }

/* Custom scrollbar — dark premium */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: rgba(129, 140, 248, 0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(129, 140, 248, 0.35); }
html { scrollbar-width: thin; scrollbar-color: rgba(129, 140, 248, 0.15) var(--bg); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ============================================
   PAGE LOADER
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
    animation: loaderGlowPulse 2s ease-in-out infinite;
}

.page-loader::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(129, 140, 248, 0.015) 2px,
        rgba(129, 140, 248, 0.015) 4px
    );
    pointer-events: none;
    animation: loaderScanMove 3s linear infinite;
}

@keyframes loaderScanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes loaderGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.page-loader.loaded {
    animation: loaderExit 0.8s var(--ease-smooth) forwards;
}

@keyframes loaderExit {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 100% 0); }
}

.loader-logo {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: loaderLogoIn 0.6s var(--ease-out) 0.1s forwards;
}

@keyframes loaderLogoIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

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

.loader-percent {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    opacity: 0;
    animation: loaderLogoIn 0.4s var(--ease-out) 0.3s forwards;
}

.loader-percent::after {
    content: '%';
}

.loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    z-index: 1;
    transition: width 0.3s var(--ease);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.4);
}

.loader-corners {
    position: absolute;
    z-index: 1;
    inset: 2rem;
    pointer-events: none;
    opacity: 0;
    animation: loaderLogoIn 0.5s var(--ease-out) 0.2s forwards;
}

.loader-corners::before,
.loader-corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(129, 140, 248, 0.2);
    border-style: solid;
}

.loader-corners::before {
    top: 0; left: 0;
    border-width: 1px 0 0 1px;
}

.loader-corners::after {
    bottom: 0; right: 0;
    border-width: 0 1px 1px 0;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.5), 0 0 30px rgba(129, 140, 248, 0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
    transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s;
}

.nav.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}

.nav.scrolled::after {
    transform: scaleX(0.3);
}

.nav-logo {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    position: relative;
    z-index: 1001;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-logo-icon {
    width: 24px;
    height: 24px;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo span span {
    color: var(--accent);
    transition: text-shadow 0.3s;
}

.nav-logo:hover span span {
    text-shadow: 0 0 16px rgba(129, 140, 248, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:not(.nav-cta).active {
    text-shadow: 0 0 12px rgba(129, 140, 248, 0.2);
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.7rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-cta::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 0 4px rgba(129, 140, 248, 0); }
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #050508 !important;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-hamburger.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.nav-hamburger.active span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2.5rem;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 30%, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
    transition: color 0.3s, opacity 0.5s var(--ease), transform 0.5s var(--ease);
    opacity: 0;
    transform: translateY(30px);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    position: relative;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.4s var(--ease);
}

.mobile-menu a:hover::before { width: 1.5rem; }

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }

.mobile-menu a:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem clamp(1.5rem, 5vw, 4rem) 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Subtle scan line */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 20%, rgba(129, 140, 248, 0.15) 50%, transparent 80%);
    animation: heroScanLine 8s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes heroScanLine {
    0% { top: -1px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-gradient {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.08) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
    filter: blur(60px);
    animation: heroGradientFloat 15s ease-in-out infinite;
}

@keyframes heroGradientFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-5%, 8%) scale(1.05); }
    66% { transform: translate(3%, -5%) scale(0.97); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(129, 140, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 140, 248, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    animation: lineGrow 0.8s var(--ease) 0.3s forwards;
}

@keyframes lineGrow {
    to { width: 40px; }
}

.hero-eyebrow span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 50%, var(--accent) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-title {
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    transform: translateY(110%);
    animation: titleReveal 1s var(--ease-smooth) forwards;
}

.hero-title-word[data-delay="0"] { animation-delay: 0.4s; }
.hero-title-word[data-delay="1"] { animation-delay: 0.55s; }
.hero-title-word[data-delay="2"] { animation-delay: 0.7s; }

@keyframes titleReveal {
    to { transform: translateY(0); }
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 560px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

/* Hero neural network visual */
.hero-visual {
    position: absolute;
    right: clamp(2rem, 8vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 30vw, 450px);
    height: clamp(280px, 30vw, 450px);
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 1.5s forwards, heroVisualFloat 8s ease-in-out 2.7s infinite;
}

@keyframes heroVisualFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-52%) translateX(5px); }
}

.neural-svg {
    width: 100%;
    height: 100%;
}

.neural-svg .node {
    animation: nodePulse 3s ease-in-out infinite;
}

.neural-svg .n1 { animation-delay: 0s; }
.neural-svg .n2 { animation-delay: 0.4s; }
.neural-svg .n3 { animation-delay: 0.8s; }
.neural-svg .n4 { animation-delay: 0.2s; }
.neural-svg .n5 { animation-delay: 0.6s; }
.neural-svg .n6 { animation-delay: 1.0s; }
.neural-svg .n7 { animation-delay: 1.4s; }

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

.neural-svg .neural-lines line {
    stroke-width: 1.5;
    animation: linePulse 4s ease-in-out infinite;
}

.neural-svg .neural-glows { animation: glowPulse 3s ease-in-out infinite; }

@keyframes linePulse {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.3; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.45; }
}

@media (max-width: 1100px) {
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        height: 260px;
        margin: 2rem auto 0;
        opacity: 0;
        animation: fadeUp 1.2s var(--ease) 1s forwards, heroVisualFloatMobile 8s ease-in-out 2.2s infinite;
    }
}

@keyframes heroVisualFloatMobile {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px) translateY(-4px); }
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.4s forwards;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 50px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollSlide 2.5s ease-in-out infinite;
}

@keyframes scrollSlide {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.hero-stats {
    position: absolute;
    bottom: 3rem;
    right: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.3s forwards;
    z-index: 2;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.hero-stat-suffix {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    opacity: 0;
    z-index: -2;
    filter: blur(12px);
    transition: opacity 0.4s;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(129, 140, 248, 0.2);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover::after { opacity: 0.5; }

.btn-ghost {
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    z-index: 1;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(129, 140, 248, 0.08);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-2px);
}

.btn-ghost:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-elevated);
}

.marquee:first-of-type {
    border-bottom: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.marquee-reverse {
    border-top: none;
}

.marquee-track-reverse {
    animation: marqueeReverse 35s linear infinite;
}

.marquee-dot.cyan {
    background: var(--cyan);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
    padding: clamp(8rem, 15vw, 14rem) 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.04) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(50px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.about-left {
    position: relative;
}

.about-left .label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-left .label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, var(--accent), transparent);
    flex-shrink: 0;
}

.about-right { max-width: 760px; }

.about-text {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.about-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.about-metrics {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.4s var(--ease);
}

.metric:hover {
    transform: translateY(-4px);
}

.metric-num {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.metric-num.metric-animated {
    opacity: 1;
    transform: translateY(0);
}

.about-year-badge {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.year-badge-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    transition: all 0.4s var(--ease);
}

.year-badge-num::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.year-badge-num:hover::before {
    opacity: 1;
}

.year-badge-num:hover {
    border-color: rgba(129, 140, 248, 0.3);
    color: var(--accent);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   FEATURED IN
   ============================================ */

.featured-in {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.featured-in-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.featured-in-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
    white-space: nowrap;
}

.featured-in-logos {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.featured-in-logos span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.4s, color 0.4s, transform 0.4s var(--ease);
    position: relative;
}

.featured-in-logos span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transition: width 0.4s var(--ease);
}

.featured-in-logos span:hover {
    opacity: 1;
    color: var(--text);
    transform: translateY(-2px);
}

.featured-in-logos span:hover::after {
    width: 100%;
}

/* ============================================
   LABELS & SECTION HEADERS
   ============================================ */

.label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-header {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.section-header .label {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header .label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, var(--accent), transparent);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    padding: clamp(8rem, 15vw, 14rem) 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.services::before,
.work::before,
.approach::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: clamp(2rem, 3vw, 3rem);
    position: relative;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}

.service-card:hover::after { transform: scaleX(1); }

.service-index {
    position: absolute;
    top: clamp(1.5rem, 2.5vw, 2rem);
    right: clamp(1.5rem, 2.5vw, 2rem);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.4;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: transform 0.5s var(--ease), filter 0.5s;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.4));
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover h3 { color: var(--accent-bright); }

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.service-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.4s var(--ease);
    display: inline-block;
}

.service-card:hover .service-arrow {
    color: var(--accent);
    transform: translateX(6px);
}

/* ============================================
   WORK / CASE STUDIES
   ============================================ */

.work {
    padding: clamp(8rem, 15vw, 14rem) 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: clamp(2rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.work-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.work-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.work-card:hover::after { transform: scaleX(1); }

.work-card-visual {
    height: 180px;
    margin-top: -2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.work-card:nth-child(1) .work-card-visual {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
}

.work-card:nth-child(2) .work-card-visual {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(129, 140, 248, 0.04) 100%);
}

.work-card:nth-child(3) .work-card-visual {
    background: linear-gradient(135deg, rgba(165, 180, 252, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
}

.work-visual-num {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.work-card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(129, 140, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 140, 248, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

/* Animated shimmer on work card visual */
.work-card:hover .work-card-visual {
    background-size: 200% 100%;
    animation: workCardShimmer 2s ease-in-out;
}

@keyframes workCardShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.work-card-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.work-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.work-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 100px;
    transition: all 0.4s var(--ease);
}

.work-card:hover .work-tag {
    background: rgba(129, 140, 248, 0.1);
    border-color: rgba(129, 140, 248, 0.4);
}

.work-year {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.work-card:hover .work-title {
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-bright) 60%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.work-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.work-metrics div { display: flex; flex-direction: column; gap: 0.25rem; }

.work-metrics strong {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.3s;
}

.work-card:hover .work-metrics strong {
    color: var(--accent-bright);
}

.work-metrics span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.work-footer {
    margin-top: 3rem;
    text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: clamp(8rem, 15vw, 14rem) 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, rgba(129, 140, 248, 0.02) 40%, transparent 65%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: clamp(2rem, 3vw, 2.5rem);
    position: relative;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}

.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
    border: none;
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    padding: 1px;
    background: conic-gradient(from var(--testimonial-angle, 0deg), var(--accent), var(--cyan), var(--accent-bright), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: testimonialBorderRotate 4s linear infinite;
    transform: none;
    opacity: 0.6;
    transition: opacity 0.4s;
}

.testimonial-card.featured:hover::before {
    opacity: 1;
}

@property --testimonial-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes testimonialBorderRotate {
    to { --testimonial-angle: 360deg; }
}

.testimonial-card.featured::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-card);
    z-index: -1;
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-card.featured .testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}

.testimonial-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Stagger testimonial cards */
.testimonial-card.reveal:nth-child(1) { transition-delay: 0s; }
.testimonial-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   BIG STATEMENT
   ============================================ */

.big-statement {
    padding: clamp(8rem, 18vw, 16rem) 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-statement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: conic-gradient(from 0deg, transparent, rgba(129, 140, 248, 0.04), transparent, rgba(6, 182, 212, 0.03), transparent);
    animation: bigStatementRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes bigStatementRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.big-statement::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Section Divider */
.section-divider {
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: center;
}

.divider-line {
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 1.2s var(--ease-out);
}

.section-divider.visible .divider-line {
    transform: scaleX(1);
}

.big-statement-text {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s var(--ease-out);
}

.big-statement-text.visible {
    clip-path: inset(0 0% 0 0);
}

.big-statement-text .accent {
    background-size: 200% 100%;
    animation: bigStatementShimmer 6s ease-in-out infinite;
}

@keyframes bigStatementShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

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

/* ============================================
   APPROACH
   ============================================ */

.approach {
    padding: clamp(8rem, 15vw, 14rem) 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--cyan), var(--border));
    opacity: 0.3;
}

.approach-step {
    padding: 0 clamp(1rem, 2.5vw, 2.5rem);
    border-left: 1px solid var(--border);
    transition: border-color 0.5s, background 0.5s;
    position: relative;
}

.approach-step:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.03) 0%, transparent 60%);
}

.step-marker { margin-bottom: 2rem; }

.step-num {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: all 0.4s var(--ease);
}

.approach-step:hover .step-num {
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}

.step-line {
    width: 24px;
    height: 2px;
    background: var(--text-muted);
    transition: background 0.3s, width 0.5s var(--ease);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.step-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease-out);
}

.approach-step.reveal.visible .step-line::after {
    transform: scaleX(1);
}

/* Stagger the step line fill */
.approach-step.reveal.visible:nth-child(1) .step-line::after { transition-delay: 0.2s; }
.approach-step.reveal.visible:nth-child(2) .step-line::after { transition-delay: 0.3s; }
.approach-step.reveal.visible:nth-child(3) .step-line::after { transition-delay: 0.4s; }
.approach-step.reveal.visible:nth-child(4) .step-line::after { transition-delay: 0.5s; }

.approach-step:hover .step-line {
    width: 40px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.approach-step:hover .step-content h3 {
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.step-duration {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    display: inline-block;
    transition: border-color 0.3s, color 0.3s;
}

.approach-step:hover .step-duration {
    border-color: rgba(129, 140, 248, 0.3);
    color: var(--accent);
}

/* ============================================
   TECH STACK
   ============================================ */

.tech-stack {
    padding: clamp(6rem, 10vw, 8rem) 0;
    border-top: 1px solid var(--border);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.tech-item {
    background: var(--bg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.tech-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.tech-item:hover {
    background: var(--bg-card);
    transform: scale(1.02);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-name {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: color 0.3s, letter-spacing 0.3s;
}

.tech-item:hover .tech-name {
    color: var(--accent);
    letter-spacing: 0.12em;
}

/* ============================================
   TRUST
   ============================================ */

.trust {
    padding: clamp(6rem, 10vw, 10rem) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.trust-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.4s var(--ease);
}

.trust-logo:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.trust-logo:nth-child(1) { transition-delay: 0s; }
.trust-logo:nth-child(2) { transition-delay: 0.05s; }
.trust-logo:nth-child(3) { transition-delay: 0.1s; }
.trust-logo:nth-child(4) { transition-delay: 0.15s; }
.trust-logo:nth-child(5) { transition-delay: 0.2s; }

/* Stagger trust stats */
.trust-stat:nth-child(1) .trust-stat-num { transition-delay: 0s; }
.trust-stat:nth-child(2) .trust-stat-num { transition-delay: 0.15s; }
.trust-stat:nth-child(3) .trust-stat-num { transition-delay: 0.3s; }
.trust-stat:nth-child(4) .trust-stat-num { transition-delay: 0.45s; }

.trust-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    position: relative;
}

.trust-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.trust-stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), color 0.3s;
}

.trust-stat-num.trust-animated {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat:hover .trust-stat-num {
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-unit {
    font-size: 0.6em;
    color: var(--accent);
    font-weight: 500;
}

.trust-stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: clamp(8rem, 15vw, 14rem) 0;
    border-top: 1px solid var(--border);
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(129, 140, 248, 0.03) 50%, var(--bg) 100%);
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, rgba(6, 182, 212, 0.03) 40%, transparent 65%);
    pointer-events: none;
    filter: blur(40px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(4rem, 10vw, 10rem);
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-availability::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: availPulse 2s ease-in-out infinite;
}

@keyframes availPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.contact-email:hover {
    color: var(--accent);
    border-color: var(--accent);
    text-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}

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

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

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.form-group:focus-within::after {
    transform: scaleX(1);
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.4s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(129, 140, 248, 0.08);
}

.form-group input:focus + .form-focus-line,
.form-group textarea:focus + .form-focus-line {
    transform: scaleX(1);
}

.form-group label {
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: var(--accent);
}

.contact-form .btn-primary {
    align-self: flex-start;
    min-width: 200px;
}

.contact-form .btn-primary.sending {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form .btn-primary.sent {
    background: var(--cyan);
    color: white;
}

/* ============================================
   PRE-FOOTER CTA BANNER
   ============================================ */

.pre-footer-cta {
    padding: 0 0 clamp(4rem, 8vw, 8rem);
}

.cta-banner {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 5rem);
    border: 1px solid rgba(129, 140, 248, 0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(129, 140, 248, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    opacity: 0.5;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--accent), transparent);
    opacity: 0.3;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
}

.cta-banner-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-banner-btn {
    padding: 1.1rem 3rem;
    animation: ctaBtnPulse 3s ease-in-out infinite;
}

@keyframes ctaBtnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(129, 140, 248, 0); }
    50% { box-shadow: 0 0 30px rgba(129, 140, 248, 0.15), 0 0 60px rgba(129, 140, 248, 0.05); }
}

.cta-banner-decoration {
    position: relative;
    width: clamp(120px, 15vw, 200px);
    height: clamp(120px, 15vw, 200px);
    flex-shrink: 0;
    opacity: 0.6;
}

.cta-banner-decoration svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .cta-banner { flex-direction: column; text-align: center; }
    .cta-banner-decoration { display: none; }
    .cta-banner-btn { align-self: center; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.footer-watermark {
    position: absolute;
    bottom: 3rem;
    right: clamp(1.5rem, 5vw, 4rem);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(129,140,248,0.03) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.footer-logo { font-size: 1.5rem !important; }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.footer-brand::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    margin-bottom: 1.5rem;
    border-radius: 1px;
}

.footer-cols {
    display: flex;
    gap: clamp(3rem, 6vw, 6rem);
}

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

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transition: width 0.4s var(--ease);
}

.footer-col a:hover { color: var(--text); }
.footer-col a:hover::after { width: 100%; }

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

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-sep {
    font-size: 0.6rem;
    color: var(--text-muted);
    opacity: 0.4;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Split word animation */
.split-ready .split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.split-ready.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

/* Generate stagger delays (up to 30 words) */
.split-ready.split-visible .split-word:nth-child(1) { transition-delay: 0s; }
.split-ready.split-visible .split-word:nth-child(2) { transition-delay: 0.03s; }
.split-ready.split-visible .split-word:nth-child(3) { transition-delay: 0.06s; }
.split-ready.split-visible .split-word:nth-child(4) { transition-delay: 0.09s; }
.split-ready.split-visible .split-word:nth-child(5) { transition-delay: 0.12s; }
.split-ready.split-visible .split-word:nth-child(6) { transition-delay: 0.15s; }
.split-ready.split-visible .split-word:nth-child(7) { transition-delay: 0.18s; }
.split-ready.split-visible .split-word:nth-child(8) { transition-delay: 0.21s; }
.split-ready.split-visible .split-word:nth-child(9) { transition-delay: 0.24s; }
.split-ready.split-visible .split-word:nth-child(10) { transition-delay: 0.27s; }
.split-ready.split-visible .split-word:nth-child(11) { transition-delay: 0.30s; }
.split-ready.split-visible .split-word:nth-child(12) { transition-delay: 0.33s; }
.split-ready.split-visible .split-word:nth-child(13) { transition-delay: 0.36s; }
.split-ready.split-visible .split-word:nth-child(14) { transition-delay: 0.39s; }
.split-ready.split-visible .split-word:nth-child(15) { transition-delay: 0.42s; }
.split-ready.split-visible .split-word:nth-child(16) { transition-delay: 0.45s; }
.split-ready.split-visible .split-word:nth-child(17) { transition-delay: 0.48s; }
.split-ready.split-visible .split-word:nth-child(18) { transition-delay: 0.51s; }
.split-ready.split-visible .split-word:nth-child(19) { transition-delay: 0.54s; }
.split-ready.split-visible .split-word:nth-child(20) { transition-delay: 0.57s; }

/* Staggered delays for service cards */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.work-card.reveal:nth-child(1) { transition-delay: 0s; }
.work-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.work-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.approach-step.reveal:nth-child(1) { transition-delay: 0s; }
.approach-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.approach-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.approach-step.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.4s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(129, 140, 248, 0.3);
}

/* ============================================
   CURSOR GLOW
   ============================================ */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, rgba(6, 182, 212, 0.02) 30%, transparent 60%);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    mix-blend-mode: screen;
}

@media (hover: none), (max-width: 900px) {
    .cursor-glow { display: none; }
}

/* ============================================
   HERO PARTICLES
   ============================================ */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .work-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .work-card:nth-child(3) { grid-column: 1 / -1; }
    .approach-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem 0; }
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        padding: 1.5rem 0;
        margin-top: 1rem;
    }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .testimonial-card.featured { grid-column: 1 / -1; }
    .trust-numbers { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-stat { padding: 1rem 0; }
    .services-grid { gap: 1rem; }
}

@media (max-width: 850px) {
    .work-grid { grid-template-columns: 1fr; }
    .work-card:nth-child(3) { grid-column: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { grid-column: auto; }
    .trust-numbers { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .trust-stat:nth-child(2)::after { display: none; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .approach-timeline { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { flex-direction: column; gap: 3rem; }
    .footer-cols { flex-wrap: wrap; gap: 2rem; }
    .about-metrics { gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .trust-numbers { grid-template-columns: repeat(2, 1fr); }
    .trust-stat::after { display: none; }
    .featured-in-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .featured-in-logos { gap: 1.5rem; }
}

@media (max-width: 600px) {
    .about-metrics { flex-direction: row; gap: 0; justify-content: space-between; }
    .metric { flex: 1; align-items: center; text-align: center; gap: 0.25rem; }
    .metric + .metric { border-left: 1px solid var(--border); }
    .metric-num { font-size: 1.4rem; }
    .metric-label { font-size: 0.5rem; }
    .work-metrics { flex-wrap: wrap; gap: 1rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-numbers { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    /* Hero mobile polish */
    .hero { min-height: auto; padding-bottom: 2rem; }
    .hero-content { padding-top: 7rem; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
    .hero-sub { font-size: 0.9rem; }
    .hero-sub br { display: none; }
    .hero-visual { max-width: 260px; height: 200px; }
    .hero-stats { gap: 0; flex-wrap: nowrap; justify-content: space-between; width: 100%; }
    .hero-stat { align-items: center; flex: 1; }
    .hero-stat-num { font-size: 1.3rem; }
    .hero-stat-label { font-size: 0.5rem; text-align: center; }
    .hero-stat + .hero-stat { border-left: 1px solid var(--border); }
    .hero-scroll { display: none; }

    /* Section spacing */
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }

    /* About */
    .about-text { font-size: 1rem; }
    .about-badge { font-size: 0.55rem; }

    /* Services */
    .service-card { padding: 1.5rem; }
    .service-card h3 { font-size: 1.1rem; }

    /* Work cards */
    .work-card { padding: 1.5rem; }
    .work-card h3 { font-size: 1.1rem; }
    .work-metric-val { font-size: 1.3rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.5rem; }
    .testimonial-quote { font-size: 0.85rem; }

    /* Big statement */
    .big-text { font-size: clamp(1.5rem, 8vw, 2.5rem); }

    /* Approach */
    .approach-step { padding: 1.5rem; }

    /* Contact */
    .contact-form { padding: 0; }

    /* CTA banner */
    .cta-banner { padding: 2.5rem 1.5rem; }
    .cta-banner h2 { font-size: 1.5rem; }

    /* Footer */
    .footer { padding: 3rem 0 2rem; }
    .footer-inner { margin-bottom: 3rem; }
    .footer-cols { gap: 1.5rem; }

    /* Marquee */
    .marquee { padding: 0.8rem 0; }
    .marquee-text { font-size: clamp(0.6rem, 2vw, 0.7rem); }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat-num { font-size: 1.1rem; }
    .nav-logo-icon { width: 20px; height: 20px; }
    .nav-logo { font-size: 1.1rem; }
}

/* ============================================
   FOCUS STYLES (ACCESSIBILITY)
   ============================================ */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.btn:focus-visible {
    outline-offset: 6px;
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.2);
}

.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
    outline-offset: 6px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-text {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-title-word { transform: none !important; }
    .hero-eyebrow, .hero-sub, .hero-ctas, .hero-scroll, .hero-stats { opacity: 1 !important; }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .nav, .hero-bg, .marquee, .hero-scroll { display: none; }
    body { background: white; color: black; }
}
