/* ═══════════════════════════════════════════════════════
   SocialBandhu — V4 Cinematic Design System
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --lime: #caff03;
    --lime-dim: #caff0322;
    --lime-glow: #caff0355;
    --lime-mid: #caff0388;
    --black: #000000;
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --card: #141414;
    --card-border: #1f1f1f;
    --card-hover: #1a1a1a;
    --text: #e8e8e8;
    --text2: #888888;
    --text3: #555555;
    --white: #ffffff;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --nav-h: 72px;
}

/* ─── PRELOADER ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.pre-logo {
    width: 120px;
    height: 120px;
}

/* Stroke draw animation */
.pre-ring,
.pre-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.pre-ring-1 {
    animation: preDraw 1.5s 0.1s var(--ease-out) forwards, ringRotate1 12s 1.8s linear infinite;
}
.pre-ring-2 {
    animation: preDraw 1.5s 0.3s var(--ease-out) forwards, ringRotate1 10s 1.8s linear infinite reverse;
}
.pre-path-1 { animation: preDraw 0.8s 0.5s var(--ease-out) forwards; }
.pre-path-2 { animation: preDraw 1.2s 0.7s var(--ease-out) forwards; }
.pre-path-3 { animation: preDraw 1.4s 0.9s var(--ease-out) forwards; }

@keyframes preDraw {
    to { stroke-dashoffset: 0; }
}

/* Accent nodes pop in */
.pre-node { transition: opacity 0.3s, transform 0.3s var(--ease-bounce); transform: scale(0); transform-origin: center; }
.pre-node-1 { animation: preNodePop 0.4s 1.3s var(--ease-bounce) forwards; }
.pre-node-2 { animation: preNodePop 0.4s 1.4s var(--ease-bounce) forwards; }
.pre-node-3 { animation: preNodePop 0.4s 1.5s var(--ease-bounce) forwards; }
.pre-node-4 { animation: preNodePop 0.4s 1.6s var(--ease-bounce) forwards; }
.pre-node-5 { animation: preNodePop 0.4s 1.2s var(--ease-bounce) forwards; }
.pre-node-6 { animation: preNodePop 0.4s 1.7s var(--ease-bounce) forwards; }
@keyframes preNodePop {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

/* Brand name text */
.pre-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: preTextIn 0.6s 1.6s var(--ease-out) forwards;
}
@keyframes preTextIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── SVG SECTION DIVIDERS ─── */
.svg-divider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}
.divider-svg {
    width: 100%;
    height: 80px;
    display: block;
}
.divider-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 1.8s var(--ease-out);
}
.svg-divider.revealed .divider-line {
    stroke-dashoffset: 0;
}
.divider-dot {
    transition: opacity 0.5s 1s, transform 0.5s 1s var(--ease-bounce);
    transform: scale(0);
    transform-origin: center;
}
.svg-divider.revealed .divider-dot {
    opacity: 0.6;
    transform: scale(1);
}
.svg-divider.revealed .dd-center {
    opacity: 0.8;
    animation: dividerPulse 2s 1.5s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { r: 4; opacity: 0.8; }
    50% { r: 6; opacity: 1; }
}

/* ─── SPHERE LINE DRAW ─── */
.sline {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}
.hero-sphere.drawn .sline {
    animation: preDraw 1s var(--ease-out) forwards;
}
.hero-sphere.drawn .sline:nth-child(1) { animation-delay: 0s; }
.hero-sphere.drawn .sline:nth-child(2) { animation-delay: 0.1s; }
.hero-sphere.drawn .sline:nth-child(3) { animation-delay: 0.2s; }
.hero-sphere.drawn .sline:nth-child(4) { animation-delay: 0.3s; }
.hero-sphere.drawn .sline:nth-child(5) { animation-delay: 0.4s; }
.hero-sphere.drawn .sline-cross:nth-child(6) { animation-delay: 0.5s; }
.hero-sphere.drawn .sline-cross:nth-child(7) { animation-delay: 0.55s; }
.hero-sphere.drawn .sline-cross:nth-child(8) { animation-delay: 0.6s; }
.hero-sphere.drawn .sline-cross:nth-child(9) { animation-delay: 0.65s; }
.hero-sphere.drawn .sline-cross:nth-child(10) { animation-delay: 0.7s; }
/* Pulse at center of sphere after lines draw */
.sline-pulse {
    opacity: 0;
}
.hero-sphere.drawn .sline-pulse {
    animation: slinePulseAnim 2s 0.8s ease-out infinite;
}
@keyframes slinePulseAnim {
    0% { r: 4; opacity: 0.6; stroke-width: 1.5; }
    100% { r: 30; opacity: 0; stroke-width: 0.5; }
}

