/* =====================================================================
   ATLAW MARKETING — SHARED STYLESHEET
   Used across every page. Edit once, applies everywhere.
   ===================================================================== */
:root {
    --black: #000000;
    --void: #04050f;
    --orange: #FF6B35;
    --blue: #0066FF;
    --purple: #9B5CFF;
    --gold: #FFD700;
    --pink: #FF4D8F;
    --teal: #00D4AA;
    --cyan: #00D4FF;
    --white: #F0F2FF;
    --dim: #8a8fb0;
    --dim2: #585d80;
    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-bg-hi: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.09);
    --ease: cubic-bezier(.16, .84, .44, 1);
    --ease2: cubic-bezier(.65, 0, .35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html,
body {
    background: var(--void);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

::selection {
    background: var(--gold);
    color: #000;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.01em;
}

.mono {
    font-family: 'Space Mono', monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-nar {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============ SCROLL INDICATOR STARS ============ */
#scroll-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.scroll-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

.scroll-star.active {
    opacity: 0.6;
}

.scroll-star.bright {
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* ============ COSMOS LAYERS ============ */
#cosmos-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ============ SHAPE OVERLAY ============ */
#shape-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.shape-item {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.shape-item.visible {
    opacity: 1;
}

.shape-item.circle {
    border-radius: 50%;
}

.shape-item.square {
    border-radius: 4px;
}

.shape-item.triangle {
    width: 0 !important;
    height: 0 !important;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 215, 0, 0.05);
    background: transparent !important;
}

.shape-item.diamond {
    transform: rotate(45deg);
    border-radius: 2px;
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 40%, transparent 15%, rgba(1, 1, 6, 0.85) 100%);
}

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ SCROLL PROGRESS ============ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue), var(--cyan), var(--teal));
    background-size: 400% 100%;
    animation: progressGrad 5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 107, 53, 0.1);
    z-index: 10000;
}

@keyframes progressGrad {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

#stage-indicator {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

#stage-indicator .si-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: background .5s var(--ease), box-shadow .5s var(--ease), width .5s var(--ease);
    cursor: pointer;
}

#stage-indicator .si-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

@media(max-width:960px) {
    #stage-indicator {
        display: none;
    }
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
}

#preloader .pl-word {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 7vw, 4rem);
    letter-spacing: 0.28em;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue), var(--cyan), var(--teal));
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: preloadGrad 4s linear infinite;
}

@media (max-width: 480px) {

    .pl-word {
        font-size: 20px !important;
    }
}

@keyframes preloadGrad {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

#preloader .pl-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dim2);
    opacity: 0;
}

#preloader .pl-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

#preloader .pl-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--blue));
    animation: plfill 1.6s var(--ease) forwards;
}

@keyframes plfill {
    to {
        width: 100%;
    }
}

/* ============ NAVBAR ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    padding: 26px 0;
    transition: padding .4s var(--ease), background-color .5s var(--ease), border-color .5s var(--ease);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 14px 0;
    background: rgba(4, 5, 15, 0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
}

.logo .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(255, 215, 0, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
}

.nav-links a {
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--dim);
    position: relative;
    padding: 4px 0;
    transition: color .3s var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
    transition: width .4s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: transform .3s var(--ease);
}

.btn-glow {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue), var(--cyan));
    background-size: 400% 400%;
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    transition: box-shadow .4s var(--ease), transform .3s var(--ease), background-position .6s ease;
    animation: btnGrad 5s ease infinite;
}

@keyframes btnGrad {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 107, 53, 0.2), 0 0 80px rgba(255, 77, 143, 0.1);
    transform: translateY(-3px) scale(1.02);
}

/* ============ HOLD TO LAUNCH BUTTON ============ */
.btn-hold {
    position: relative;
    overflow: visible;
    cursor: pointer;
    min-width: 220px;
}

.btn-hold .btn-hold-progress {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
    z-index: -1;
}

.btn-hold .btn-hold-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease);
}



.btn-hold .btn-hold-text .hold-hint {
    display: none;
    font-size: 0.6rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.btn-hold .btn-hold-text .hold-hint.show {
    display: inline;
}

.btn-hold .btn-hold-wave {
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid var(--gold);
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.btn-hold .btn-hold-wave.active {
    animation: holdWave 0.8s ease-out forwards;
}

@keyframes holdWave {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.btn-hold .btn-hold-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.btn-hold.holding .btn-hold-ring {
    opacity: 1;
    animation: holdRingPulse 1s ease-in-out infinite;
}

@keyframes holdRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.btn-hold .btn-hold-flash {
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.btn-hold.holding .btn-hold-flash {
    opacity: 1;
}

.btn-hold.launched {
    animation: launchPulse 0.6s var(--ease);
}

.btn-hold.launched .btn-hold-text {
    color: var(--gold);
}

@keyframes launchPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

.btn-hold .btn-hold-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 999px;
}

.btn-hold .btn-hold-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 38px;
    font-size: 0.92rem;
}

.play-ico {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.play-ico svg {
    width: 6px;
    height: 6px;
    margin-left: 1px;
}

.hamburger {
    display: none;
    width: 26px;
    height: 18px;
    position: relative;
    z-index: 6000;
    background: none;
    border: none;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: transform .35s var(--ease), opacity .3s var(--ease), top .35s var(--ease);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* ============ MOBILE SIDEBAR NAV (right side) ============ */
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5450;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 0.84, 0.44, 1), visibility 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
}

#mobile-menu-overlay.open {
    opacity: 1;
    display: block;
}

html.no-scroll {
    overflow: hidden;
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    width: min(86vw, 380px);
    background: linear-gradient(180deg, rgba(8, 9, 22, 0.98), rgba(3, 4, 12, 0.99));
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    border-left: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow: -40px 0 90px rgba(0, 0, 0, 0.65);
    z-index: 5500;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding: 108px 30px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    transform: translateX(100%);
    transition: transform .5s var(--ease);

}

#mobile-menu.open {
    transform: translateX(0);
    display: none;
}

#mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    pointer-events: none;
    background: radial-gradient(360px 180px at 100% 0%, rgba(255, 215, 0, 0.09), transparent 70%);
}

.mm-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.mm-links>li>a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 16px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.07);
    color: var(--white);
    cursor: pointer;
}

.mm-foot {
    margin-top: 34px;
    position: relative;
    z-index: 1;
}

.mm-foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.mm-foot-links a {
    font-size: 0.82rem;
    color: var(--dim);
    font-family: 'Space Mono', monospace;
    letter-spacing: .02em;
}

.mm-foot-links a:hover {
    color: var(--gold);
}

/* Mobile Menu Contact Information */
#mobile-menu .mm-contact {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 8px 0;
}

#mobile-menu .mm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

#mobile-menu .mm-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #6C63FF;
    margin-top: 2px;
}

#mobile-menu .mm-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

#mobile-menu .mm-contact-item a:hover {
    color: #6C63FF;
}

#mobile-menu .mm-contact-item span {
    color: rgba(255, 255, 255, 0.6);
}

/* Social Links */
#mobile-menu .mm-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#mobile-menu .mm-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

#mobile-menu .mm-social a:hover {
    background: rgba(108, 99, 255, 0.15);
    color: #6C63FF;
    transform: translateY(-2px);
}

#mobile-menu .mm-social a svg {
    width: 18px;
    height: 18px;
}

#mobile-menu .mm-foot {
    padding: 16px 24px;
}


/* Mobile menu responsive adjustments */
@media (max-width: 768px) {
    #mobile-menu .mm-contact-item {
        font-size: 13px;
        padding: 6px 0;
    }

    #mobile-menu .mm-contact-item svg {
        width: 18px;
        height: 18px;
    }

    #mobile-menu .mm-social {
        gap: 12px;
        padding: 14px 20px;
    }

    #mobile-menu .mm-social a {
        width: 32px;
        height: 32px;
    }

    #mobile-menu .mm-social a svg {
        width: 16px;
        height: 16px;
    }
}

/* Show hamburger only on mobile */
@media (max-width: 860px) {
    .hamburger {
        display: block;
    }

    #mobile-menu {
        display: none;
        transform: translateX(100%);
    }

    #mobile-menu.open {
        display: flex;
        transform: translateX(0);
    }

    #mobile-menu-overlay {
        display: none;
    }

    #mobile-menu-overlay.open {
        display: block;
    }
}

/* On large screens, hide mobile menu elements */
@media (min-width: 861px) {
    #mobile-menu {
        display: none !important;
    }

    #mobile-menu-overlay {
        display: none !important;
    }
}

/* mobile services accordion */
.mm-sub {
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s var(--ease);
}

.mm-item.open .mm-sub {
    max-height: 420px;
}

.mm-item>a .chev {
    width: 11px;
    height: 11px;
    transition: transform .35s var(--ease);
    flex-shrink: 0;
}

.mm-item.open>a .chev {
    transform: rotate(180deg);
}

.mm-sub>li>a {
    display: block;
    padding: 12px 0 12px 14px;
    font-size: .92rem;
    color: var(--dim);
    border-left: 1px solid rgba(255, 215, 0, .18);
    margin-left: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.mm-sub>li>a:hover {
    color: var(--gold);
}

/* ============ MEGA MENU ============ */
.nav-links>li {
    position: relative;
}

.nav-links>li.has-mega>.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--dim);
    padding: 4px 0;
    cursor: pointer;
}

.nav-links>li.has-mega>.mega-trigger .chev {
    width: 9px;
    height: 9px;
    transition: transform .35s var(--ease);
}

.nav-links>li.has-mega.open>.mega-trigger,
.nav-links>li.has-mega:hover>.mega-trigger {
    color: var(--white);
}

.nav-links>li.has-mega.open>.mega-trigger .chev {
    transform: rotate(180deg);
}

.nav-links>li.has-mega>.mega-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
    transition: width .4s var(--ease);
}

.nav-links>li.has-mega.open>.mega-trigger::after,
.nav-links>li.has-mega:hover>.mega-trigger::after {
    width: 100%;
}

.mega-panel {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-14px);
    top: 84px;
    width: min(1080px, calc(100vw - 48px));
    background: rgba(6, 7, 20, 0.92);
    backdrop-filter: blur(30px) saturate(1.3);
    -webkit-backdrop-filter: blur(30px) saturate(1.3);
    border: 1px solid rgba(255, 215, 0, 0.14);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .03) inset;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
    z-index: 5400;
}

header.scrolled .mega-panel {
    top: 68px;
}

.nav-links>li.has-mega.open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: radial-gradient(600px 200px at 20% 0%, rgba(255, 215, 0, .07), transparent 70%);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mega-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.16);
    transform: translateY(-2px);
}

.mega-item .mi-ico {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, .16), rgba(255, 107, 53, .12));
    border: 1px solid rgba(255, 215, 0, 0.18);
}

.mega-item .mi-ico svg {
    width: 19px;
    height: 19px;
    stroke: var(--gold);
    fill: none;
}

.mega-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: .02em;
}

.mega-item p {
    font-size: 0.73rem;
    line-height: 1.5;
    color: var(--dim);
}

.mega-item .mi-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: .18em;
    color: var(--gold);
    opacity: .75;
    display: block;
    margin-bottom: 4px;
}

