/* ==========================================
   AURA SIGNAGE — 2026 LUXURY EDITION (FINAL)
   Glassmorphism · Aurora · Depth · Kinetic
   All known bugs fixed
   ========================================== */

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   TOKENS
   ========================================== */
:root {
    --w:    #ffffff;
    --b:    #000000;
    --blue: #41B0FD;
    --bl-h: #0040cc;
    --bl-g: rgba(0,41,128,.12);
    --dk:   #111111;
    --gr:   #555555;
    --gr2:  #666666;
    --gr3:  #cccccc;
    --bd:   #e8e8e8;
    --off:  #f6f6f4;
    --grn:  #25D366;
    --grn-h:#1ebe5d;

    --amber: #f5a623;
    --neon:  #00d4ff;
    --glow-blue: rgba(0,64,204,.35);

    --head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --body: 'Segoe UI', 'Plus Jakarta Sans', system-ui, sans-serif;

    --sec:     120px;
    --pad-lg:  80px;
    --pad-md:  56px;
    --pad-sm:  48px;
    --pad-xs:  24px;

    --r:    8px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-p:  999px;

    --s1: 0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
    --s2: 0 2px 4px rgba(0,0,0,.03), 0 8px 24px rgba(0,0,0,.06), 0 24px 48px rgba(0,0,0,.04);
    --s3: 0 4px 8px rgba(0,0,0,.04), 0 16px 40px rgba(0,0,0,.08), 0 40px 80px rgba(0,0,0,.06);
    --s4: 0 8px 16px rgba(0,0,0,.06), 0 32px 64px rgba(0,0,0,.12), 0 64px 128px rgba(0,0,0,.08);

    --nh:  72px;
    --nhs: 60px;
    --e:   cubic-bezier(.16,1,.3,1);

    --reel-speed: 36s;
    --logos-speed: 22s;

    /* z-index scale — explicit so stacking never depends on source order */
    --z-aurora:   0;
    --z-content:  1;
    --z-spotlight: 2;
    --z-mbar:     9001;
    --z-wa:       9000;
    --z-nav:      10000;
    --z-mm:       10001;
    --z-lb:       20000;
    --z-cursor:   99998;
    --z-bar:      99999;
    --z-reveal:   100000;
}

/* ==========================================
   BASE
   ========================================== */
html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--body);
    background: var(--w);
    color: var(--dk);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
}

body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button,
body.has-cursor [role="button"], body.has-cursor input,
body.has-cursor textarea, body.has-cursor select { cursor: none; }

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: color .3s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
::selection { background: var(--blue); color: var(--w); }

#services, #why, #work,
#process, #testimonials,
#contact, #form {
    scroll-margin-top: var(--nh);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .reel-track, .logos-track { animation: none !important; }
    .aurora-blob { animation: none !important; }
    .cursor { display: none !important; }
}

:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 3px;
}

.skip {
    position: absolute; top: -120px; left: 50%;
    transform: translateX(-50%);
    background: var(--blue); color: var(--w);
    padding: 12px 28px;
    border-radius: 0 0 var(--r) var(--r);
    z-index: var(--z-reveal);
    font-family: var(--head);
    font-size: 13px; font-weight: 600;
    transition: top .3s;
}
.skip:focus { top: 0; }

/* ==========================================
   LED PROGRESS BAR
   ========================================== */
.bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--neon), var(--blue));
    background-size: 200% 100%;
    z-index: var(--z-bar); pointer-events: none;
    transition: width .06s linear;
    animation: ledStrip 3s linear infinite;
    box-shadow: 0 0 8px var(--glow-blue), 0 0 20px rgba(0,212,255,.15);
}
@keyframes ledStrip {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ==========================================
   CUSTOM CURSOR
   Fix: visibility:hidden default instead of relying purely on JS class,
   so a JS load-failure never leaves the OS cursor permanently hidden.
   ========================================== */
.cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: var(--z-cursor);
    pointer-events: none;
    mix-blend-mode: difference;
    display: none;
    opacity: 0;
    transition: opacity .25s;
}
.cursor.active { display: block; opacity: 1; }

.cursor-dot {
    width: 6px; height: 6px;
    background: var(--w);
    border-radius: 50%;
    position: absolute;
    top: -3px; left: -3px;
    transition: transform .15s var(--e), opacity .15s;
}

.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 50%;
    position: absolute;
    top: -20px; left: -20px;
    transition: width .4s var(--e), height .4s var(--e),
                top .4s var(--e), left .4s var(--e),
                border-color .3s, background .3s;
}

.cursor.hover .cursor-ring {
    width: 64px; height: 64px;
    top: -32px; left: -32px;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.8);
}
.cursor.hover .cursor-dot { transform: scale(0); }

/* Fix: cursor uses normal blend (not difference) over glass surfaces so
   backdrop-filter + mix-blend-mode don't fight each other visually */
.cursor.over-glass { mix-blend-mode: normal; }
.cursor.over-glass .cursor-dot { background: var(--blue); }
.cursor.over-glass .cursor-ring { border-color: rgba(0,41,128,.5); }

.cursor-text {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--w);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s;
}
.cursor.hover .cursor-text { opacity: 1; }
.cursor.over-glass .cursor-text { color: var(--blue); }

/* ==========================================
   PAGE LOAD REVEAL
   ========================================== */
.reveal {
    position: fixed; inset: 0;
    background: var(--dk);
    z-index: var(--z-reveal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s var(--e), visibility .8s;
}
.reveal.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.reveal-logo {
    height: 40px; width: auto;
    filter: brightness(0) invert(1);
    animation: revealPulse 1.5s ease-in-out infinite alternate;
}
@keyframes revealPulse {
    from { opacity: .4; transform: scale(.95); }
    to   { opacity: 1;  transform: scale(1); }
}

/* ==========================================
   SECTION HEADING
   ========================================== */
.sh {
    font-family: var(--head);
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 800;
    color: var(--dk);
    letter-spacing: -1.2px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 60px;
    animation: hGlow 5s ease-in-out infinite alternate;
}
@keyframes hGlow {
    from { text-shadow: none; }
    to   { text-shadow: 0 0 48px rgba(0,41,128,.08), 0 0 96px rgba(0,41,128,.04); }
}
.sh-w {
    color: var(--w);
    animation: hGlowW 5s ease-in-out infinite alternate;
}
@keyframes hGlowW {
    from { text-shadow: none; }
    to   { text-shadow: 0 0 48px rgba(255,255,255,.12), 0 0 96px rgba(0,212,255,.08); }
}

/* ==========================================
   GLASSMORPHISM UTILITIES
   Fix: noise texture moved to one shared background-image rule via
   class instead of being duplicated per element — single decode cost.
   ========================================== */
.glass-card {
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: var(--s2),
                inset 0 1px 0 rgba(255,255,255,.8),
                inset 0 -1px 0 rgba(255,255,255,.2);
}

.glass-dark {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--s2),
                inset 0 1px 0 rgba(255,255,255,.06);
    position: relative;
}
/* Single noise definition reused by every .glass-dark via ::before */
.glass-dark::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    background-image: var(--noise-texture, 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E"));
    pointer-events: none;
    z-index: 0;
}