/* ─── SKIP LINK ─── */
.skip-link{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:#caff03;color:#000;padding:12px 24px;border-radius:0 0 12px 12px;font-weight:700;font-size:14px;z-index:10000;transition:top .2s}.skip-link:focus{top:0}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
@media (pointer: fine) {
    body { cursor: none; }
    a, button, input, select, textarea { cursor: none; }
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: normal; color: var(--lime); }
::selection { background: var(--lime); color: var(--black); }

/* ─── REDUCE MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-canvas { display: none; }
}

/* ─── GRAIN ─── */
.grain {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    contain: strict;
}

/* ─── CURSOR ─── */
.cursor {
    position: fixed; width: 6px; height: 6px;
    background: var(--lime); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-out), opacity 0.2s;
    mix-blend-mode: difference;
}
.cursor-follower {
    position: fixed; width: 40px; height: 40px;
    border: 1.5px solid var(--lime-mid);
    border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                border-color 0.3s, opacity 0.3s;
}
body.cursor-hover .cursor { transform: translate(-50%, -50%) scale(4); opacity: 0.5; }
body.cursor-hover .cursor-follower { width: 60px; height: 60px; border-color: var(--lime); opacity: 0.4; }

/* ─── LOADER ─── */
/* Loader removed for performance — content renders immediately */

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10,10,10,0.82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-color: var(--card-border);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 0 40px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text2);
    letter-spacing: 0.01em;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--lime);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
    background: var(--lime) !important; color: var(--black) !important;
    padding: 10px 24px !important; border-radius: 50px !important;
    font-weight: 600 !important; font-size: 13px !important;
    letter-spacing: 0.02em;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--lime-glow); }

/* Nav Dropdowns */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.3s;
}
.nav-dropdown:hover .nav-dropdown-trigger {
    color: #fff;
}
.dd-chevron {
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
    opacity: 0.4;
}
.nav-dropdown:hover .dd-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.nav-dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px) scale(0.96);
    transform-origin: top center;
    min-width: 240px;
    background: rgba(14,14,14,0.98);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(202,255,3,0.06);
    border-radius: 16px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.3s var(--ease-out), visibility 0.25s;
    z-index: 100;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(202,255,3,0.03),
        0 0 80px -20px rgba(202,255,3,0.06);
}
/* Invisible hover bridge */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -12px; right: -12px;
    height: 16px;
}
/* Top glow accent line */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202,255,3,0.3), transparent);
    border-radius: 1px;
    pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}
/* Dropdown menu items */
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px 10px 14px;
    font-size: 13px !important;
    font-weight: 500;
    color: rgba(255,255,255,0.45) !important;
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.15s, transform 0.15s, background 0.2s, color 0.2s, padding-left 0.2s;
    border-left: 2px solid transparent;
}
.nav-dropdown-menu a::after { display: none !important; }
/* Staggered entrance */
.nav-dropdown:hover .nav-dropdown-menu a {
    opacity: 1;
    transform: translateX(0);
}
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(1) { transition-delay: 0.03s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(2) { transition-delay: 0.06s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(3) { transition-delay: 0.09s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(4) { transition-delay: 0.12s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(5) { transition-delay: 0.15s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(6) { transition-delay: 0.18s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(7) { transition-delay: 0.21s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(8) { transition-delay: 0.24s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(9) { transition-delay: 0.27s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(10) { transition-delay: 0.30s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(11) { transition-delay: 0.33s; }
/* Item hover state */
.nav-dropdown-menu a:hover {
    background: rgba(202,255,3,0.06);
    color: #fff !important;
    border-left-color: var(--lime);
    padding-left: 18px;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none; background: none; border: none;
    width: 32px; height: 24px; position: relative;
    flex-direction: column; justify-content: center; gap: 7px;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    transform-origin: center;
}
.menu-toggle.open span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.open span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* ─── CONTAINER ─── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 120px 40px 60px;
    position: relative; overflow: hidden;
}

/* Canvas particle network */
.hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
    contain: strict;
}

.hero-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    contain: strict;
    will-change: transform;
}
.orb-a {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    top: -15%; left: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.orb-b {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00ff8866 0%, transparent 70%);
    bottom: -10%; right: 5%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.orb-c {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #caff0333 0%, transparent 70%);
    top: 40%; left: 50%;
    animation: orbFloat3 16s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.15); }
    66% { transform: translate(-40px, 80px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-60px, -80px) scale(1.1); }
    75% { transform: translate(50px, -40px) scale(0.9); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.2); }
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.hshape {
    position: absolute;
    contain: layout style;
}
.hshape-hex {
    width: 120px; height: 120px;
    top: 12%; left: 8%;
    animation: shapeFloat1 20s ease-in-out infinite, shapeSpin1 40s linear infinite;
}
.hshape-tri {
    width: 80px; height: 80px;
    top: 70%; left: 5%;
    animation: shapeFloat2 18s ease-in-out infinite, shapeSpin2 35s linear infinite;
}
.hshape-circle {
    width: 150px; height: 150px;
    top: 20%; right: 6%;
    animation: shapeFloat3 22s ease-in-out infinite;
}
.hshape-ring {
    width: 100px; height: 100px;
    bottom: 25%; right: 12%;
    animation: shapeFloat1 16s ease-in-out infinite reverse, shapeSpin1 50s linear infinite;
}
.hshape-cross {
    width: 60px; height: 60px;
    top: 55%; left: 15%;
    animation: shapeFloat2 14s ease-in-out infinite, shapeSpin2 25s linear infinite;
}
.hshape-diamond {
    width: 70px; height: 70px;
    bottom: 15%; left: 35%;
    animation: shapeFloat3 19s ease-in-out infinite, shapeSpin1 30s linear infinite reverse;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-15px, -50px); }
    75% { transform: translate(25px, -20px); }
}
@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-25px, 20px); }
    66% { transform: translate(15px, -35px); }
}
@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 30px); }
}
@keyframes shapeSpin1 { 0% { rotate: 0deg; } 100% { rotate: 360deg; } }
@keyframes shapeSpin2 { 0% { rotate: 0deg; } 100% { rotate: -360deg; } }