.mega-side {
    border-radius: 18px;
    padding: 24px;
    background: linear-gradient(160deg, rgba(255, 215, 0, .09), rgba(155, 92, 255, .08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.mega-side h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 10px;
}

.mega-side p {
    font-size: .8rem;
    color: var(--dim);
    line-height: 1.65;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mega-links a {
    font-size: .78rem;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .25s var(--ease), gap .25s var(--ease);
}

.mega-links a:hover {
    color: var(--gold);
    gap: 13px;
}

@media(max-width:1024px) {
    .mega-panel {
        grid-template-columns: 1fr;
    }

    .mega-side {
        display: none;
    }
}

/* ============ SECTION RHYTHM / ANCHOR OFFSET ============ */
section[id],
.service-card[id] {
    scroll-margin-top: 110px;
}

.section-gap {
    height: 180px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.section-gap::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, 70vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .22), transparent);
}

.service-card.card-flash,
.svc-block.card-flash {
    border-color: rgba(255, 215, 0, .55) !important;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, .35), 0 22px 60px rgba(255, 215, 0, .16);
    transition: box-shadow .5s var(--ease), border-color .5s var(--ease);
}

@media(max-width:860px) {
    .section-gap {
        height: 100px;
    }
}

/* ============ CONTENT LAYERING ============ */
#mobile-menu,
main,
footer {
    position: relative;
    z-index: 2;
}

header#site-header {
    position: fixed;
    z-index: 6000;
}

main>section,
main>div {
    position: relative;
    z-index: 2;
}

.vignette,
.grain-overlay,
#cosmos-canvas,
#shape-overlay,
#scroll-stars {
    pointer-events: none;
}

/* ============ DARK GLASS SECTION PANELS ============ */
.glass-panel {
    position: relative;
    width: min(1344px, calc(100% - 56px));
    margin-inline: auto;
    isolation: isolate;
    overflow: hidden;
    border-radius: 34px;
    padding: 76px 56px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)), rgba(6, 7, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(26px) saturate(1.25);
    -webkit-backdrop-filter: blur(26px) saturate(1.25);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(700px 240px at 12% 0%, rgba(255, 215, 0, .07), transparent 70%), radial-gradient(600px 240px at 88% 100%, rgba(155, 92, 255, .07), transparent 70%);
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: skewX(-14deg);
}

.glass-panel.sheen::after {
    animation: panelSheen 1.5s var(--ease) forwards;
}

@keyframes panelSheen {
    0% {
        left: -60%;
        opacity: 0;
    }

    18% {
        opacity: .9;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

.glass-panel>* {
    position: relative;
    z-index: 2;
}

.section-pad.has-glass {
    padding: 110px 0;
}

.trust-band.has-glass {
    padding: 70px 0;
}

@media(max-width:860px) {
    .glass-panel {
        padding: 44px 0px;
        border-radius: 24px;
        width: calc(100% - 28px);
    }

    .section-pad.has-glass {
        padding: 70px 0;
    }
}

/* ============ SECTION SHARED ============ */
section {
    position: relative;
    z-index: 2;
}

.section-pad {
    padding: 200px 0;
}

.eyebrow-sm {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
    opacity: 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 70px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-head p {
    color: var(--dim);
    font-size: 1.03rem;
    line-height: 1.7;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .15s var(--ease), box-shadow .5s var(--ease);
    will-change: transform;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(255, 77, 143, 0.02), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.06), 0 0 80px rgba(255, 77, 143, 0.04);
    transform: translateY(-8px) scale(1.02);
}

.service-card .data-pulse {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s var(--ease);
}

.service-card:hover .data-pulse {
    opacity: 1;
    animation: dataPulse 2s ease-in-out infinite;
}

@keyframes dataPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.service-card .data-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
    transition: width 0.6s var(--ease);
}

.service-card:hover .data-line {
    width: 100%;
}

.sc-index {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    margin-bottom: 26px;
    display: block;
}

.sc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 77, 143, 0.1), rgba(0, 102, 255, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.service-card h3 {
    font-size: 1.16rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    color: var(--dim);
    font-size: 0.91rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.sc-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sc-link svg {
    width: 12px;
    height: 12px;
    transition: transform .3s var(--ease);
}

.service-card:hover .sc-link svg {
    transform: translateX(4px);
}

/* ============ PROCESS ============ */
.process-band {
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.02) 40%, rgba(155, 92, 255, 0.02) 60%, transparent);
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.process-list {
    display: flex;
    flex-direction: column;
}

.process-row {
    display: grid;
    grid-template-columns: 110px 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 38px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.07);
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
}

.process-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-row:last-child {
    border-bottom: 1px solid rgba(255, 215, 0, 0.07);
}

.process-row:hover {
    background: rgba(255, 215, 0, 0.012);
}

.pr-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dim2);
    letter-spacing: 0.08em;
    padding-top: 4px;
    transition: color .4s var(--ease);
}

.process-row:hover .pr-num {
    color: var(--gold);
}

.pr-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.pr-body p {
    color: var(--dim);
    font-size: 0.95rem;
    line-height: 1.75;
}

.process-row .data-flow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, var(--gold), var(--orange), var(--pink));
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.process-row:hover .data-flow {
    opacity: 0.3;
}

@media(max-width:760px) {
    .process-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-row .data-flow {
        display: none;
    }
}

/* ============ IMMERSIVE RESULTS ============ */
.results-immersive {
    min-height: 135vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 24px;
}

.results-head {
    max-width: 600px;
    margin-bottom: 10px;
}

.results-head h2 {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 18px;
}

.results-head p {
    color: var(--dim);
    font-size: 1.03rem;
    line-height: 1.7;
}

.float-card {
    position: absolute;
    width: 230px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.float-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.float-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
}

.float-card .fc-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 10px;
}

.float-card .fc-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.float-card .fc-desc {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.55;
}

.fc-1 {
    top: 8%;
    left: 6%;
}

.fc-2 {
    top: 20%;
    right: 5%;
}

.fc-3 {
    bottom: 16%;
    left: 9%;
}

.fc-4 {
    bottom: 6%;
    right: 9%;
}

.fc-2 .fc-num {
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
}

.fc-3 .fc-num {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
}

.fc-4 .fc-num {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
}

.float-card .fc-num-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent 70%);
    opacity: 0;
    border-radius: 18px;
    transition: opacity 0.5s var(--ease);
}