.glass-pill {
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-p);
}

/* ==========================================
   ACRYLIC EDGE EFFECT
   ========================================== */
.acrylic-edge {
    border: 1px solid var(--bd);
    box-shadow:
        inset 0 0 0 1px rgba(0,150,255,.2),
        0 0 8px rgba(0,150,255,.08);
    transition: box-shadow .4s var(--e), border-color .4s var(--e);
}
.acrylic-edge:hover,
.sc:hover .acrylic-edge {
    border-color: rgba(0,150,255,.4);
    box-shadow:
        inset 0 0 0 1px rgba(0,150,255,.5),
        0 0 16px rgba(0,150,255,.15);
}

/* ==========================================
   BRUSHED METAL TEXTURE
   ========================================== */
.brushed-metal-bg { position: relative; }
.brushed-metal-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent, transparent 1px,
            rgba(0,0,0,.015) 1px, rgba(0,0,0,.015) 2px
        ),
        linear-gradient(180deg,
            rgba(200,200,200,.04) 0%,
            rgba(255,255,255,.02) 50%,
            rgba(200,200,200,.04) 100%
        );
    pointer-events: none;
    z-index: 0;
}
.brushed-metal-bg > * { position: relative; z-index: 1; }

.footer-metal {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(192,192,192,.15) 20%,
        rgba(255,255,255,.3) 50%, rgba(192,192,192,.15) 80%,
        transparent 100%
    );
    max-width: 1300px;
    margin: 0 auto;
}

/* ==========================================
   AURORA / MESH GRADIENT
   Fix: explicit z-index var, paused via JS class when off-screen
   ========================================== */
.aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: var(--z-aurora);
    pointer-events: none;
    opacity: .6;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
    animation-play-state: running;
}
.aurora.paused .aurora-blob { animation-play-state: paused; }

.aurora-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,41,128,.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: auroraFloat1 20s ease-in-out infinite alternate;
}
.aurora-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,212,255,.08) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    animation: auroraFloat2 25s ease-in-out infinite alternate;
}
.aurora-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: auroraFloat3 18s ease-in-out infinite alternate;
}
@keyframes auroraFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.2); }
}
@keyframes auroraFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(1.15); }
}
@keyframes auroraFloat3 {
    0%   { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-40%, -60%) scale(1.3); }
}

/* ==========================================
   CURSOR SPOTLIGHT (dark sections)
   ========================================== */
.spotlight {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: var(--z-spotlight);
    opacity: 0;
    transition: opacity .4s;
}
.contact:hover .spotlight { opacity: 1; }
.contact { position: relative; overflow: hidden; }

/* ==========================================
   NAV
   ========================================== */
.nav {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: var(--z-nav);
    height: var(--nh);
    display: flex; align-items: center;
    padding: 0 var(--pad-md);
    background: transparent;
    transition:
        height .4s var(--e),
        background .4s var(--e),
        box-shadow .4s var(--e),
        border-color .4s var(--e);
}
.nav.on {
    height: var(--nhs);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,.3);
    box-shadow: var(--s1), inset 0 -1px 0 rgba(0,0,0,.03);
}

.nav-in {
    display: flex; align-items: center;
    justify-content: space-between;
    width: 100%; max-width: 1400px;
    margin: 0 auto;
}

.nav-logo-img {
    height: 30px; width: auto;
    object-fit: contain;
    
    transition: filter .3s;
}
.nav.on .nav-logo-img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nl {
    font-family: var(--head);
    font-size: 13px; font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    position: relative; padding: 6px 0;
    transition: color .3s; letter-spacing: .1px;
}
.nav.on .nl { color: var(--gr); }

.nl::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--blue); border-radius: 2px;
    transition: width .35s var(--e), box-shadow .35s var(--e);
}
.nl:hover { color: var(--blue); }
.nav.on .nl:hover { color: var(--blue); }
.nl:hover::after,
.nl.on::after { width: 100%; box-shadow: 0 0 8px var(--bl-g); }
.nl.on { color: var(--blue); }

.nav-cta {
    font-family: var(--head);
    font-size: 13px; font-weight: 700;
    color: var(--w); background: var(--blue);
    padding: 10px 24px; border-radius: var(--r-p);
    transition: all .3s var(--e);
    box-shadow: 0 4px 16px var(--bl-g);
    letter-spacing: .2px;
    display: inline-block;
}
.nav-cta:hover {
    background: var(--bl-h); color: var(--w);
    box-shadow: 0 8px 24px var(--bl-g), 0 0 32px rgba(0,41,128,.2);
}

.burger {
    display: none; width: 28px; height: 18px;
    flex-direction: column; justify-content: space-between;
    padding: 0;
}
.burger span {
    display: block; width: 100%; height: 2px;
    background: var(--w); border-radius: 2px;
    transition: all .35s var(--e); transform-origin: center;
}
.burger span:last-child { width: 60%; margin-left: auto; }
.burger:hover span:last-child { width: 100%; }
.nav.on .burger span { background: var(--dk); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { width: 100%; margin: 0; transform: translateY(-8px) rotate(-45deg); }

/* ==========================================
   MOBILE MENU
   ========================================== */
.mm {
    position: fixed; inset: 0;
    background: var(--w); z-index: var(--z-mm);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--e), visibility .4s;
}
.mm.open { opacity: 1; visibility: visible; }