/* Grid overlay */
.hero-grid {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    overflow: hidden;
}
.hg-v {
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--card-border) 20%, var(--card-border) 80%, transparent 100%);
    opacity: 0.2;
}
.hg-v:nth-child(1) { left: 16.66%; }
.hg-v:nth-child(2) { left: 33.33%; }
.hg-v:nth-child(3) { left: 50%; }
.hg-v:nth-child(4) { left: 66.66%; }
.hg-v:nth-child(5) { left: 83.33%; }
.hg-v:nth-child(6) { left: 95%; opacity: 0.1; }
.hg-h {
    position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--card-border) 20%, var(--card-border) 80%, transparent 100%);
    opacity: 0.15;
}
.hg-h:nth-child(7) { top: 33%; }
.hg-h:nth-child(8) { top: 55%; }
.hg-h:nth-child(9) { top: 78%; }

/* Hero layout: two columns */
.hero-layout {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}
.hero-left { text-align: left; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; font-family: var(--font-mono);
    color: var(--lime); letter-spacing: 0.03em;
    padding: 8px 20px;
    border: 1px solid var(--lime-dim);
    border-radius: 50px;
    margin-bottom: 32px;
    background: rgba(202, 255, 3, 0.04);
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lime);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--lime-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}
.ht-line {
    display: block; overflow: hidden;
}
.ht-inner {
    display: inline-block;
    will-change: transform;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--text2);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
}

/* ─── HERO SPHERE GRAPHIC ─── */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-sphere {
    width: 420px; height: 420px;
    position: relative;
}

/* Rings */
.sphere-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}
.ring-1 {
    inset: 10%;
    border-color: rgba(202, 255, 3, 0.15);
    animation: ringRotate1 25s linear infinite;
    border-style: dashed;
    border-width: 1px;
}
.ring-2 {
    inset: 22%;
    border-color: rgba(202, 255, 3, 0.25);
    animation: ringRotate2 20s linear infinite;
}
.ring-3 {
    inset: 35%;
    border-color: rgba(202, 255, 3, 0.35);
    animation: ringRotate1 15s linear infinite reverse;
    border-style: dotted;
}

@keyframes ringRotate1 { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes ringRotate2 { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.05); } 100% { transform: rotate(360deg) scale(1); } }

/* Core glow */
.sphere-core {
    position: absolute;
    width: 20px; height: 20px;
    background: var(--lime);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px var(--lime), 0 0 80px var(--lime-glow), 0 0 120px var(--lime-dim);
    animation: coreGlow 3s ease-in-out infinite;
}
@keyframes coreGlow {
    0%, 100% { box-shadow: 0 0 40px var(--lime), 0 0 80px var(--lime-glow), 0 0 120px var(--lime-dim); transform: translate(-50%, -50%) scale(1); }
    50% { box-shadow: 0 0 60px var(--lime), 0 0 100px var(--lime-glow), 0 0 160px var(--lime-dim); transform: translate(-50%, -50%) scale(1.3); }
}

.sphere-glow {
    position: absolute; inset: 25%;
    background: radial-gradient(circle, var(--lime-dim) 0%, transparent 70%);
    border-radius: 50%;
    animation: sphereGlow 4s ease-in-out infinite;
}
@keyframes sphereGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Connection lines */
.sphere-lines {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}

/* Orbiting industry nodes */
.sphere-node {
    position: absolute;
    width: auto; height: auto;
    padding: 6px 16px;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid var(--lime-dim);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    z-index: 5;
}
.sphere-node span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--lime);
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.node-1 { top: 0%; left: 50%; transform: translateX(-50%); animation: nodeFloat1 6s ease-in-out infinite; }
.node-2 { top: 30%; right: -6%; transform: translateY(-50%); animation: nodeFloat2 7s ease-in-out infinite; }
.node-3 { bottom: 5%; right: 10%; animation: nodeFloat3 5s ease-in-out infinite; }
.node-4 { bottom: 5%; left: 10%; animation: nodeFloat4 8s ease-in-out infinite; }
.node-5 { top: 30%; left: -6%; transform: translateY(-50%); animation: nodeFloat5 6.5s ease-in-out infinite; }