.float-card:hover .fc-num-hover {
    opacity: 1;
}

@media(max-width:900px) {
    .float-card {
        position: relative;
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .results-immersive {
        min-height: auto;
        padding: 60px 24px;
    }

    #results-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
}

/* ============ TESTIMONIAL ============ */
.testi-wrap {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    perspective: 1200px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 70px 56px;
    position: relative;
    opacity: 0;
    transform: rotateY(-12deg) translateY(30px);
}

.testi-card.visible {
    opacity: 1;
    transform: rotateY(0) translateY(0);
}

.testi-quote-mark {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 10px;
}

.testi-card p.quote {
    font-size: 1.38rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 36px;
    color: var(--white);
}

.testi-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
}

.testi-person .tp-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testi-person .tp-role {
    font-size: 0.78rem;
    color: var(--dim);
}

/* ============ WHY ATLAW ============ */
.why-band {
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.why-col {
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 38px 34px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
}

.why-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-col.hi {
    border-color: rgba(255, 215, 0, 0.35);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.05), rgba(255, 77, 143, 0.03));
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.05);
}

.why-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-col.hi h4 {
    color: var(--gold);
}

.why-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-col li {
    font-size: 0.93rem;
    color: var(--dim);
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-col.hi li {
    color: var(--white);
}

.why-mark {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.why-mark.x {
    color: var(--dim2);
}

.why-mark.check {
    color: var(--gold);
}

@media(max-width:760px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ TRUST SECTION ============ */
.trust-band {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    background: rgba(255, 215, 0, 0.012);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.trust-item {
    opacity: 0.3;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--dim2);
    text-align: center;
}

.trust-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
    color: var(--gold);
}

.trust-item.visible {
    opacity: 0.4;
}

.trust-item.visible:hover {
    opacity: 0.8;
}

@media(max-width:768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .trust-item {
        font-size: 0.9rem;
    }
}

@media(max-width:480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ INSIGHTS SECTION ============ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
}

.insight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.insight-card .insight-tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.insight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-card p {
    color: var(--dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.insight-card .insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    transition: gap 0.3s var(--ease);
}

.insight-card:hover .insight-link {
    gap: 14px;
}

@media(max-width:860px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ FINAL CTA ============ */
.final-cta {
    position: relative;
    padding: 150px 0 130px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.final-cta .glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.09), rgba(255, 77, 143, 0.06), rgba(0, 102, 255, 0.04), rgba(0, 212, 255, 0.02), transparent 70%);
    filter: blur(20px);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.final-cta h2 {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    font-weight: 700;
    max-width: 16ch;
    margin: 0 auto 20px;
}

.final-cta p {
    color: var(--dim);
    margin-bottom: 44px;
    font-size: 1.03rem;
}

.final-cta .cta-mail {
    margin-top: 30px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--dim2);
}

.final-cta .cta-mail a {
    color: var(--dim);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.final-cta .cta-mail a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ============ FOOTER ============ */
footer {
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    padding: 70px 0 34px;
    background: rgba(2, 2, 10, 0.3);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.foot-brand p {
    color: var(--dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 34ch;
}

.foot-col h4 {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 18px;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-col a {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    transition: opacity .3s, color .3s;
}

.foot-col a:hover {
    opacity: 1;
    color: var(--gold);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    color: var(--dim);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:860px) {
    .nav-links {
        display: none;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .process-row {
        grid-template-columns: 60px 1fr;
    }

    .process-row .pr-body {
        grid-column: 1/-1;
    }
}

@media(max-width:640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 44px 26px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 22px;
    }
}


/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 150px 24px 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.025);
    backdrop-filter: blur(10px);
    margin-bottom: 34px;
    opacity: 0;
}

.eyebrow .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 6.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 16ch;
    margin: 0 auto 28px;
    transform-origin: center;
}

.hero h1 span.grad {
    background: linear-gradient(100deg, var(--gold) 0%, var(--orange) 15%, var(--pink) 30%, var(--purple) 50%, var(--blue) 70%, var(--cyan) 85%, var(--teal) 100%);
    background-size: 400% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradShift 15s ease-in-out infinite;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero .lede {
    max-width: 50ch;
    margin: 0 auto 46px;
    font-size: 1.06rem;
    line-height: 1.7;
    color: var(--dim);
    font-weight: 400;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--dim);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


/* ============ MULTI-PAGE ADDITIONS ============ */
.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 190px 24px 90px;
    position: relative;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(2.5rem, 6.4vw, 5rem);
    line-height: 1.03;
    margin: 22px 0 22px;
    max-width: 16ch;
}

.page-hero .lede {
    max-width: 62ch;
    color: var(--dim);
    font-size: 1.06rem;
    line-height: 1.75;
}

/* ============ MARQUEE ============ */
.marquee-band {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255, 215, 0, 0.012);
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marqueeScroll 32s linear infinite;
}

.marquee-track span {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--dim2);
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 26px;
}

.marquee-track span::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.55rem;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ MORPH SPACES ============ */
.morph-space {
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.morph-label {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.05rem, 2.6vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    opacity: 0;
    padding: 0 24px;
}

.morph-label .accent {
    background: linear-gradient(100deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============ CURSOR GLOW (fallback) ============ */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.07), rgba(155, 92, 255, 0.05), rgba(0, 102, 255, 0.03), transparent 72%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(6px);
    opacity: 0;
    transition: opacity .5s ease;
}

@media(max-width:860px) {
    #cursor-glow {
        display: none;
    }
}

/* ============ CUSTOM CURSOR ============ */
#custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
    mix-blend-mode: difference;
    display: none;
}

#custom-cursor .cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s var(--ease);
}

#custom-cursor .cursor-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: cursorRingPulse 2s ease-in-out infinite;
}

@keyframes cursorRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

#custom-cursor.hover {
    width: 64px;
    height: 64px;
    border-color: var(--orange);
    background: rgba(255, 215, 0, 0.1);
}