.mm-x {
    position: absolute; top: 16px; right: 20px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--bd);
    transition: all .3s;
}
.mm-x:hover { background: var(--dk); border-color: var(--dk); }
.mm-x span {
    display: block; width: 16px; height: 2px;
    background: var(--dk); position: absolute; border-radius: 2px;
}
.mm-x:hover span { background: var(--w); }
.mm-x span:first-child { transform: rotate(45deg); }
.mm-x span:last-child  { transform: rotate(-45deg); }

.mm-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mn {
    font-family: var(--head);
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 700; color: var(--dk);
    padding: 6px 24px; letter-spacing: -1px;
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s var(--e), transform .4s var(--e), color .3s;
}
.mm.open .mn { opacity: 1; transform: translateY(0); }
.mm.open .mn:nth-child(1) { transition-delay: .04s; }
.mm.open .mn:nth-child(2) { transition-delay: .08s; }
.mm.open .mn:nth-child(3) { transition-delay: .12s; }
.mm.open .mn:nth-child(4) { transition-delay: .16s; }
.mm.open .mn:nth-child(5) { transition-delay: .20s; }
.mm.open .mn:nth-child(6) { transition-delay: .24s; }
.mn:hover { color: var(--blue); }
.mn-cta { color: var(--blue); }

.mm-foot {
    position: absolute; bottom: 40px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    opacity: 0; transition: opacity .4s .24s;
}
.mm.open .mm-foot { opacity: 1; }
.mm-foot a {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--gr); transition: color .3s;
}
.mm-foot a:hover { color: var(--dk); }
.mm-wa { color: var(--grn) !important; }

/* ==========================================
   BUTTONS
   Fix: magnetic transform & hover-scale no longer collide —
   .t-btn no longer uses CSS transform:scale on hover (JS owns transform
   for any element with [data-magnetic]); a non-magnetic glow substitutes.
   ========================================== */
.btn-blue {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--head);
    font-size: 14px; font-weight: 700; letter-spacing: .2px;
    color: var(--w); background: var(--blue);
    padding: 15px 32px; border-radius: var(--r-p);
    border: none;
    transition: background .3s var(--e), box-shadow .3s var(--e), color .3s;
    box-shadow: 0 4px 20px var(--bl-g);
    white-space: nowrap;
    position: relative;
}
.btn-blue:hover {
    background: var(--bl-h); color: var(--w);
    box-shadow: 0 8px 32px var(--bl-g), 0 0 48px rgba(0,41,128,.2);
}
.btn-blue i { transition: transform .3s; }
.btn-blue:hover i { transform: translateX(4px); }

.btn-glow { animation: btnGlow 2.5s ease-in-out infinite alternate; }
@keyframes btnGlow {
    from { box-shadow: 0 4px 20px var(--bl-g); }
    to   { box-shadow: 0 4px 20px var(--bl-g), 0 0 32px rgba(0,41,128,.25), 0 0 64px rgba(0,41,128,.10); }
}
.btn-glow:hover { animation: none; }

.btn-line {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--head);
    font-size: 14px; font-weight: 600;
    color: var(--dk);
    padding: 15px 32px; border-radius: var(--r-p);
    border: 2px solid var(--bd);
    background: transparent;
    transition: border-color .3s var(--e), color .3s var(--e);
    white-space: nowrap;
}
.btn-line:hover { border-color: var(--blue); color: var(--blue); }
.btn-line i { transition: transform .3s; }
.btn-line:hover i { transform: translateY(3px); }

/* Elements controlled by JS magnetic effect get transform ownership
   handed to JS — CSS must not also animate transform on them */
[data-magnetic] { will-change: transform; }

/* ==========================================
   01. HERO
   ========================================== */
.hero {
    background: var(--w);
    padding-top: calc(var(--nh) + 60px);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.hero-text {
    text-align: center;
    padding: 0 var(--pad-sm) var(--pad-sm);
    max-width: 900px;
    margin: 0 auto;
    position: relative; z-index: var(--z-content);
}
.hero-h1 { margin-bottom: 16px; }

.hl {
    display: block;
    font-family: var(--head);
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 800;
    color: var(--dk);
    letter-spacing: -3px;
    line-height: 1.02;
    opacity: 0; transform: translateY(32px);
}
.hl-dim { color: rgba(0,0,0,.3); }

.hero-p {
    font-family: var(--body);
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 400; color: var(--gr);
    letter-spacing: .2px;
    opacity: 0; transform: translateY(16px);
}

.hero-stats {
    display: flex; justify-content: center;
    gap: 40px; margin-top: 28px;
    opacity: 0; transform: translateY(16px);
}
.hs-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
}
.hs-item strong {
    font-family: var(--head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--blue);
    letter-spacing: -1px; line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hs-item span {
    font-family: var(--head);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px; color: var(--gr2);
}

.hero-reel {
    width: 100%; overflow: hidden;
    margin: 52px 0 0;
    position: relative; z-index: var(--z-content);
    mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reel-track {
    display: flex; gap: 16px;
    width: max-content;
    animation: reel var(--reel-speed) linear infinite;
}
.reel-track:hover { animation-play-state: paused; }
.reel-track.paused { animation-play-state: paused; }

@keyframes reel {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reel-card {
    width: clamp(300px, 30vw, 500px);
    flex-shrink: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--off);
    transition: box-shadow .5s var(--e);
    transform-style: preserve-3d;
}
.reel-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--e);
}
.reel-card:hover img { transform: scale(1.05); }
.reel-card:hover { box-shadow: var(--s3); }

.hero-actions {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
    padding: var(--pad-sm) var(--pad-sm) var(--pad-lg);
    opacity: 0; transform: translateY(16px);
    position: relative; z-index: var(--z-content);
}

/* ==========================================
   02. LOGOS
   ========================================== */