@keyframes nodeFloat1 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes nodeFloat2 { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(8px); } }
@keyframes nodeFloat3 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(8px) translateX(5px); } }
@keyframes nodeFloat4 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(8px) translateX(-5px); } }
@keyframes nodeFloat5 { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(-8px); } }

/* Floating dots */
.sphere-dot {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--lime);
    border-radius: 50%;
    opacity: 0.6;
}
.dot-1 { top: 18%; left: 28%; animation: dotPulse 3s 0s ease-in-out infinite; }
.dot-2 { top: 28%; right: 20%; animation: dotPulse 3s 0.4s ease-in-out infinite; }
.dot-3 { bottom: 22%; left: 22%; animation: dotPulse 3s 0.8s ease-in-out infinite; }
.dot-4 { bottom: 30%; right: 25%; animation: dotPulse 3s 1.2s ease-in-out infinite; }
.dot-5 { top: 42%; left: 18%; animation: dotPulse 3s 1.6s ease-in-out infinite; width: 3px; height: 3px; }
.dot-6 { top: 35%; right: 15%; animation: dotPulse 3s 2s ease-in-out infinite; width: 3px; height: 3px; }
.dot-7 { bottom: 40%; left: 30%; animation: dotPulse 3s 0.2s ease-in-out infinite; width: 5px; height: 5px; }
.dot-8 { bottom: 15%; right: 35%; animation: dotPulse 3s 1s ease-in-out infinite; }
@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--lime); color: var(--black);
    padding: 16px 36px; border-radius: 60px;
    font-weight: 700; font-size: 15px;
    border: none; position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    letter-spacing: 0.01em;
}
.btn-primary svg { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 0 40px var(--lime-glow), 0 4px 20px rgba(0,0,0,0.3); }
.btn-primary::before {
    content: ''; position: absolute;
    inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    padding: 16px 36px; border-radius: 60px;
    font-weight: 600; font-size: 15px;
    border: 1.5px solid var(--card-border);
    transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.btn-outline:hover {
    border-color: var(--lime);
    background: var(--lime-dim);
    transform: scale(1.04);
}

.btn-lg { padding: 20px 48px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* Magnetic wrapper */
.magnetic-wrap { display: inline-block; }
.magnetic-inner { display: inline-flex; align-items: center; gap: 10px; pointer-events: none; }

/* ─── HERO STATS ─── */
.hero-stats {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1320px;
    width: 100%;
    margin: 60px auto 0;
    background: var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hs-item {
    background: var(--card);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
}
.hs-item:hover { background: var(--card-hover); }
.hs-val {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 6px;
}
.hs-label {
    font-size: 13px; color: var(--text3);
    font-weight: 500; letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ─── SCROLL INDICATOR ─── */
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 40px;
    border: 2px solid var(--text3);
    border-radius: 14px;
    display: flex; justify-content: center;
    padding-top: 8px;
    opacity: 0.5;
    animation: scrollFade 3s ease-in-out infinite;
}
.scroll-dot {
    width: 4px; height: 8px; background: var(--lime);
    border-radius: 4px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes scrollFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.25; }
}

/* ─── TICKER ─── */
.ticker {
    padding: 20px 0;
    background: var(--lime);
    overflow: hidden;
    transform: rotate(-1deg) scale(1.02);
    margin: -10px 0;
    position: relative; z-index: 5;
}
.ticker-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}
.ticker-track span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 20px;
}
.ticker-track i {
    font-style: normal;
    font-size: 12px;
    color: var(--black);
    opacity: 0.5;
    padding: 0 10px;
    display: inline-flex; align-items: center;
}
@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
.section {
    padding: 140px 0;
    position: relative;
}
.section-dark {
    background: var(--bg2);
}
.section-top {
    margin-bottom: 64px;
}
.label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text3);
    display: block;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
}

/* ─── INDUSTRIES — Interactive Showcase ─── */
.ind-section {
    background: var(--bg2);
}
.ind-header {
    margin-bottom: 56px;
}
.ind-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.ind-eyebrow {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    position: relative;
    padding-left: 28px;
}
.ind-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 18px; height: 1.5px;
    background: var(--lime);
    transform: translateY(-50%);
}
.ind-count {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--card-border);
    line-height: 0.85;
    opacity: 0.6;
}
.ind-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
}
.ind-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text2);
    max-width: 600px;
}