#custom-cursor.hover .cursor-dot {
    background: var(--orange);
}

#custom-cursor.data-mode {
    width: 40px;
    height: 40px;
    border-color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

#custom-cursor.data-mode .cursor-dot {
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}

@media(max-width:860px) {
    #custom-cursor {
        display: none !important;
    }
}

.split-word {
    will-change: transform, opacity;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}


.breadcrumb {
    font-family: 'Space Mono', monospace;
    font-size: .68rem;
    letter-spacing: .22em;
    color: var(--dim);
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--gold);
    opacity: .85;
}

.nav-links a.active,
.nav-links>li.has-mega.active>.mega-trigger {
    color: var(--white);
}

.nav-links a.active::after,
.nav-links>li.has-mega.active>.mega-trigger::after {
    width: 100%;
}

.mm-links>li>a.active {
    color: var(--gold);
}

.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
    padding: 54px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.svc-block:first-child {
    border-top: 0;
}

.svc-block.flip .svc-visual {
    order: -1;
}

.svc-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    color: var(--white);
    margin: 12px 0 14px;
    letter-spacing: .01em;
}

.svc-block p {
    color: var(--dim);
    line-height: 1.85;
    margin-bottom: 20px;
}

.svc-points {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 26px;
}

.svc-points li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: .93rem;
    color: var(--dim);
}

.svc-points li::before {
    content: '';
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 0 10px rgba(255, 215, 0, .5);
}

.svc-visual {
    border-radius: 22px;
    padding: 34px;
    min-height: 260px;
    background: linear-gradient(150deg, rgba(255, 215, 0, .08), rgba(155, 92, 255, .07));
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 14px;
    align-content: center;
}

.svc-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.svc-stat b {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--gold);
}

.svc-stat span {
    font-size: .82rem;
    color: var(--dim);
}

@media(max-width:860px) {
    .svc-block {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .svc-block.flip .svc-visual {
        order: 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 46px;
    align-items: start;
}

.about-grid p {
    color: var(--dim);
    line-height: 1.9;
    margin-bottom: 18px;
}

.value-card {
    border-radius: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
}

.value-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 9px;
}

.value-card p {
    font-size: .88rem;
    color: var(--dim);
    line-height: 1.7;
    margin: 0;
}

.value-stack {
    display: grid;
    gap: 16px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 46px;
}

.stat-box {
    text-align: center;
    padding: 26px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
}

.stat-box b {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1rem;
    background: linear-gradient(120deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box span {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dim);
}

@media(max-width:860px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 44px;
    align-items: start;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.field label {
    font-family: 'Space Mono', monospace;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--dim);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    font-family: inherit;
    font-size: .93rem;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, .45);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, .08);
}

.field select option {
    background: #0a0b18;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-note {
    font-size: .78rem;
    color: var(--dim);
    margin-top: 14px;
}

.form-ok {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 13px;
    font-size: .88rem;
    color: var(--white);
    background: rgba(255, 215, 0, .1);
    border: 1px solid rgba(255, 215, 0, .28);
}

.form-ok.show {
    display: block;
}

.contact-card {
    border-radius: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 18px;
}

.contact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: .98rem;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    font-size: .9rem;
    color: var(--dim);
    line-height: 1.75;
}

.contact-card a:hover {
    color: var(--gold);
}

@media(max-width:860px) {

    .contact-grid,
    .field-row {
        grid-template-columns: 1fr;
    }
}

/* ============ SERVICE PAGE: FAQ ============ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .98rem;
}

.faq-q .chev {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform .35s var(--ease);
    color: var(--gold);
}

.faq-item.open .faq-q .chev {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 260px;
}

.faq-a p {
    padding: 0 26px 22px;
    color: var(--dim);
    font-size: .9rem;
    line-height: 1.75;
}

/* ============ RELATED SERVICES STRIP ============ */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:860px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   PINNED HORIZONTAL SCROLL — WIDE CARDS (trionn-style)
   Add this block to the END of assets/style.css
   ===================================================================== */
.hscroll-section {
    position: relative;
    z-index: 2;
}

.hscroll-pin {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
}

.hscroll-head {
    position: relative;
    z-index: 3;
    margin-bottom: 54px;
}

.hscroll-head .hs-count {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--dim);
}

.hscroll-head .hs-count b {
    color: var(--gold);
    font-weight: 700;
}

.hscroll-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hscroll-track {
    display: flex;
    gap: 26px;
    padding: 0 32px;
    will-change: transform;
}

.hscroll-card {
    position: relative;
    flex: 0 0 auto;
    width: min(640px, 76vw);
    height: min(420px, 56vh);
    border-radius: 30px;
    padding: 44px 46px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(6, 7, 18, 0.6);
    backdrop-filter: blur(26px) saturate(1.25);
    -webkit-backdrop-filter: blur(26px) saturate(1.25);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hscroll-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(560px 260px at 8% 0%, color-mix(in srgb, var(--accent-a) 20%, transparent), transparent 70%),
        radial-gradient(480px 260px at 100% 100%, color-mix(in srgb, var(--accent-b) 16%, transparent), transparent 70%);
    opacity: 0.9;
    transition: opacity .5s var(--ease);
}

.hscroll-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
    mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
    opacity: 0.5;
}

.hscroll-card .hs-num {
    position: absolute;
    top: 30px;
    right: 36px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--dim2);
}

.hscroll-card .hs-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-a) 30%, transparent), color-mix(in srgb, var(--accent-b) 18%, transparent));
    border: 1px solid color-mix(in srgb, var(--accent-a) 35%, transparent);
}

.hscroll-card .hs-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-a);
    fill: none;
}

.hscroll-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.hscroll-card p {
    color: var(--dim);
    font-size: 0.96rem;
    line-height: 1.75;
    max-width: 46ch;
}

.hscroll-card .hs-tag {
    position: absolute;
    top: 34px;
    left: 40px;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-a);
    opacity: 0.85;
}