.logos {
    background: var(--w);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    padding: 20px 0; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logos-track {
    display: flex; align-items: center;
    gap: 100px; width: max-content;
    animation: logos var(--logos-speed) linear infinite;
}
@keyframes logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logos-track img {
    height: 30px; width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(.3);
    transition: filter .4s var(--e);
    flex-shrink: 0;
}
.logos-track img:hover { filter: grayscale(0%) opacity(1); }

/* ==========================================
   03. SAME SPACE. NEW IDENTITY.
   ========================================== */
.typo {
    height: 100vh; height: 100svh;
    min-height: 560px;
    position: relative; overflow: hidden;
}
.typo-stage { width: 100%; height: 100%; position: relative; }

.ts {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: var(--pad-lg) var(--pad-sm);
    opacity: 0;
    transition: opacity 1.4s var(--e);
    pointer-events: none;
}
.ts.active { opacity: 1; pointer-events: auto; }
.tt { text-align: center; line-height: 1.05; max-width: 1100px; }

.ts[data-t="minimal"] { background: var(--w); }
.tt-minimal { font-family: var(--head); font-size: clamp(52px, 10vw, 130px); font-weight: 300; color: var(--dk); letter-spacing: -4px; }

.ts[data-t="editorial"] { background: var(--off); }
.tt-editorial { font-family: var(--head); font-size: clamp(44px, 8.5vw, 108px); font-weight: 700; color: var(--dk); letter-spacing: -3px; }
.tt-editorial em { font-style: italic; font-weight: 300; color: var(--blue); }

.ts[data-t="luxury"] { background: var(--dk); }
.tt-luxury { font-family: var(--head); font-size: clamp(48px, 9vw, 116px); font-weight: 800; color: var(--w); letter-spacing: -3px; }

.ts[data-t="outline"] { background: var(--w); }
.tt-outline { font-family: var(--head); font-size: clamp(48px, 9vw, 120px); font-weight: 800; letter-spacing: -3px; color: transparent; -webkit-text-stroke: 2px var(--dk); }

.ts[data-t="arch"] { background: var(--w); }
.tt-arch { font-family: var(--head); font-size: clamp(13px, 2.8vw, 32px); font-weight: 400; color: var(--dk); letter-spacing: clamp(6px, 3vw, 28px); text-transform: uppercase; line-height: 2.0; border-top: 1px solid rgba(0,0,0,.15); border-bottom: 1px solid rgba(0,0,0,.15); padding: 32px 0; }

.ts[data-t="bold"] { background: var(--blue); }
.tt-bold { font-family: var(--head); font-size: clamp(64px, 13vw, 172px); font-weight: 800; color: var(--w); letter-spacing: -5px; line-height: .92; }

.ts[data-t="exp"] { background: var(--w); }
.tt-exp { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px; max-width: 900px; text-align: left; }
.tt-exp span { font-family: var(--head); font-weight: 800; letter-spacing: -2px; line-height: 1.0; }
.tt-exp span:nth-child(1) { font-size: clamp(36px, 6.5vw, 82px); color: var(--dk); align-self: end; }
.tt-exp span:nth-child(2) { font-size: clamp(36px, 6.5vw, 82px); color: transparent; -webkit-text-stroke: 1.5px var(--dk); align-self: end; text-align: right; }
.tt-exp span:nth-child(3) { font-size: clamp(28px, 5vw, 64px); color: var(--blue); }
.tt-exp span:nth-child(4) { font-size: clamp(52px, 9vw, 116px); color: var(--dk); text-align: right; }

.typo-dots {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
}
.typo-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(0,0,0,.15);
    transition: all .4s var(--e); cursor: pointer;
}
.typo-dot.active { background: var(--blue); width: 20px; border-radius: 3px; }
.typo.typo-dark .typo-dot { background: rgba(255,255,255,.25); }
.typo.typo-dark .typo-dot.active { background: var(--w); }

/* ==========================================
   04. WHAT WE DO — Glass cards
   ========================================== */
.svc { padding: var(--sec) 0; background: var(--off); }
.svc-in { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-md); }

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sc {
    position: relative;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 52px 44px;
    text-decoration: none; color: inherit;
    min-height: 220px; overflow: hidden;
    border-radius: var(--r-xl);
    transition: transform .4s var(--e), box-shadow .4s var(--e);
}
.sc.glass-card { border: 1px solid rgba(255,255,255,.6); }
.sc:hover {
    transform: translateY(-4px);
    box-shadow: var(--s3), 0 0 40px var(--bl-g);
}

.sc::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--blue);
    border-radius: inherit;
    transform: translateY(101%);
    transition: transform .5s var(--e);
    z-index: 0;
}
.sc:hover::before { transform: translateY(0); }
.sc:active::before { transform: translateY(0); }

.sc::after {
    content: attr(data-num);
    position: absolute; bottom: -20px; right: -10px;
    font-family: var(--head);
    font-size: 120px; font-weight: 800;
    color: rgba(0,0,0,.04); line-height: 1;
    pointer-events: none; user-select: none;
    z-index: 0; transition: color .35s;
}
.sc:hover::after { color: rgba(255,255,255,.06); }

/* Fix: explicit border restored on the thumb itself (was lost in a
   previous revision and only relied on .acrylic-edge's box-shadow) */
.sc-thumb {
    width: 56px; height: 56px;
    border-radius: var(--r); overflow: hidden;
    margin-bottom: 20px;
    position: relative; z-index: 1;
    opacity: .7; transition: opacity .35s;
}
.sc:hover .sc-thumb, .sc:active .sc-thumb { opacity: 1; }
.sc-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sc-name {
    font-family: var(--head);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700; color: var(--dk);
    letter-spacing: -.4px; line-height: 1.25;
    position: relative; z-index: 1;
    transition: color .35s;
}
.sc:hover .sc-name, .sc:active .sc-name { color: var(--w); }

.sc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--head);
    font-size: 13px; font-weight: 600;
    color: var(--blue);
    position: relative; z-index: 1;
    margin-top: 24px;
    transition: color .35s, gap .3s;
}
.sc:hover .sc-link, .sc:active .sc-link { color: rgba(255,255,255,.8); gap: 12px; }
.sc-link i { transition: transform .3s; }
.sc:hover .sc-link i { transform: translateX(4px); }

/* ==========================================
   05. WHY AURA
   ========================================== */