/* Tabs */
.ind-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 4px;
    position: relative;
}
.ind-tab-pill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 60px;
    background: var(--lime);
    transition: transform 0.5s var(--ease-out), width 0.5s var(--ease-out);
    pointer-events: none;
    z-index: 0;
    will-change: transform, width;
}
.ind-tab {
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 60px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    white-space: nowrap;
    cursor: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ind-tab:hover {
    border-color: var(--lime-dim);
    color: var(--white);
}
.ind-tab.active {
    border-color: transparent;
    color: var(--black);
}

/* Tab progress ring */
.ind-tab-progress {
    width: 18px;
    height: 18px;
    transform: rotate(-90deg);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.ind-tab.active .ind-tab-progress {
    opacity: 1;
}
.ind-tab-progress-bg {
    fill: none;
    stroke: rgba(0,0,0,0.15);
    stroke-width: 3;
}
.ind-tab-progress-fill {
    fill: none;
    stroke: var(--black);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    transition: stroke-dashoffset 0.1s linear;
}

/* Panels */
.ind-showcase {
    position: relative;
    min-height: 440px;
}
.ind-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: border-color 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.ind-panel.active {
    display: grid;
    border-color: var(--lime-dim);
    box-shadow: 0 0 40px rgba(202,255,3,0.06), 0 0 80px rgba(202,255,3,0.03);
    animation: panelIn 0.55s var(--ease-out);
}

/* Glow pulse on active panel */
.ind-panel.active::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--lime-glow), transparent 40%, transparent 60%, var(--lime-glow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes panelIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Panel visual side */
.ip-visual {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(202,255,3,0.03), transparent);
    border-right: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}
/* Ambient radial glow behind graphic */
.ip-visual::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(202,255,3,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ambientPulse 4s ease-in-out infinite;
    z-index: 0;
}
@keyframes ambientPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -55%) scale(1.15); }
}
.ip-graphic {
    width: 100%;
    max-width: 340px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.ip-graphic svg { width: 100%; height: auto; }

/* Pulsing live indicator dot */
.ip-pulse-dot {
    animation: ipPulseDot 2s ease-in-out infinite;
}
@keyframes ipPulseDot {
    0%, 100% { opacity: 1; r: 3; }
    50% { opacity: 0.4; r: 5; }
}

.ip-metric {
    text-align: center;
    position: relative;
    z-index: 1;
}
.ip-metric-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 6px;
}
.ip-metric-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Panel content side */
.ip-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ip-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--lime);
    margin-bottom: 16px;
    display: block;
}
.ip-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.ip-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text2);
    margin-bottom: 28px;
}
.ip-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}
.ip-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}
.ip-feat-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--lime-glow);
}
.ip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lime);
    transition: gap 0.3s var(--ease-out);
}
.ip-link:hover { gap: 14px; }
.ip-link svg { transition: transform 0.3s var(--ease-out); }
.ip-link:hover svg { transform: translateX(2px); }

/* Staggered content reveal */
.ind-panel.active .ip-num,
.ind-panel.active .ip-content h3,
.ind-panel.active .ip-content p,
.ind-panel.active .ip-features,
.ind-panel.active .ip-link,
.ind-panel.active .ip-graphic,
.ind-panel.active .ip-metric {
    animation: staggerIn 0.6s var(--ease-out) both;
}
.ind-panel.active .ip-graphic { animation-delay: 0.05s; }
.ind-panel.active .ip-metric { animation-delay: 0.15s; }
.ind-panel.active .ip-num { animation-delay: 0.1s; }
.ind-panel.active .ip-content h3 { animation-delay: 0.18s; }
.ind-panel.active .ip-content p { animation-delay: 0.26s; }
.ind-panel.active .ip-features { animation-delay: 0.34s; }
.ind-panel.active .ip-link { animation-delay: 0.42s; }

@keyframes staggerIn {
    0% { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ─── SERVICES — Horizontal Scroll ─── */
.hscroll-wrapper {
    overflow: hidden;
    padding: 0 40px 20px;
}
.hscroll-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    padding: 20px 0;
}
.svc-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.3s var(--ease-out), box-shadow 0.4s;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.svc-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--lime);
    margin-bottom: 24px;
    display: block;
}
.svc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.svc-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text2);
    margin-bottom: 24px;
}
.svc-card ul {
    display: flex; flex-direction: column; gap: 10px;
}
.svc-card li {
    font-size: 13px;
    color: var(--text3);
    padding-left: 18px;
    position: relative;
}
.svc-card li::before {
    content: '';
    position: absolute; left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
    opacity: 0.6;
}
a.svc-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
    transition: gap 0.3s var(--ease-out);
}
.svc-card:hover .svc-link { gap: 12px; }

/* ─── PROCESS — Creative Timeline ─── */
.process-wrapper {
    position: relative;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Animated connecting track */
.ps-track {
    position: absolute;
    top: 114px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    z-index: 1;
    pointer-events: none;
}
.ps-track-bg {
    position: absolute;
    inset: 0;
    background: var(--card-border);
    border-radius: 2px;
}
.ps-track-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--lime), var(--lime-mid));
    border-radius: 2px;
    box-shadow: 0 0 12px var(--lime-glow), 0 0 4px var(--lime-glow);
    transition: width 0.1s linear;
}

/* Travelling particles */
.ps-particle {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime), 0 0 16px var(--lime-glow);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 2;
}
.ps-particle.active {
    animation: particleTravel 3s linear infinite;
}
.ps-particle-2.active { animation-delay: 1s; }
.ps-particle-3.active { animation-delay: 2s; }