/* progress rail under the track */
.hscroll-rail {
    position: relative;
    z-index: 3;
    width: min(640px, 76vw);
    margin: 34px auto 0 32px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hscroll-rail-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue), var(--cyan));
    border-radius: 2px;
}

@media (max-width: 760px) {
    .hscroll-pin {
        height: auto;
        padding: 60px 0 0;
    }

    .hscroll-card {
        width: 84vw;
        height: auto;
        min-height: 340px;
        padding: 32px 28px;
    }

    .hscroll-track {
        padding: 0 22px;
    }

    .hscroll-rail {
        margin-left: 22px;
        width: 84vw;
    }
}

/* graceful fallback if color-mix() isn't supported */
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
    .hscroll-card::before {
        background:
            radial-gradient(560px 260px at 8% 0%, rgba(255, 215, 0, 0.14), transparent 70%),
            radial-gradient(480px 260px at 100% 100%, rgba(255, 107, 53, 0.12), transparent 70%);
    }

    .hscroll-card .hs-icon {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.12));
        border-color: rgba(255, 215, 0, 0.3);
    }

    .hscroll-card .hs-icon svg {
        stroke: var(--gold);
    }

    .hscroll-card .hs-tag {
        color: var(--gold);
    }
}


/* =====================================================================
   PRELOADER — DENSE 3D PARTICLE FIELD
   Add this block to the END of assets/style.css
   ===================================================================== */
#preloader {
    overflow: hidden;
}

#preloader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}

#preloader-canvas.visible {
    opacity: 1;
}

/* keep the wordmark / bar / sub label above the particles */
#preloader .pl-word,
#preloader .pl-bar,
#preloader .pl-sub {
    position: relative;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    #preloader-canvas {
        display: none;
    }
}

/* ==================================================================
   TESTIMONIAL AUTO SLIDER — NO NAVIGATION
   ================================================================== */
.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -16px;
    padding: 20px 0 10px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    padding: 0 4px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.06);
}

.testi-card .testi-quote-mark {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 4px;
}

.testi-card p.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--white);
    flex: 1;
    margin-bottom: 28px;
}

.testi-card .testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testi-card .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink), var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testi-card .tp-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.testi-card .tp-role {
    font-size: 0.78rem;
    color: var(--dim);
}

/* Progress Bar */
.slider-progress {
    width: 100%;
    max-width: 400px;
    margin: 28px auto 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
    border-radius: 2px;
    transition: width 0.3s linear;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testi-card {
        padding: 36px 28px;
        min-height: 280px;
    }

    .testi-card p.quote {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testi-card {
        padding: 28px 20px;
        min-height: 240px;
    }

    .testi-card p.quote {
        font-size: 0.88rem;
    }

    .slider-progress {
        max-width: 200px;
        margin-top: 20px;
    }
}

/* =====================================================================
   MOBILE RESPONSIVE POLISH
   Reduces oversized padding / oversized text on small screens.
   Keep this block LAST so it wins the cascade.
   ===================================================================== */
@media (max-width: 860px) {
    .hero {
        min-height: auto;
        padding: 120px 20px 56px;
    }

    .hero-cta-row {
        margin-bottom: 50px;
    }

    .page-hero {
        min-height: auto;
        padding: 140px 20px 64px;
    }

    .section-head {
        margin-bottom: 44px;
    }

    .final-cta {
        padding: 90px 0 76px;
    }

    .final-cta .glow-pulse {
        width: 460px;
        height: 460px;
    }

    .morph-space {
        height: auto;
        min-height: 46vh;
        padding: 64px 24px;
    }

    .morph-label {
        letter-spacing: 0.16em;
    }

    .trust-band {
        padding: 56px 0;
    }

    .testi-card {
        padding: 40px 26px;
    }

    .why-col {
        padding: 30px 24px;
    }

    .svc-visual {
        min-height: 200px;
        padding: 26px;
    }

    .contact-card,
    .value-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .section-head h2 {
        margin-bottom: 14px;
    }

    .glass-panel {
        padding: 40px 20px;
    }

    .float-card .fc-num {
        font-size: 1.7rem;
    }

    .testi-quote-mark,
    .testi-card .testi-quote-mark {
        font-size: 2.6rem;
    }

    .stat-box b {
        font-size: 1.7rem;
    }

    .stat-row {
        gap: 12px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 108px 16px 48px;
    }

    .eyebrow,
    .eyebrow-sm {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
    }

    .hero .lede,
    .page-hero .lede {
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 120px 18px 54px;
    }

    .glass-panel {
        padding: 32px 0px;
        border-radius: 18px;
    }

    .final-cta {
        padding: 70px 0 60px;
    }

    .final-cta p {
        margin-bottom: 30px;
    }

    .morph-space {
        min-height: 36vh;
        padding: 48px 20px;
    }

    .svc-stat b {
        font-size: 1.6rem;
    }

    .process-row {
        padding: 26px 0;
    }

    .insight-card,
    .service-card {
        padding: 28px 22px;
    }
}

/* =====================================================================
   SECTION VIDEO BACKGROUND (used on the Services glass-panel)
   Drop your own clip at assets/videos/services-bg.mp4 (+ a poster jpg)
   to activate it. If the file is missing the video hides itself and
   the normal glass-panel gradient shows instead — nothing breaks.
   ===================================================================== */
.glass-panel {
    /* glass-panel already has position:relative + isolation:isolate,
       so a video child can safely sit behind the content at z-index -2 */
}

.section-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.24;
    filter: saturate(1.35) contrast(1.05);
    pointer-events: none;
    transition: opacity .6s var(--ease);
}

.section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(4, 5, 15, .55) 0%, rgba(4, 5, 15, .82) 55%, rgba(4, 5, 15, .94) 100%);
}