.why { position: relative; background: var(--w); }
.why-pin { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.why-img-side { position: relative; overflow: hidden; background: var(--off); }
.why-imgs { position: absolute; inset: 0; }
.wi {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s var(--e), transform 1.8s var(--e);
}
.wi.active { opacity: 1; transform: scale(1); }

.why-txt-side {
    padding: var(--pad-lg) 72px;
    display: flex; flex-direction: column;
    justify-content: center; overflow-y: auto;
}
.why-sh { text-align: left !important; font-size: clamp(22px, 2.5vw, 36px) !important; margin-bottom: var(--pad-sm); animation: none; }
.why-pts { display: flex; flex-direction: column; }

.wp {
    padding: 28px 0;
    border-bottom: 1px solid var(--bd);
    opacity: .25; transform: translateX(20px);
    transition: opacity .6s var(--e), transform .6s var(--e);
}
.wp:first-child { border-top: 1px solid var(--bd); }
.wp.active { opacity: 1; transform: translateX(0); }
.wp-n {
    display: block; font-family: var(--head);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gr3); margin-bottom: 10px;
}
.wp.active .wp-n { color: var(--blue); }
.wp h3 { font-family: var(--head); font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; color: var(--dk); margin-bottom: 10px; letter-spacing: -.3px; }
.wp p { font-size: 14px; color: var(--gr); line-height: 1.75; font-weight: 400; }

/* ==========================================
   06. OUR WORK — 3D tilt bento
   ========================================== */
.work { padding: var(--sec) 0; background: var(--off); }
.work-in { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 10px;
}

.bi {
    border-radius: var(--r-lg); overflow: hidden;
    cursor: pointer; position: relative;
    background: var(--gr3);
    transform-style: preserve-3d;
    transition: box-shadow .4s var(--e);
}
.bi::after {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid transparent;
    border-radius: var(--r-lg);
    transition: border-color .35s var(--e), box-shadow .35s var(--e);
}
.bi:hover::after {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px var(--blue), 0 0 32px var(--bl-g);
}
.bi:hover { box-shadow: var(--s3); }

.bi img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--e);
}
.bi:hover img { transform: scale(1.07); }

.bi-lg   { grid-column: span 2; }
.bi-tall { grid-row:    span 2; }
.bi-wide { grid-column: span 2; }

.bi-expand {
    position: absolute; bottom: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--w); font-size: 13px; z-index: 2;
    opacity: 0; transform: scale(.8);
    transition: opacity .3s var(--e), transform .3s var(--e);
    pointer-events: none;
}
.bi:hover .bi-expand { opacity: 1; transform: scale(1); }

/* ==========================================
   LIGHTBOX
   ========================================== */
.lb {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    z-index: var(--z-lb);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--e), visibility .4s;
}
.lb.open { opacity: 1; visibility: visible; }

.lb-img {
    max-width: 90vw; max-height: 80vh;
    border-radius: var(--r-lg);
    object-fit: contain;
    box-shadow: var(--s4);
}
/* Fix: glass-pill provides bg+blur+border+radius; lb-caption only adds
   text styling + spacing, no more conflicting padding/background */
.lb-caption {
    color: rgba(255,255,255,.85);
    font-family: var(--head);
    font-size: 13px; font-weight: 500;
    text-align: center; margin-top: 16px;
    max-width: 600px;
    padding: 10px 24px;
    opacity: 0; transition: opacity .4s .2s;
}
.lb.open .lb-caption { opacity: 1; }

.lb-x, .lb-p, .lb-n {
    position: absolute;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--w); font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s;
}
.lb-x { top: 24px; right: 24px; }
.lb-p { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-n { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-x:hover, .lb-p:hover, .lb-n:hover { background: var(--blue); border-color: var(--blue); }

/* ==========================================
   07. HOW IT WORKS
   ========================================== */
.proc { background: var(--w); position: relative; }
.proc-sh { padding-top: var(--sec); margin-bottom: 0; position: relative; z-index: 1; }
.proc-pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; }

.ps {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    opacity: 0; pointer-events: none;
    transition: opacity .8s var(--e);
}
.ps.active { opacity: 1; pointer-events: auto; }

.ps-img { position: relative; overflow: hidden; background: var(--off); }
.ps-img img {
    width: 100%; height: 100%;
    object-fit: cover; transform: scale(1.04);
    transition: transform 1.2s var(--e);
}
.ps.active .ps-img img { transform: scale(1); }

.ps-txt {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: var(--pad-lg); background: var(--w);
    position: relative; overflow: hidden;
}
.ps-num {
    display: block; font-family: var(--head);
    font-size: clamp(120px, 20vw, 240px);
    font-weight: 800; color: rgba(0,41,128,.08);
    line-height: 1; position: absolute;
    bottom: -20px; right: 20px;
    user-select: none; letter-spacing: -6px;
}
.ps-h {
    font-family: var(--head);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 800; color: var(--dk);
    letter-spacing: -2px; line-height: 1.1;
    position: relative; z-index: 1;
}

/* ==========================================
   08. TESTIMONIALS
   Fix: dot-progress ring radius driven by CSS var so SVG circle
   (set dynamically by JS using the same number) never desyncs.
   ========================================== */
.testi { padding: var(--sec) 0; background: var(--off); }
.testi-in { max-width: 800px; margin: 0 auto; padding: 0 var(--pad-sm); text-align: center; }

.testi-slider { overflow: hidden; }
.testi-track { display: flex; transition: transform .65s var(--e); will-change: transform; }
.testi-slide {
    min-width: 100%; padding: 20px 0 28px;
    display: flex; flex-direction: column; align-items: center;
}

.t-photo {
    width: 140px; height: 140px;
    border-radius: 50%; overflow: hidden; flex-shrink: 0;
    margin-bottom: 32px; background: var(--blue);
    border: 4px solid var(--w);
    box-shadow: 0 0 0 1px var(--bd), var(--s3);
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.t-photo::after {
    content: attr(data-initials);
    font-family: var(--head); font-size: 36px;
    font-weight: 700; color: rgba(255,255,255,.9);
    position: absolute; z-index: 0;
}
.t-img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
    position: relative; z-index: 1;
}

.t-q {
    font-family: var(--head);
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 500; color: var(--dk);
    line-height: 1.65; letter-spacing: -.2px;
    margin-bottom: 24px; max-width: 680px;
}
.t-info { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.t-info strong { font-family: var(--head); font-size: 15px; font-weight: 700; color: var(--dk); }
.t-info span { font-size: 13px; color: var(--gr); }

.testi-nav {
    display: flex; align-items: center;
    justify-content: center; gap: 12px;
    margin-top: 36px;
}

.testi-dots { display: flex; gap: 10px; align-items: center; }
.testi-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: transparent;
    border: none;
    transition: all .35s var(--e);
    cursor: pointer;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.testi-dot::before {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bd);
    transition: background .3s;
}
.testi-dot.active::before { background: var(--blue); }

.testi-dot .dot-progress {
    position: absolute; inset: 0;
    width: 16px; height: 16px;
    transform: rotate(-90deg);
}
.testi-dot .dot-progress circle {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    /* stroke-dasharray/offset set inline by JS using the actual radius,
       so it can never desync from the drawn circle */
    transition: stroke-dashoffset .1s linear;
}
.testi-dot.active .dot-progress circle.animate {
    animation: dotProgress linear forwards;
    animation-duration: var(--testi-interval, 6s);
}
@keyframes dotProgress {
    from { stroke-dashoffset: var(--ring-len, 44); }
    to   { stroke-dashoffset: 0; }
}

.t-btn {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--bd);
    background: var(--w); color: var(--dk);
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s var(--e), border-color .3s var(--e), color .3s var(--e), box-shadow .3s var(--e);
}
.t-btn:hover {
    background: var(--blue); color: var(--w);
    border-color: var(--blue);
    box-shadow: 0 0 24px var(--bl-g);
}