@keyframes particleTravel {
    0% { left: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Steps */
.process-step {
    position: relative;
    padding: 40px 32px;
    text-align: center;
    z-index: 3;
    border-radius: var(--radius-lg);
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.3s var(--ease-out);
}
.process-step:hover {
    background: rgba(202, 255, 3, 0.02);
    box-shadow: 0 8px 32px rgba(202, 255, 3, 0.06), inset 0 0 0 1px var(--lime-dim);
    transform: translateY(-6px);
}

/* Step dot container */
.ps-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--lime);
    position: relative;
    z-index: 4;
    margin: 50px auto 32px;
    transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out), border-color 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer pulsing ring */
.ps-dot-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid var(--lime);
    opacity: 0;
    animation: dotRingPulse 3s ease-in-out infinite;
}
.process-step:nth-child(2) .ps-dot-ring { animation-delay: 0.5s; }
.process-step:nth-child(3) .ps-dot-ring { animation-delay: 1.0s; }
.process-step:nth-child(4) .ps-dot-ring { animation-delay: 1.5s; }
.process-step:nth-child(5) .ps-dot-ring { animation-delay: 2.0s; }

@keyframes dotRingPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

/* Lit-up dot when scroll progress reaches it */
.ps-dot.lit {
    background: rgba(202, 255, 3, 0.12);
    box-shadow: 0 0 24px var(--lime-glow), 0 0 8px var(--lime-glow);
    border-color: var(--lime);
}
.ps-dot.lit .ps-dot-ring {
    animation: dotRingPulseLit 2s ease-in-out infinite;
}
@keyframes dotRingPulseLit {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.process-step:hover .ps-dot {
    background: rgba(202, 255, 3, 0.15);
    box-shadow: 0 0 30px var(--lime-glow), 0 0 60px rgba(202,255,3,0.08);
    transform: scale(1.15);
    border-color: var(--lime);
}

.ps-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--lime);
    display: block;
    margin-bottom: 14px;
}
.ps-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.process-step:hover .ps-content h3 {
    color: var(--lime);
}
.ps-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text2);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: border-color 0.4s, transform 0.3s var(--ease-out), box-shadow 0.4s;
}
.testi-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.tc-stars {
    color: var(--lime);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.testi-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 28px;
    font-weight: 400;
}
.tc-author {
    display: flex; align-items: center; gap: 14px;
}
.tc-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--lime-dim);
    color: var(--lime);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px; font-weight: 700;
}
.tc-author strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}
.tc-author span {
    font-size: 13px;
    color: var(--text3);
}

/* ─── FAQ ─── */
.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out), background 0.3s;
}
.faq-item:hover {
    border-color: var(--lime-dim);
}
.faq-item[open] {
    border-color: var(--lime-glow);
    background: var(--card-hover);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color 0.3s;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question span { flex: 1; }
.faq-question:hover { color: var(--lime); }
.faq-icon {
    flex-shrink: 0;
    color: var(--text3);
    transition: transform 0.4s var(--ease-out), color 0.3s;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--lime);
}
.faq-answer {
    padding: 0 28px 24px 28px;
    animation: faqReveal 0.4s var(--ease-out);
}
.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text2);
}
.faq-answer strong {
    color: var(--text);
    font-weight: 600;
}

@keyframes faqReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── CTA ─── */
.section-cta {
    padding: 100px 0;
}
.cta-wrapper {
    text-align: center;
    padding: 100px 60px;
    border-radius: var(--radius-xl);
    background: var(--lime);
    border: none;
    position: relative;
    overflow: hidden;
}
.cta-wrapper::before {
    display: none;
}
.cta-tag {
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
    position: relative;
}
.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    position: relative;
}
.cta-heading em { color: var(--black); }
.cta-wrapper .cta-shapes { display: none; }
.cta-wrapper .btn-primary {
    background: var(--black);
    color: var(--lime);
    border-color: var(--black);
}
.cta-wrapper .btn-primary:hover {
    background: var(--bg2);
    color: var(--lime);
    border-color: var(--bg2);
}

/* ─── CONTACT ─── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .label { margin-bottom: 16px; }
.contact-info .heading-lg { margin-bottom: 24px; }
.ci-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text2);
    margin-bottom: 40px;
}
.ci-meta {
    display: flex; flex-direction: column; gap: 20px;
}
.ci-row {
    display: flex; flex-direction: column; gap: 4px;
}
.ci-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ci-row a, .ci-row > span {
    font-size: 15px;
    color: var(--text);
    transition: color 0.3s;
}
.ci-row a:hover { color: var(--lime); }

/* Form */
.contact-form {
    display: flex; flex-direction: column; gap: 20px;
}
.cf-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cf-group {
    display: flex; flex-direction: column; gap: 8px;
}
.cf-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 0.02em;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    resize: vertical;
}
.cf-group select { appearance: none; }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px var(--lime-dim);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder {
    color: var(--text3);
}

/* ─── FOOTER ─── */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--card-border);
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand {
    flex: 1 1 260px;
    max-width: 280px;
}
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    color: var(--text3);
    line-height: 1.6;
}
.footer-col {
    flex: 1 1 140px;
    display: flex; flex-direction: column; gap: 12px;
}
.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-col a, .footer-col span {
    font-size: 14px;
    color: var(--text2);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--text3);
}