@media (max-width: 640px) {
    .section-video-bg {
        opacity: 0.14;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-video-bg {
        display: none;
    }
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Case Visual */
.case-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-animated-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-icon {
    font-size: 64px;
    z-index: 2;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Pulse Rings */
.case-pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.case-pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.case-pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Case Badge */
.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Case Content */
.case-content {
    padding: 24px;
}

.case-industry {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6C63FF;
    font-weight: 600;
    background: rgba(108, 99, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.case-content h4 {
    font-size: 18px;
    margin: 12px 0 8px 0;
    line-height: 1.4;
}

.case-content p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Case Metrics */
.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: countUp 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-label {
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* Case Link */
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6C63FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.case-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    transition: width 0.3s ease;
}

.case-link:hover::after {
    width: 100%;
}

.case-link:hover {
    gap: 12px;
    color: #00D4FF;
}

/* Hover Effects */
.case-card:hover .case-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3) rotate(-5deg);
    }

    60% {
        transform: scale(0.9) rotate(5deg);
    }

    80% {
        transform: scale(1.1) rotate(-3deg);
    }
}

.case-card:hover .case-pulse-ring {
    animation-duration: 1s;
}

.case-card:hover .case-badge {
    animation: none;
    transform: scale(1.1);
    background: rgba(108, 99, 255, 0.8);
}

/* Shimmer effect on hover */
.case-card:hover .case-animated-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .metric-value {
        font-size: 16px;
    }

    .case-icon {
        font-size: 48px;
    }
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Philosophy Visual */
.philosophy-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.philosophy-animated-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.philosophy-icon {
    font-size: 56px;
    z-index: 2;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) scale(1.1) rotate(5deg);
    }
}

/* Pulse Rings */
.philosophy-pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.philosophy-pulse-ring:nth-child(2) {
    animation-delay: 0.8s;
}

.philosophy-pulse-ring:nth-child(3) {
    animation-delay: 1.6s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Philosophy Content */
.philosophy-content {
    padding: 28px 24px;
    position: relative;
}

.philosophy-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    opacity: 0.05;
    line-height: 1;
    color: #6C63FF;
}

.philosophy-content h4 {
    font-size: 20px;
    margin: 0 0 10px 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.philosophy-content p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Philosophy Features */
.philosophy-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.philosophy-features li {
    font-size: 12px;
    padding: 4px 14px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    color: #6C63FF;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid rgba(108, 99, 255, 0.1);
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-features li {
    background: rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
    transform: scale(1.05);
}

/* Hover Effects */
.philosophy-card:hover .philosophy-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3) rotate(-8deg);
    }

    60% {
        transform: scale(0.9) rotate(8deg);
    }

    80% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.philosophy-card:hover .philosophy-pulse-ring {
    animation-duration: 1.5s;
}

/* Shimmer effect on hover */
.philosophy-card:hover .philosophy-animated-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 70%);
    animation: shimmer 1.2s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Card entrance animations */
.philosophy-card {
    opacity: 0;
    animation: cardFadeIn 0.8s ease forwards;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-icon {
        font-size: 40px;
    }

    .philosophy-visual {
        height: 150px;
    }

    .philosophy-number {
        font-size: 36px;
    }
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 20px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Icon Wrapper */
.trust-icon-wrapper {
    position: relative;
    display: inline-block;
}

.trust-icon {
    width: 40px;
    height: 40px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.trust-item:hover .trust-icon {
    stroke: #6C63FF;
    transform: scale(1.15) rotate(-5deg);
}

.trust-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(108, 99, 255, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: trustPulse 3s ease-out infinite;
}

@keyframes trustPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.trust-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
}

.trust-item:hover .trust-label {
    opacity: 1;
    color: #6C63FF;
}

/* Hover glow effect */
.trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6C63FF, #00D4FF);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.trust-item:hover::after {
    width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .trust-item {
        padding: 24px 12px 18px;
    }

    .trust-icon {
        width: 32px;
        height: 32px;
    }

    .trust-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 20px 12px 16px;
    }

    .trust-icon {
        width: 28px;
        height: 28px;
    }

    .trust-label {
        font-size: 11px;
    }
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.approach-number {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 48px;
    font-weight: 800;
    opacity: 0.04;
    line-height: 1;
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.approach-icon svg {
    width: 24px;
    height: 24px;
    stroke: #6C63FF;
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 16px;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-features li {
    font-size: 13px;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.7;
}

.approach-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #6C63FF;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.values-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.values-visual {
    height: 120px;
    overflow: hidden;
}

.values-animated-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.values-icon {
    width: 48px;
    height: 48px;
    z-index: 2;
}

.values-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.values-pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: valuePulse 3s ease-out infinite;
}

@keyframes valuePulse {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.values-card h4 {
    font-size: 18px;
    padding: 20px 20px 8px;
    margin: 0;
}

.values-card p {
    font-size: 14px;
    opacity: 0.7;
    padding: 0 20px 24px;
    line-height: 1.6;
    margin: 0;
}

/* Why Difference Grid */
.why-difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.difference-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.difference-col.highlight {
    border-color: rgba(108, 99, 255, 0.2);
    background: rgba(108, 99, 255, 0.03);
}

.difference-col h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.difference-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.diff-mark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-mark.x {
    stroke: #FF6B6B;
}

.diff-mark.check {
    stroke: #00D4FF;
}

/* Responsive */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-difference-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-visual {
        height: 100px;
    }

    .difference-col {
        padding: 24px;
    }
}

/* ============================================
   SERVICE PAGES - SHARED STYLES
   ============================================ */

/* --------------------------------------------
   WHY LEAD GENERATION / WHY IT MATTERS
   -------------------------------------------- */
.why-lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-lead-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-lead-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.why-lead-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-lead-card:hover .why-lead-icon {
    background: rgba(108, 99, 255, 0.15);
    transform: scale(1.05);
}

.why-lead-icon svg {
    width: 28px;
    height: 28px;
    stroke: #6C63FF;
    transition: all 0.4s ease;
}