/* ==========================================
   09. GET IN TOUCH
   ========================================== */
.contact { background: var(--dk); position: relative; overflow: hidden; }
.contact-in { max-width: 1280px; margin: 0 auto; padding: var(--sec) var(--pad-md); position: relative; z-index: var(--z-content); }

.c-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.c-card {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; padding: 44px 20px;
    border-radius: var(--r-xl);
    color: var(--w); text-decoration: none;
    text-align: center; overflow: hidden;
    transition:
        border-color .4s var(--e),
        box-shadow .4s var(--e),
        transform .35s var(--e);
}
.c-card > i {
    font-size: 28px;
    color: rgba(255,255,255,.45);
    position: relative; z-index: 1;
    transition: color .4s var(--e), transform .4s var(--e);
}
.c-label {
    font-family: var(--head);
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.35);
    position: relative; z-index: 1;
    transition: color .4s;
}
.c-val {
    font-family: var(--body);
    font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,.75);
    line-height: 1.5; text-align: center;
    position: relative; z-index: 1;
    transition: color .4s; word-break: break-word;
}
.c-nowrap { white-space: nowrap; word-break: normal; }

.c-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,41,128,.22) 0%, transparent 70%);
    opacity: 0; transition: opacity .4s var(--e);
    pointer-events: none; z-index: 0;
}

.c-card:hover {
    border-color: rgba(0,64,204,.55);
    box-shadow:
        0 0 0 1px rgba(0,64,204,.18),
        0 0 28px rgba(0,64,204,.18),
        0 0 56px rgba(0,64,204,.08),
        0 8px 32px rgba(0,0,0,.28);
    transform: translateY(-5px);
}
.c-card:hover .c-glow { opacity: 1; }
.c-card:hover > i { color: #4d8aff; transform: scale(1.12); }
.c-card:hover .c-label { color: rgba(255,255,255,.5); }
.c-card:hover .c-val { color: var(--w); }

.c-wa:hover {
    border-color: rgba(37,211,102,.45);
    box-shadow: 0 0 28px rgba(37,211,102,.14), 0 8px 32px rgba(0,0,0,.28);
}
.c-wa:hover .c-glow {
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(37,211,102,.14) 0%, transparent 70%);
    opacity: 1;
}
.c-wa:hover > i { color: var(--grn); }

.c-map {
    margin-top: 24px; border-radius: var(--r-xl);
    overflow: hidden; border: 1px solid rgba(255,255,255,.08);
    position: relative; z-index: var(--z-content);
    /* isolation creates a new stacking/event context so the custom
       cursor's document-level mouseleave/enter tracking is unaffected
       by the iframe boundary underneath */
    isolation: isolate;
}
.c-map iframe { display: block; width: 100%; min-height: 280px; }

/* ==========================================
   10. START YOUR PROJECT
   ========================================== */
.form-sec { padding: var(--sec) 0; background: var(--off); }
.form-in { max-width: 720px; margin: 0 auto; padding: 0 var(--pad-sm); }

.form-trust {
    text-align: center; font-family: var(--head);
    font-size: 13px; font-weight: 500; color: var(--gr);
    margin-bottom: 24px;
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
}
.form-trust i { color: var(--blue); }

.form-glass { border-radius: var(--r-xl); padding: 40px 36px; }

.f-tabs-wrap {
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin-bottom: 32px;
}
.f-tabs-wrap::-webkit-scrollbar { display: none; }

.f-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.f-tab {
    padding: 9px 20px;
    border: 1.5px solid var(--bd);
    border-radius: var(--r-p);
    font-family: var(--head);
    font-size: 12px; font-weight: 600;
    letter-spacing: .2px; color: var(--gr);
    background: rgba(255,255,255,.8);
    cursor: pointer;
    transition: all .25s var(--e);
    white-space: nowrap; flex-shrink: 0;
}
.f-tab:hover { border-color: var(--blue); color: var(--blue); }
.f-tab.active {
    background: var(--blue); border-color: var(--blue); color: var(--w);
    box-shadow: 0 0 16px var(--bl-g);
}

.form { display: flex; flex-direction: column; gap: 12px; }
.form.sending { opacity: .5; pointer-events: none; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { position: relative; }

.fg input, .fg textarea {
    width: 100%; padding: 15px 16px;
    background: rgba(255,255,255,.8);
    border: 1.5px solid var(--bd);
    border-radius: var(--r);
    font-family: var(--body);
    font-size: 16px; font-weight: 400;
    color: var(--dk); outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
    -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,41,128,.08), 0 0 16px var(--bl-g);
    background: var(--w);
}
.fg label {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--body);
    font-size: 14px; color: var(--gr2);
    pointer-events: none;
    transition: all .2s;
    padding: 0 4px; background: transparent;
}
.fg textarea ~ label { top: 16px; transform: none; }
.fg input:not(:placeholder-shown) ~ label,
.fg input:focus ~ label,
.fg textarea:not(:placeholder-shown) ~ label,
.fg textarea:focus ~ label {
    top: 0; transform: translateY(-50%);
    font-size: 10px; color: var(--blue);
    font-weight: 600; letter-spacing: .4px;
    background: var(--w);
}
.fg textarea { resize: vertical; min-height: 90px; }