/* ─── SERVICE CARD ICONS ─── */
.svc-icon {
    width: 56px;
    height: 56px;
    background: rgba(202, 255, 3, 0.06);
    border: 1px solid rgba(202, 255, 3, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.svc-icon svg {
    width: 32px;
    height: 32px;
}
.svc-card:hover .svc-icon {
    background: rgba(202, 255, 3, 0.12);
    border-color: rgba(202, 255, 3, 0.3);
    transform: scale(1.1) rotate(-3deg);
}

/* ─── TRUST / CAPABILITIES BADGES ─── */
.trust-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--card-border);
}
.trust-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 32px;
}
.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    background: var(--card);
    transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.trust-badge:hover {
    border-color: var(--lime-dim);
    background: rgba(202, 255, 3, 0.04);
    transform: translateY(-2px);
}
.tb-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.trust-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    white-space: nowrap;
    transition: color 0.3s;
}
.trust-badge:hover span {
    color: var(--lime);
}

/* ─── RESULTS METRICS ROW ─── */
.results-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}
.rm-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.4s, transform 0.3s var(--ease-out), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}
.rm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(202,255,3,0.04), transparent 70%);
    pointer-events: none;
}
.rm-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.rm-chart {
    width: 100%;
    max-width: 140px;
    height: 90px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.rm-chart svg {
    width: 100%;
    height: 100%;
}
.rm-data {
    position: relative;
    z-index: 1;
}
.rm-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 6px;
}
.rm-label {
    display: block;
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 8px;
}
.rm-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border: 1px solid var(--lime-dim);
    border-radius: 50px;
    background: rgba(202, 255, 3, 0.04);
}

/* ─── PROCESS STEP ICONS ─── */
.ps-icon {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    animation: iconFloat 4s ease-in-out infinite;
    flex-shrink: 0;
}
.process-step:nth-child(3) .ps-icon { animation-delay: 0.5s; }
.process-step:nth-child(4) .ps-icon { animation-delay: 1.0s; }
.process-step:nth-child(5) .ps-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(3deg); }
}

.process-step:hover .ps-icon {
    opacity: 1;
    transform: scale(1.2);
    animation-play-state: paused;
}

/* ─── CTA DECORATIVE SHAPES ─── */
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.cta-shape {
    position: absolute;
}
.cs-1 {
    width: 140px;
    height: 140px;
    top: -20px;
    left: 8%;
    animation: ctaShapeFloat1 15s ease-in-out infinite, shapeSpin1 40s linear infinite;
}
.cs-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 10%;
    animation: ctaShapeFloat2 12s ease-in-out infinite;
}
.cs-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 20%;
    animation: ctaShapeFloat1 18s ease-in-out infinite reverse, shapeSpin2 35s linear infinite;
}
.cs-4 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation: ctaShapeFloat2 14s ease-in-out infinite reverse;
}
.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}
.cgo-1 {
    width: 200px;
    height: 200px;
    background: var(--lime);
    top: -40px;
    right: -40px;
    animation: ctaShapeFloat1 10s ease-in-out infinite;
}
.cgo-2 {
    width: 150px;
    height: 150px;
    background: #00ff88;
    bottom: -30px;
    left: -20px;
    animation: ctaShapeFloat2 8s ease-in-out infinite;
}
@keyframes ctaShapeFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -20px); }
}
@keyframes ctaShapeFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 15px); }
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 40px; right: 40px;
    background: var(--lime);
    color: var(--black);
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    z-index: 99999;
    transform: translateY(120%);
    transition: transform 0.5s var(--ease-out);
}
.toast.show { transform: translateY(0); }

/* ─── REVEAL ANIMATION BASE ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS — Homepage Graphics & Motion
   ═══════════════════════════════════════════════════════ */

/* Dot grid on dark-bg sections */
.section.section-dark {
    position: relative;
    overflow: hidden;
}
.section.section-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(202,255,3,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}
.section.section-dark > .container {
    position: relative;
    z-index: 1;
}

/* Service card — mouse-tracked glow */
.svc-card {
    --glow-x: 50%;
    --glow-y: 50%;
}
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at var(--glow-x) var(--glow-y),
        rgba(202,255,3,0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}
.svc-card:hover::after {
    opacity: 1;
}