.why-lead-card:hover .why-lead-icon svg {
    stroke: #00D4FF;
}

.why-lead-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-lead-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

/* --------------------------------------------
   PLATFORMS / TECHNOLOGIES GRID
   -------------------------------------------- */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.platform-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.platform-card:hover .platform-icon {
    background: rgba(108, 99, 255, 0.15);
    transform: scale(1.05);
}

.platform-icon svg {
    width: 26px;
    height: 26px;
    stroke: #6C63FF;
    transition: all 0.4s ease;
}

.platform-card:hover .platform-icon svg {
    stroke: #00D4FF;
}

.platform-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.platform-card p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 14px;
}

.platform-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(108, 99, 255, 0.08);
    color: #6C63FF;
    border: 1px solid rgba(108, 99, 255, 0.08);
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-tag {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.2);
    color: #00D4FF;
}

/* --------------------------------------------
   APPROACH GRID
   -------------------------------------------- */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.approach-number {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 48px;
    font-weight: 800;
    opacity: 0.04;
    line-height: 1;
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
    background: rgba(108, 99, 255, 0.15);
    transform: scale(1.05);
}

.approach-icon svg {
    width: 24px;
    height: 24px;
    stroke: #6C63FF;
    transition: all 0.4s ease;
}

.approach-card:hover .approach-icon svg {
    stroke: #00D4FF;
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.approach-card p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 16px;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-features li {
    font-size: 13px;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-features li {
    opacity: 0.9;
}

.approach-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #6C63FF;
}

/* --------------------------------------------
   RESULTS GRID
   -------------------------------------------- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 99, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.result-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
}

/* --------------------------------------------
   RESPONSIVE
   -------------------------------------------- */
@media (max-width: 1024px) {
    .why-lead-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-lead-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .why-lead-card {
        padding: 24px 16px;
    }

    .platform-card {
        padding: 24px 16px;
    }

    .approach-card {
        padding: 24px 20px;
    }

    .result-card {
        padding: 24px 16px;
    }

    .approach-number {
        font-size: 36px;
    }

    .result-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-lead-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .why-lead-icon {
        width: 44px;
        height: 44px;
    }

    .why-lead-icon svg {
        width: 22px;
        height: 22px;
    }

    .platform-icon {
        width: 44px;
        height: 44px;
    }

    .platform-icon svg {
        width: 22px;
        height: 22px;
    }

    .approach-icon {
        width: 40px;
        height: 40px;
    }

    .approach-icon svg {
        width: 20px;
        height: 20px;
    }

    .approach-number {
        font-size: 28px;
        top: 6px;
        right: 12px;
    }

    .result-number {
        font-size: 24px;
    }
}

/* Footer Contact Icons */
.foot-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.5;
}

.foot-col ul li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #6C63FF;
    margin-top: 2px;
    transition: stroke 0.3s ease;
}

.foot-col ul li:hover svg {
    stroke: #00D4FF;
}

.foot-col ul li a,
.foot-col ul li span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-col ul li a:hover {
    color: #6C63FF;
}

.foot-col ul li span {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .foot-col ul li {
        font-size: 13px;
        gap: 10px;
    }

    .foot-col ul li svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .foot-col ul li {
        font-size: 12px;
        gap: 8px;
    }

    .foot-col ul li svg {
        width: 14px;
        height: 14px;
        margin-top: 1px;
    }
}

/* Map Container - Full Width */
.map-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.map-header svg {
    width: 28px;
    height: 28px;
    stroke: #6C63FF;
    flex-shrink: 0;
}

.map-header h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin: 0;
}

.map-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    box-shadow: 0 12px 60px rgba(108, 99, 255, 0.15);
    transform: translateY(-2px);
}

.map-wrapper iframe {
    display: block;
    width: 100% !important;
    height: 400px;
    border: 0;
}

/* Address Bar */
.map-address-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.map-address-bar .address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.8;
    flex: 1;
}

.map-address-bar .address svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #6C63FF;
}

.map-address-bar .address span {
    word-break: break-word;
}

.map-address-bar .btn-directions {
    padding: 10px 28px;
    font-size: 14px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.map-address-bar .btn-directions svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 40px;
        padding-top: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-address-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .map-address-bar .address {
        font-size: 14px;
        width: 100%;
    }

    .map-address-bar .btn-directions {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .map-container {
        margin-top: 30px;
        padding-top: 20px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .map-address-bar {
        padding: 14px 16px;
    }

    .map-address-bar .address {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .map-address-bar .address svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Menu Logo */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mm-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.mm-logo-text {
    font-family: 'Audiowide', cursive;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #6C63FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mm-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.mm-close:hover {
    color: #fff;
}

.mm-close svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .mm-logo-img {
        height: 28px;
    }

    .mm-logo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mm-logo-img {
        height: 24px;
    }

    .mm-logo-text {
        font-size: 14px;
    }
}

/* Contact Cards - Updated */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(108, 99, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.5;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    margin: 0;
    line-height: 1.6;
}

.contact-card p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: #6C63FF;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 18px 20px;
    }

    .contact-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }
}

/* Footer Logo */
.footer-logo {
    height: 80px;
    width: auto;
    display: inline-block;
    margin-right: 4px;
}

.foot-brand .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.foot-brand .logo .dot {
    display: none; /* Hide the dot since we have the logo image */
}

.foot-brand p {
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Social Icons in Footer */
.foot-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.foot-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.foot-social a:hover {
    background: rgba(108, 99, 255, 0.2);
    color: #6C63FF;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

.foot-social a svg {
    width: 16px;
    height: 16px;
}

/* Footer Bottom */
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.foot-bottom span {
    font-size: 13px;
    opacity: 0.4;
}

/* Footer Grid */
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }
    
    .foot-brand p {
        max-width: 100%;
    }
    
    .foot-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .foot-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 50px;
    }
    
    .foot-brand .logo {
        font-size: 18px;
    }
}