.fe { display: none; font-size: 11px; color: #c0392b; margin-top: 4px; font-weight: 500; }
.fg.inv input, .fg.inv textarea { border-color: #c0392b; background: rgba(192,57,43,.03); }
.fg.inv .fe { display: block; }
.fg.inv label { color: #c0392b !important; }
.opt { font-size: 11px; color: var(--gr2); font-weight: 400; }

.f-btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; border-radius: var(--r);
    font-family: var(--head);
    font-size: 15px; font-weight: 700; letter-spacing: .2px;
    background: var(--blue); color: var(--w);
    border: none;
    transition: background .3s var(--e), box-shadow .3s var(--e);
    box-shadow: 0 4px 20px var(--bl-g);
}
.f-btn:hover:not(:disabled) {
    background: var(--bl-h);
    box-shadow: 0 8px 32px var(--bl-g), 0 0 48px rgba(0,41,128,.2);
}
.f-btn:disabled { opacity: .5; cursor: not-allowed; }
.f-btn.ld .fb-t { display: none; }
.f-btn.ld .fb-l { display: flex; }
.fb-t { display: flex; align-items: center; gap: 8px; }
.fb-l { display: none; align-items: center; gap: 8px; }

.f-ok {
    display: none; flex-direction: column;
    align-items: center; text-align: center;
    gap: 12px; padding: var(--pad-sm) 0;
}
.f-ok:not([hidden]) { display: flex; }
.fok-icon {
    width: 60px; height: 60px;
    background: var(--grn); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--w); font-size: 22px; margin-bottom: 8px;
    box-shadow: 0 0 32px rgba(37,211,102,.3);
}
.f-ok h3 { font-family: var(--head); font-size: 26px; font-weight: 800; color: var(--dk); }
.f-ok p { font-size: 14px; color: var(--gr); }
.fok-wa-notice {
    font-size: 13px; color: var(--grn); font-weight: 500;
    display: flex; align-items: center; gap: 6px;
    animation: fadeInOut 3s ease forwards;
}
@keyframes fadeInOut {
    0% { opacity: 0; } 20% { opacity: 1; }
    80% { opacity: 1; } 100% { opacity: .3; }
}
.fok-wa {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: var(--r-p);
    font-family: var(--head); font-size: 13px; font-weight: 600;
    color: var(--grn); border: 2px solid var(--grn);
    background: transparent; transition: all .3s; margin-top: 8px;
}
.fok-wa:hover { background: var(--grn); color: var(--w); }
.fok-reset {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: var(--r-p);
    font-family: var(--head); font-size: 12px; font-weight: 600;
    color: var(--gr); border: 1.5px solid var(--bd);
    background: var(--w); cursor: pointer;
    transition: all .3s var(--e); margin-top: 8px;
}
.fok-reset:hover { border-color: var(--blue); color: var(--blue); }

/* ==========================================
   11. FOOTER
   Fix: credit link upgraded to a tasteful glass badge with a small
   live-style dot, builder-credit done without competing for attention.
   ========================================== */
.footer { background: var(--b); }
.footer-in { max-width: 1300px; margin: 0 auto; padding: var(--sec) var(--pad-md) 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }

.f-logo {
    height: 28px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1); opacity: .65;
    margin-bottom: 16px;
}
.f-brand p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 220px; margin-bottom: 20px; }

.f-social { display: flex; gap: 10px; }
.f-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.05);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: rgba(255,255,255,.4);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s var(--e);
}
.f-social a:hover {
    background: var(--blue); color: var(--w);
    border-color: var(--blue); transform: translateY(-3px);
    box-shadow: 0 0 20px var(--bl-g);
}

.f-col h4 {
    font-family: var(--head); font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,.25); margin-bottom: 18px;
}
.f-col a, .f-col address {
    display: block; font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,.5); padding: 4px 0;
    line-height: 1.7; transition: color .25s;
}
.f-col a:hover { color: var(--bl-h); }

.footer-btm {
    display: flex; justify-content: space-between;
    align-items: center; gap: 12px;
    padding: 20px var(--pad-md);
    border-top: 1px solid rgba(255,255,255,.07);
    max-width: 1300px; margin: 0 auto;
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,.22);
    flex-wrap: wrap;
}
.footer-btm a { color: rgba(255,255,255,.22); transition: color .3s; }
.footer-btm a:hover { color: var(--bl-h); }

.footer-credit { display: flex; }
.credit-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-p);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    color: rgba(255,255,255,.45) !important;
    transition: background .3s var(--e), border-color .3s var(--e), color .3s var(--e), box-shadow .3s var(--e);
}
.credit-badge strong { color: rgba(255,255,255,.75); font-weight: 700; }
.credit-badge:hover {
    background: rgba(0,64,204,.12);
    border-color: rgba(0,64,204,.4);
    color: rgba(255,255,255,.7) !important;
    box-shadow: 0 0 20px rgba(0,64,204,.15);
}
.credit-badge:hover strong { color: var(--w); }
.credit-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--grn);
    box-shadow: 0 0 6px var(--grn);
    flex-shrink: 0;
    animation: creditPulse 2s ease-in-out infinite;
}
@keyframes creditPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* ==========================================
   WA FLOAT
   ========================================== */
.wa {
    position: fixed; bottom: 28px; right: 24px;
    width: 56px; height: 56px;
    background: var(--grn); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--w); font-size: 26px;
    z-index: var(--z-wa); text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    transition: transform .3s var(--e);
}
.wa:hover { transform: scale(1.1); color: var(--w); }
.wa-ring {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--grn);
    animation: waR 2.2s ease-out infinite; pointer-events: none;
}
@keyframes waR {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.65); opacity: 0; }
}

/* ==========================================
   MOBILE BAR
   ========================================== */