/* Section heading accent lines (homepage) */
.section-top h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.section-top h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--lime);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
[data-reveal].revealed .section-top h2::after,
.section-top[data-reveal].revealed h2::after {
    transform: scaleX(1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-left { text-align: center; }
    .hero-left .hero-actions { justify-content: center; }
    .hero-right { display: none; }
    .hero-shapes { display: none; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .ind-panel { grid-template-columns: 1fr; }
    .ip-visual { border-right: none; border-bottom: 1px solid var(--card-border); padding: 40px 32px; }
    .ip-content { padding: 40px 32px; }
    .ind-count { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-track { display: none; }
    .testimonials { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { gap: 30px; }
    .footer-brand { flex: 1 1 100%; max-width: 100%; }
    .svc-card { width: 320px; }
    .results-metrics { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { gap: 16px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .container { padding: 0 20px; }
    .section { padding: 100px 0; }
    .hero { padding: 120px 20px 60px; }

    /* Body scroll lock when mobile menu is open */
    body.menu-open { overflow: hidden; }

    .nav-inner { padding: 0 20px; }
    .nav-logo { position: relative; z-index: 60; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
        padding: 96px 32px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 50;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links > a,
    .nav-links > .nav-dropdown { 
        width: 100%; 
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links a { font-size: 18px; }
    .nav-btn { 
        font-size: 16px !important; 
        padding: 14px 32px !important; 
        margin-top: 16px; 
        align-self: flex-start;
    }
    .menu-toggle { display: flex; position: relative; z-index: 60; }

    /* Mobile dropdowns */
    .nav-dropdown { width: 100%; text-align: left; }
    .nav-dropdown-trigger {
        justify-content: space-between;
        font-size: 18px;
        position: relative;
        width: 100%;
    }
    .nav-dropdown-trigger .dd-chevron {
        transition: transform 0.3s var(--ease-out);
    }
    .nav-dropdown.open .dd-chevron {
        transform: rotate(180deg);
        opacity: 1;
    }
    .nav-dropdown-menu {
        display: block !important;
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: max-height 0.5s var(--ease-out);
        box-shadow: none;
        border-left: 2px solid rgba(202,255,3,0.25);
        margin-left: 4px;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu::after { display: none; }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 600px;
        pointer-events: auto;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }
    .nav-dropdown-menu a {
        font-size: 15px !important;
        padding: 10px 20px;
        color: var(--text2) !important;
        opacity: 1;
        transform: none;
        border-left: none;
        text-align: left;
        display: block;
        transition: color 0.2s, padding-left 0.2s;
    }
    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:active {
        color: var(--lime) !important;
        padding-left: 28px;
        background: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu a {
        opacity: 1;
        transform: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu a:nth-child(n) {
        transition-delay: 0s;
    }

    .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
    .hs-item { padding: 24px 16px; }
    .hs-val { font-size: 1.5rem; }
    .hero-scroll { display: none; }
    .hero-grid { display: none; }

    .ind-tabs { gap: 4px; }
    .ind-tab { padding: 10px 20px; font-size: 13px; }
    .ind-tab-progress { width: 14px; height: 14px; }
    .ind-header-top { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ind-count { display: none; }
    .ind-panel { grid-template-columns: 1fr; }
    .ip-visual { padding: 32px 24px; }
    .ip-content { padding: 32px 24px; }
    .ip-features { grid-template-columns: 1fr; }
    .ip-graphic { max-width: 280px; }

    .svc-card { width: 280px; padding: 32px 24px; }
    .hscroll-wrapper { padding: 0 20px; }

    .process-grid { grid-template-columns: 1fr; }
    .ps-track { display: none; }
    .process-step { text-align: left; padding: 24px 0; }
    .ps-dot { margin: 0 0 20px 0; }

    .results-metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
    .rm-val { font-size: 1.4rem; }
    .rm-chart { max-width: 100px; height: 70px; }

    .trust-grid { gap: 10px; }
    .trust-badge { padding: 8px 14px; gap: 8px; }
    .trust-badge span { font-size: 11px; }
    .tb-icon { width: 22px; height: 22px; }

    .contact-layout { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }

    .faq-question { padding: 20px 20px; font-size: 0.95rem; }
    .faq-answer { padding: 0 20px 20px 20px; }
    .faq-answer p { font-size: 0.88rem; }

    .footer-grid { gap: 24px; }
    .footer-brand { flex: 1 1 100%; max-width: 100%; }
    .footer-col { flex: 1 1 45%; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    
    /* Disable custom cursor on mobile */
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    body * { cursor: auto; }
}

/* ─── FLOATING WHATSAPP WIDGET ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
}
.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #caff03;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(202,255,3,0.35);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    position: relative;
    z-index: 2;
}
.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(202,255,3,0.5);
}
.wa-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #0a0a0a;
}
/* Pulse ring */
.wa-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(202,255,3,0.4);
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Popup */
.wa-float-popup {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 260px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}
.wa-float.open .wa-float-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.wa-float-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #2a2a2a;
}
.wa-float-header p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.wa-float-header span {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}
.wa-float-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #e8e8e8;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
    font-weight: 500;
}
.wa-float-link:hover {
    background: rgba(202,255,3,0.08);
    color: #caff03;
}
.wa-float-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: #caff03;
}
.wa-float-link .wa-flag {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.wa-float-link + .wa-float-link {
    border-top: 1px solid #2a2a2a;
}
/* Close icon state */
.wa-float.open .wa-float-btn svg.wa-icon-wa { display: none; }
.wa-float.open .wa-float-btn svg.wa-icon-close { display: block; }
.wa-float-btn svg.wa-icon-close { display: none; }