.mbar {
    display: none; position: fixed; bottom: 0; left: 0;
    width: 100%; z-index: var(--z-mbar);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--bd);
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
}
.mb {
    flex: 1; display: flex; align-items: center;
    justify-content: center; gap: 6px;
    padding: 11px 8px; border-radius: var(--r);
    font-family: var(--head); font-size: 12px; font-weight: 700;
    background: var(--dk); color: var(--w);
    min-height: 44px; letter-spacing: .2px;
    transition: background .3s;
}
.mb:hover { color: var(--w); }
.mb-wa { background: var(--grn); }
.mb-wa:hover { background: var(--grn-h); }
.mb-q { background: var(--blue); }
.mb-q:hover { background: var(--bl-h); }

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
    :root { --sec: 96px; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .why-pin { grid-template-columns: 1fr; }
    .why-img-side { height: 50vh; position: relative; min-height: 320px; }
    .why-imgs { position: absolute; inset: 0; }
    .why-txt-side { padding: 64px var(--pad-sm); }
    .why-sh { text-align: center !important; }
    .wp { opacity: 1; transform: none; }
    .ps { grid-template-columns: 1fr 1fr; }
    .ps-txt { padding: 60px var(--pad-sm); }
    .c-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .bento { grid-template-columns: repeat(3, 1fr); }
    .wa { bottom: 80px; }
    .cursor { display: none !important; }
    body.has-cursor { cursor: auto; }
    body.has-cursor a, body.has-cursor button { cursor: pointer; }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 768px) {
    :root { --sec: 72px; --nh: 60px; --nhs: 56px; }
    #services, #why, #work, #process, #testimonials, #contact, #form { scroll-margin-top: 60px; }
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .burger { display: flex; }
    .nav-logo-img { height: 26px; }

    .hero { padding-top: calc(60px + 40px); }
    .hero-text { padding: 0 var(--pad-xs) 36px; }
    .hl { font-size: clamp(32px, 9vw, 52px); letter-spacing: -2px; }
    .hero-p { font-size: 14px; }
    .hero-stats { gap: 24px; margin-top: 20px; }
    .hs-item strong { font-size: clamp(20px, 6vw, 28px); }
    .aurora-blob { filter: blur(60px); }
    .reel-card { width: clamp(220px, 55vw, 320px); }
    .hero-actions { padding: 32px var(--pad-xs) 56px; flex-direction: column; align-items: center; }
    .hero-actions .btn-blue, .hero-actions .btn-line { width: 100%; justify-content: center; }

    .logos-track { gap: 60px; }
    .logos-track img { height: 24px; }

    .typo { height: 65vh; height: 65svh; min-height: 400px; }
    .ts { padding: 60px var(--pad-xs); }
    .tt-minimal { font-size: clamp(40px, 10vw, 64px); letter-spacing: -2px; }
    .tt-editorial { font-size: clamp(34px, 9vw, 56px); letter-spacing: -2px; }
    .tt-luxury { font-size: clamp(40px, 10vw, 64px); letter-spacing: -2px; }
    .tt-outline { font-size: clamp(40px, 10vw, 64px); letter-spacing: -2px; -webkit-text-stroke: 1.5px var(--dk); }
    .tt-arch { font-size: clamp(11px, 3vw, 20px); letter-spacing: clamp(3px, 1.5vw, 12px); }
    .tt-bold { font-size: clamp(56px, 14vw, 100px); letter-spacing: -3px; }
    .tt-exp span:nth-child(1) { font-size: clamp(24px, 7vw, 48px); }
    .tt-exp span:nth-child(2) { font-size: clamp(24px, 7vw, 48px); }
    .tt-exp span:nth-child(3) { font-size: clamp(20px, 5.5vw, 36px); }
    .tt-exp span:nth-child(4) { font-size: clamp(36px, 9vw, 72px); }

    .svc-in { padding: 0 20px; }
    .svc-grid { grid-template-columns: 1fr; }
    .sc { min-height: 160px; padding: 36px 28px; }
    .form-glass { padding: 28px 20px; }

    .why-img-side { height: 40vh; min-height: 260px; }
    .why-txt-side { padding: var(--pad-sm) var(--pad-xs); }

    .work-in { padding: 0 16px; }
    .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .bi-lg, .bi-wide { grid-column: span 2; }
    .bi-tall { grid-row: span 1; }
    .bi-expand { opacity: .7; transform: scale(1); }

    .proc-pin { height: auto; }
    .ps { position: relative; opacity: 1 !important; pointer-events: auto !important; grid-template-columns: 1fr; min-height: auto; }
    .ps-img { height: 55vw; min-height: 220px; }
    .ps-txt { padding: 40px var(--pad-xs) 56px; }
    .ps-num { font-size: clamp(80px, 20vw, 120px); }
    .ps-h { font-size: clamp(28px, 7vw, 44px); letter-spacing: -1.5px; }

    .testi-in { padding: 0 var(--pad-xs); }
    .t-photo { width: 110px; height: 110px; }
    .t-photo::after { font-size: 28px; }
    .t-q { font-size: clamp(15px, 4.5vw, 20px); }

    .contact-in { padding: var(--sec) 20px; }
    .c-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .c-card { padding: 28px 14px; }
    .c-card > i { font-size: 22px; }
    .c-val { font-size: 12px; }
    .c-map iframe { min-height: 200px; }
    .spotlight { display: none; }

    .form-in { padding: 0 20px; }
    .f-row { grid-template-columns: 1fr; }
    .f-tabs { flex-wrap: nowrap; justify-content: flex-start; }

    .footer-in { padding: 64px var(--pad-xs) var(--pad-sm); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-btm { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
    .footer-credit { justify-content: center; }

    .wa { display: none; }
    .mbar { display: flex; }
    .cursor { display: none !important; }
    body.has-cursor { cursor: auto; }
    body.has-cursor a, body.has-cursor button { cursor: pointer; }
}

/* ==========================================
   RESPONSIVE — SMALL
   ========================================== */
@media (max-width: 480px) {
    :root { --sec: 60px; }
    .hl { font-size: clamp(28px, 10vw, 44px); }
    .hero-stats { gap: 16px; }
    .c-cards { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .bi-lg, .bi-wide, .bi-tall { grid-column: span 1; grid-row: span 1; }
    .sh { font-size: clamp(24px, 7vw, 36px); margin-bottom: 40px; }
}

/* ==========================================
   WIDE
   ========================================== */
@media (min-width: 1440px) {
    .nav { padding: 0 var(--pad-lg); }
    .hero-text { max-width: 1100px; }
    .svc-in { max-width: 1400px; padding: 0 var(--pad-lg); }
    .why-txt-side { padding: 100px 100px; }
    .ps-txt { padding: var(--pad-lg) 100px; }
    .contact-in { padding: var(--sec) var(--pad-lg); }
}