/* GLOBAL THEME VARIABLES */
:root {
    --deep-navy: #0a0a18;
    --navy: #1a1a3e;
    --gold: #c9a84c;
    --light-gold: #e8c96e;
    --white: #ffffff;
    --cyan-glow: #00f2ff;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-glow-strong: rgba(201, 168, 76, 0.3);
    --navy-mid: #12122b;
    --text-muted: rgba(255, 255, 255, 0.55);
    --sidebar-width: 72px;
    --sidebar-expanded: 240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep-navy);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
    /* Hide default cursor */
}

/* ── ARC REACTOR CURSOR ── */
#arc-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
}

.arc-core {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff, 0 0 20px #00f2ff;
}

.arc-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 242, 255, 0.4);
    border-radius: 50%;
    animation: arcCursorSpin 4s linear infinite;
}

.arc-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 50%;
}

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

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

.cursor-active .arc-ring {
    width: 60px;
    height: 60px;
    border-color: #00f2ff;
    border-style: solid;
    transition: all 0.2s ease;
}

.cursor-active .arc-core {
    transform: scale(1.5);
    background: #00f2ff;
}

/* ── HUD SIDEBAR ── */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: rgba(10, 10, 24, 0.95);
    backdrop-filter: blur(30px);
    border-right: 2px solid rgba(0, 242, 255, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00f2ff, transparent);
    opacity: 0.3;
}

.sidebar:hover {
    width: var(--sidebar-expanded);
    border-right: 2px solid rgba(0, 242, 255, 0.3);
}

.sidebar-logo-wrap {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 16px;
    position: relative;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    background: #0a0a18;
    border: 2px solid #00f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #00f2ff;
    text-shadow: 0 0 10px #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4), inset 0 0 10px rgba(0, 242, 255, 0.2);
    flex-shrink: 0;
    animation: arcPulse 4s infinite ease-in-out;
    cursor: pointer;
}

@keyframes arcPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.7);
    }
}

.sidebar-brand-text {
    position: absolute;
    left: 70px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s ease;
    white-space: nowrap;
}

.sidebar:hover .sidebar-brand-text {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 10px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--light-gold));
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleY(1);
}

.nav-item:hover,
.nav-item.active {
    background: var(--gold);
    color: var(--deep-navy);
}

.nav-item.active {
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.nav-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sidebar:hover .nav-label {
    opacity: 1;
}

/* ── MAIN CONTENT ── */
.main-content {
    margin-left: var(--sidebar-width);
    padding-top: 0;
    transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar:hover~.main-content {
    margin-left: var(--sidebar-expanded);
}

/* ── HERO V2 ── */
.hero-v2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Vertical center is fine if we have enough margin/padding */
    justify-content: center;
    overflow: hidden;
    background: var(--deep-navy);
    padding: 100px 5% 60px;
    /* Reduced top padding, using margin for spacing instead */
    z-index: 1;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        #070712;
    overflow: hidden;
}

.hero-v2-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(150deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(30deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(150deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(60deg, rgba(0, 242, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 242, 255, 0.03) 75%, rgba(0, 242, 255, 0.03)),
        linear-gradient(60deg, rgba(0, 242, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 242, 255, 0.03) 75%, rgba(0, 242, 255, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    animation: meshPulse 10s infinite alternate ease-in-out;
}

@keyframes meshPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* TV & Media */
.tv-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tv-media.active {
    opacity: 1;
}

.tv-controls {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 242, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tv-ctrl-btn {
    background: none;
    border: none;
    color: #00f2ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.tv-ctrl-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.tv-ctrl-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
}

.tv-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.tv-ctrl-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 242, 255, 0.2);
    margin: 0 5px;
}

.tv-contact-btn {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: #00f2ff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tv-contact-btn:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.tv-contact-btn.btn-alt {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

.tv-contact-btn.btn-alt:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.tv-action-group {
    display: flex;
    gap: 10px;
}

/* Arc Reactor Effects */
.arc-reactor-core {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, rgba(0, 162, 255, 0.05) 30%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: reactorBreath 4s infinite ease-in-out;
}

@keyframes reactorBreath {

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

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.nano-flow {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.nano-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: nanoMove var(--d) linear infinite;
    opacity: 0;
}

@keyframes nanoMove {
    0% {
        transform: translate(var(--sx), var(--sy));
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--ex), var(--ey));
        opacity: 0;
    }
}

.energy-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    height: 1px;
    width: 200px;
    opacity: 0.2;
    animation: energyZip 4s infinite linear;
    z-index: -1;
}

@keyframes energyZip {
    0% {
        transform: translateX(-200px) skewX(-45deg);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translateX(100vw) skewX(-45deg);
        opacity: 0;
    }
}

/* Ticker Tape */
.hero-ticker {
    position: relative;
    width: 100%;
    background: var(--gold);
    color: var(--deep-navy);
    padding: 15px 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    display: flex;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    overflow: hidden;
    margin-top: -20px;
}

.hero-ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.hero-ticker-inner span {
    margin: 0 40px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Content Layout */
.hero-v2-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 60px auto 0;
    /* Lifted up the content by reducing margin-top */
    position: relative;
    z-index: 10;
    gap: 80px;
}

.hero-v2-content {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.hero-v2-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--light-gold);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.15);
    animation: pulseBadge 2s infinite;
}

.ad-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes pulseBadge {

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

    50% {
        transform: scale(1.03);
    }
}

.hero-v2-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-v2-title span.hl-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-v2-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
}

/* Promo Banner */
.promo-banner {
    position: absolute;
    top: 25px;
    right: 25px;
    /* Moved to the top right side */
    left: auto;
    z-index: 100;
    display: flex;
    background: #0f0f22;
    border-radius: 12px;
    overflow: hidden;
    width: 520px;
    height: 115px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.promo-image {
    width: 150px;
    flex-shrink: 0;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 12px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.promo-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-n-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.promo-offer-badge {
    background: #ffcc00;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title-new {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.promo-subtitle-new {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: -4px;
}

.promo-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    opacity: 0.8;
    margin: 2px 0;
}

.promo-btn-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.promo-btn-new:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* TV Showcase */
.tv-showcase {
    position: relative;
    width: 100%;
    max-width: 750px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    z-index: 10;
}

.tv-showcase:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.tv-frame {
    background: #000;
    border-radius: 20px;
    padding: 12px;
    padding-bottom: 30px;
    box-shadow: 30px 40px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 2px #333;
    position: relative;
}

.tv-screen-inner {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.tv-screen-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.tv-stand-new {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 45px;
    background: linear-gradient(to bottom, #222, #000);
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-premium {
    background: var(--gold);
    color: var(--deep-navy);
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-premium:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
}

.btn-outline-prem {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.btn-outline-prem:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* Trusted By */
.trusted-by {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.trusted-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trusted-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.3), transparent);
}

.trusted-marquee {
    display: flex;
    width: max-content;
    gap: 50px;
    animation: logoScroll 20s linear infinite;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trusted-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--white);
    opacity: 0.4;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.trusted-marquee:hover {
    animation-play-state: paused;
}

.trusted-logo:hover {
    opacity: 1;
    color: var(--gold);
}

/* Stark Stats Section */
.stark-stats {
    padding: 50px 5%;
    background: #05050a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stark-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.stark-stats-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}

.stark-label {
    font-family: monospace;
    font-size: 13px;
    color: #00f2ff;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    opacity: 0.6;
}

.stark-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stark-main-title span {
    color: var(--gold);
    display: block;
    font-size: 0.6em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.8;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card-stark {
    background: linear-gradient(145deg, #0f0f1d, #05050a);
    border: 1px solid #222;
    padding: 60px 40px;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.6);
}

.stat-card-stark:hover {
    border-color: #00f2ff;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.1);
}

.rivet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #2a2a2a;
    border-radius: 50%;
    box-shadow: inset 1px 1px 2px #000, 1px 1px 1px rgba(255, 255, 255, 0.05);
}

.r-tl {
    top: 15px;
    left: 15px;
}

.r-tr {
    top: 15px;
    right: 15px;
}

.r-bl {
    bottom: 15px;
    left: 15px;
}

.r-br {
    bottom: 15px;
    right: 15px;
}

.hud-line {
    position: absolute;
    background: rgba(0, 242, 255, 0.2);
}

.line-h {
    width: 30px;
    height: 1px;
    top: 30px;
    left: 30px;
}

.line-v {
    width: 1px;
    height: 30px;
    top: 30px;
    left: 30px;
}

.stark-stat-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stark-stat-number span.plus {
    font-size: 32px;
    color: var(--gold);
}

.stark-stat-label {
    color: #00f2ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stark-stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    border-left: 2px solid rgba(0, 242, 255, 0.2);
    padding-left: 15px;
}

.card-bg-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

/* ── PREMIUM PORTFOLIO ── */
.premium-portfolio {
    padding: 150px 5%;
    background: transparent;
    /* Allow mark50-bg to be the base background */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mark50-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 242, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        #070712;
    overflow: hidden;
}

.mark50-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(150deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(30deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(150deg, rgba(201, 168, 76, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(201, 168, 76, 0.06) 87.5%, rgba(201, 168, 76, 0.06)),
        linear-gradient(60deg, rgba(0, 242, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 242, 255, 0.03) 75%, rgba(0, 242, 255, 0.03)),
        linear-gradient(60deg, rgba(0, 242, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 242, 255, 0.03) 75%, rgba(0, 242, 255, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    animation: meshPulse 10s infinite alternate ease-in-out;
}

.nano-flow-portfolio {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.portfolio-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.portfolio-main-title span {
    color: var(--gold);
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 10px;
}

.portfolio-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 50;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.project-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Device Mockup (Laptop) */
.device-mockup {
    margin-bottom: 35px;
    perspective: 1000px;
}

.laptop-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

.project-card:hover .laptop-frame {
    transform: scale(1.05) rotateX(5deg);
}

.laptop-screen {
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    /* Help with alignment */
    align-items: center;
    justify-content: center;
}

.laptop-screen img {
    width: 100.2%;
    /* Slightly larger to cover any tiny gaps */
    height: 100.2%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 4px;
    backface-visibility: hidden;
}

.project-card:hover .laptop-screen img {
    transform: scale(1.1);
}

.laptop-base {
    height: 12px;
    background: #2a2a2a;
    border-radius: 0 0 15px 15px;
    width: 110%;
    margin-left: -5%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Card Content */
.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    padding-bottom: 15px;
}

.client-testimonial {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-family: serif;
    font-size: 60px;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.review-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.btn-view-case {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-view-case:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-navy);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
}

.portfolio-footer {
    text-align: center;
    margin-top: 80px;
}

.btn-view-all {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* ── TACTICAL SERVICES HUB ── */
.stark-services-hub {
    position: relative;
    background: #05050a;
    height: 600vh;
    /* 6 services * 100vh for smooth scroll-cycling */
}

.hub-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 150px 5%;
    align-items: center;
    z-index: 10;
}

.hub-nav-wrap {
    flex: 0 0 350px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.hub-nav-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hub-nav-item {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hub-nav-id {
    font-family: monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 900;
}

.hub-nav-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(0, 242, 255, 0.4);
}

.hub-nav-item.active {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.1) 0%, transparent 100%);
    border-left-color: #00f2ff;
    padding-left: 35px;
}

.hub-nav-item.active .hub-nav-id {
    color: #00f2ff;
}

.hub-nav-item.active .hub-nav-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Right Display */
.hub-display-wrap {
    flex: 1;
    min-height: 600px;
    position: relative;
}

.hub-display-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    background: rgba(10, 10, 24, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    padding: 60px;
    display: flex;
    align-items: center;
}

.hub-display-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
}

.hub-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: luminosity;
    transition: all 1s ease;
}

.active .hub-bg-image {
    opacity: 0.35;
    mix-blend-mode: normal;
}

.hub-content-inner {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.hub-protocol-tag {
    font-family: monospace;
    font-size: 12px;
    color: #00f2ff;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hub-title {
    font-size: 48px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hub-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.hub-tech-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.h-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.h-value {
    font-size: 20px;
    color: #fff;
    font-weight: 900;
    font-family: monospace;
}

.hub-cta {
    background: #00f2ff;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.hub-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
    letter-spacing: 4px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.btn-check-site:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* ── SITE BROWSER MODAL ── */
.site-browser-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.site-browser-modal.active {
    display: flex;
}

.browser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.browser-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-browser-modal.active .browser-container {
    transform: scale(1);
    opacity: 1;
}

.browser-header {
    height: 44px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.ctrl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ctrl-dot.red {
    background: #ff5f56;
}

.ctrl-dot.yellow {
    background: #ffbd2e;
}

.ctrl-dot.green {
    background: #27c93f;
}

.browser-address-bar {
    flex: 1;
    background: #1a1a1a;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-family: monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.browser-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.browser-close:hover {
    opacity: 1;
}

.browser-content {
    flex: 1;
    position: relative;
    background: #fff;
}

.browser-content iframe {
    width: 100%;
    height: 100%;
}

.browser-loading {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 242, 255, 0.1);
    border-top-color: #00f2ff;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

    .site-browser-modal {
        padding: 10px;
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .promo-banner {
        display: block;
    }

    .hero-v2-container {
        padding-top: 100px;
        flex-direction: column;
        text-align: center;
    }

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

    .hero-v2-visual {
        width: 100%;
        order: 2;
        margin-top: 50px;
    }

    .btn-group {
        justify-content: center;
    }

    .trusted-by {
        margin: 40px auto 0;
    }
}

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

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

@keyframes arcPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.7);
    }
}

@keyframes meshPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes reactorBreath {

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

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes nanoMove {
    0% {
        transform: translate(var(--sx), var(--sy));
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--ex), var(--ey));
        opacity: 0;
    }
}

@keyframes energyZip {
    0% {
        transform: translateX(-200px) skewX(-45deg);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translateX(100vw) skewX(-45deg);
        opacity: 0;
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseBadge {

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

    50% {
        transform: scale(1.03);
    }
}

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px !important;
    }

    .main-content {
        margin-left: 0 !important;
        margin-bottom: 75px !important;
    }

    .sidebar {
        position: fixed !important;
        width: 100% !important;
        height: 75px !important;
        top: auto !important;
        bottom: 0 !important;
        flex-direction: row !important;
        padding: 0 !important;
        border-right: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        background: #05050a !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        z-index: 9999 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .sidebar-logo-wrap {
        display: none !important;
    }

    .sidebar-nav {
        display: grid !important;
        /* Use grid for guaranteed equal widths */
        grid-template-columns: repeat(5, 1fr) !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        gap: 6px !important;
        color: rgba(255, 255, 255, 0.4) !important;
        position: relative !important;
        text-decoration: none !important;
        border: none !important;
        transition: none !important;
    }

    .nav-label {
        display: block !important;
        opacity: 1 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .nav-icon {
        background: none !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        color: inherit !important;
    }

    .nav-icon svg {
        width: 24px !important;
        height: 24px !important;
        stroke-width: 1.5px !important;
    }

    .nav-item.active {
        color: #ffffff !important;
        background: transparent !important;
    }

    /* Gold indicator bar from screenshot */
    .nav-item.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 3px;
        background: var(--gold);
        box-shadow: 0 0 10px var(--gold);
    }

    .nav-item.active .nav-icon {
        filter: none !important;
    }

    /* Adjust Sections for Mobile */
    .premium-portfolio {
        padding: 60px 5% !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .portfolio-main-title {
        font-size: 28px !important;
    }

    .project-card {
        padding: 20px !important;
    }

    .hero-v2 {
        padding: 20px 5% 80px !important;
        /* Heavily reduced from 180px */
    }

    .hero-v2-container {
        margin-top: 0px !important;
        padding-top: 0px !important;
        /* Zeroed out */
    }

    .promo-banner {
        display: flex !important;
        position: relative !important;
        width: 92% !important;
        max-width: none !important;
        top: 0 !important;
        right: 0 !important;
        margin: 15px auto 0px auto !important;
        /* Zero bottom margin */
        border-radius: 15px !important;
        background: rgba(10, 10, 24, 0.8) !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(201, 168, 76, 0.3) !important;
        padding: 0 !important;
        overflow: hidden !important;
        z-index: 1001 !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    }

    .promo-image {
        display: block !important;
        width: 80px !important;
        /* Smaller image for mobile */
        height: auto !important;
        flex-shrink: 0 !important;
    }

    .promo-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .promo-content {
        padding: 15px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .promo-top-row {
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 5px !important;
    }

    .promo-n-icon {
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
    }

    .promo-offer-badge {
        font-size: 8px !important;
        padding: 2px 6px !important;
    }

    .promo-title-new {
        font-size: 14px !important;
    }

    .promo-subtitle-new {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    .promo-tagline {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }

    .promo-btn-new {
        width: auto !important;
        padding: 8px 15px !important;
        font-size: 11px !important;
    }

    .hero-status {
        font-size: 10px !important;
        margin-bottom: 20px !important;
        justify-content: center !important;
    }

    .btn-group {
        gap: 10px !important;
        margin-top: 25px !important;
        width: 100% !important;
    }

    .btn-primary-new,
    .btn-secondary-new {
        padding: 12px 20px !important;
        font-size: 13px !important;
        flex: 1 !important;
        min-width: auto !important;
    }

    .hero-v2-visual {
        width: 100% !important;
        order: 2 !important;
        margin-top: 20px !important;
        /* Reduced from 50px */
    }

    .trusted-by {
        margin: 20px auto 0 !important;
        /* Reduced from 40px */
    }

    .tv-controls {
        width: 98% !important;
        max-width: none !important;
        padding: 6px 8px !important;
        gap: 5px !important;
        margin: 15px auto 0 !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        transform: scale(0.9) !important;
        /* Slight scale down to fit all */
    }

    .tv-status {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        margin-right: -5px !important;
    }

    .tv-ctrl-btn {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }

    .tv-ctrl-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    .tv-ctrl-divider {
        display: none !important;
        /* Remove divider to save space */
    }

    .tv-action-group {
        display: flex !important;
        gap: 4px !important;
        flex-shrink: 1 !important;
    }

    .tv-contact-btn {
        padding: 5px 6px !important;
        font-size: 9px !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .hero-ticker {
        padding: 8px 0 !important;
        font-size: 11px !important;
        margin-top: -20px !important;
        /* Pull up to reduce gap */
    }

    /* Section 2 (Stats) Fixes */
    .stark-section-tag {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }

    .stark-main-title {
        font-size: 32px !important;
    }

    .stark-main-title span {
        font-size: 14px !important;
        margin-top: 5px !important;
    }

    .stats-grid {
        gap: 15px !important;
        margin-top: 30px !important;
    }

    .stat-card-stark {
        padding: 30px 20px !important;
    }

    .stark-stat-number {
        font-size: 32px !important;
    }

    .stark-stat-label {
        font-size: 14px !important;
    }

    .stark-stat-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* Section 3 (Portfolio) Fixes */
    .premium-portfolio {
        padding: 50px 5% !important;
        /* Reduced from 80px */
    }

    .portfolio-header {
        margin-bottom: 40px !important;
    }

    .portfolio-main-title {
        font-size: 28px !important;
    }

    .portfolio-subtitle {
        font-size: 14px !important;
    }

    .project-card {
        padding: 15px !important;
    }

    .project-title {
        font-size: 20px !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
    }

    .review-text {
        font-size: 14px !important;
    }

    .client-name {
        font-size: 12px !important;
    }

    .client-role {
        font-size: 10px !important;
    }

    .laptop-frame {
        padding: 5px !important;
    }

    .laptop-base {
        height: 8px !important;
    }

    /* Section 4 (Services) Mobile Fixes */
    .stark-services {
        padding: 60px 5% !important;
    }

    .schematic-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .schematic-card {
        padding: 30px 20px !important;
    }

    .service-title {
        font-size: 20px !important;
    }

    /* Section 4 (Tactical Hub) Mobile Fixes */
    .stark-services-hub {
        height: 600vh !important;
        padding: 0 !important;
    }

    .hub-container {
        flex-direction: column !important;
        gap: 20px !important;
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        padding: 100px 5% 80px !important;
        /* Account for bottom nav */
        justify-content: flex-start !important;
    }

    .hub-nav-wrap {
        flex: none !important;
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
    }

    .hub-nav-list {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        gap: 10px !important;
        scrollbar-width: none;
        justify-content: flex-start !important;
    }

    .hub-nav-list::-webkit-scrollbar {
        display: none;
    }

    .hub-nav-item {
        flex: 0 0 auto !important;
        padding: 12px 20px !important;
        border-left: none !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
        gap: 10px !important;
    }

    .hub-nav-item.active {
        border-left: none !important;
        border-bottom-color: #00f2ff !important;
        padding-left: 20px !important;
        background: rgba(0, 242, 255, 0.1) !important;
    }

    .hub-nav-text {
        font-size: 12px !important;
    }

    .hub-display-wrap {
        min-height: auto !important;
    }

    .hub-display-content {
        padding: 30px 20px !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        margin-bottom: 20px !important;
    }

    .hub-display-content.active {
        display: block !important;
    }

    .hub-title {
        font-size: 28px !important;
    }

    .hub-desc {
        font-size: 15px !important;
    }

    .hub-tech-stats {
        gap: 20px !important;
    }

    /* Reduce Gaps between sections */
    section {
        margin-bottom: 0 !important;
    }
}

/* ── PREMIUM SOLUTIONS SHOWCASE ── */
/* ── PREMIUM SOLUTIONS SHOWCASE ── */
.premium-solutions {
    padding: 120px 5%;
    background: #020205;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Vibrant Dual-Tone Tech Grid */
.premium-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(201, 168, 76, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 242, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(8, 8, 20, 0.9) 0%, #030307 100%);
    z-index: -2;
}

.premium-solutions::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 168, 76, 0.022) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.022) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.95;
}

/* Intense Ambient Floating Orbs */
.solutions-bg-glows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.solutions-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.32;
    animation: floatOrb 22s infinite alternate ease-in-out;
}

.solutions-glow-orb.orb-left {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.35) 0%, transparent 70%);
    top: 8%;
    left: -180px;
}

.solutions-glow-orb.orb-right {
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.26) 0%, transparent 70%);
    bottom: 8%;
    right: -220px;
    animation-delay: -8s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -30px) scale(1.18); }
    100% { transform: translate(-30px, 40px) scale(0.92); }
}

/* Thicker Neon Energy Laser Line */
.energy-line {
    position: absolute;
    height: 2px;
    width: 320px;
    background: linear-gradient(90deg, transparent, var(--gold), #ffffff, var(--gold), transparent);
    opacity: 0;
    filter: drop-shadow(0 0 10px var(--gold));
    animation: energyScan 12s infinite linear;
}

@keyframes energyScan {
    0% { left: -30%; opacity: 0; }
    15% { opacity: 0.65; }
    85% { opacity: 0.65; }
    100% { left: 130%; opacity: 0; }
}

/* Highly Visible Pulsing Cyber Particles */
.cyber-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px currentColor);
    opacity: 0.68;
    pointer-events: none;
}

.cyber-particle.cp-1 {
    background: var(--gold);
    top: 15%;
    left: 20%;
    animation: particlePulse 4s infinite alternate ease-in-out, particleMove1 25s infinite linear;
}

.cyber-particle.cp-2 {
    background: #00f2ff;
    top: 40%;
    right: 15%;
    width: 13px;
    height: 13px;
    animation: particlePulse 5s infinite alternate ease-in-out, particleMove2 30s infinite linear;
    animation-delay: 1s;
}

.cyber-particle.cp-3 {
    background: var(--gold);
    bottom: 25%;
    left: 10%;
    width: 11px;
    height: 11px;
    animation: particlePulse 6s infinite alternate ease-in-out, particleMove3 28s infinite linear;
    animation-delay: 2s;
}

.cyber-particle.cp-4 {
    background: #00f2ff;
    bottom: 10%;
    right: 35%;
    width: 11px;
    height: 11px;
    animation: particlePulse 4s infinite alternate ease-in-out, particleMove1 22s infinite linear;
    animation-delay: 3s;
}

.cyber-particle.cp-5 {
    background: var(--gold);
    top: 70%;
    left: 45%;
    width: 9px;
    height: 9px;
    animation: particlePulse 5s infinite alternate ease-in-out, particleMove2 26s infinite linear;
}

.cyber-particle.cp-6 {
    background: #00f2ff;
    top: 10%;
    right: 45%;
    width: 11px;
    height: 11px;
    animation: particlePulse 6s infinite alternate ease-in-out, particleMove3 24s infinite linear;
}

@keyframes particlePulse {
    0% { opacity: 0.45; transform: scale(0.85); }
    50% { opacity: 0.98; filter: drop-shadow(0 0 15px currentColor); }
    100% { opacity: 0.5; transform: scale(1.35); }
}

@keyframes particleMove1 {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(40px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes particleMove2 {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(60px) translateX(-50px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes particleMove3 {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-40px) translateX(-40px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Header Styling */
.services-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px auto;
    position: relative;
    z-index: 2;
}

.premium-solutions .service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

.premium-solutions .service-main-title {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.01em;
}

.premium-solutions .service-main-title span {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.premium-solutions .service-main-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.premium-solutions .service-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* High luxury card spacing */
}

.solution-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(4, 4, 12, 0.88) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 28px;
    padding: 60px 70px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-row:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(6, 6, 18, 0.94) 100%);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.7), 
        inset 0 0 30px rgba(201, 168, 76, 0.2), 
        0 0 35px rgba(201, 168, 76, 0.12);
}

/* Alternating Layout */
.solution-row:nth-child(even) .solution-media {
    order: 2;
}

.solution-row:nth-child(even) .solution-details {
    order: 1;
}

@media (max-width: 1024px) {
    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .solution-row:nth-child(even) .solution-media {
        order: 1;
    }
    .solution-row:nth-child(even) .solution-details {
        order: 2;
    }
}

/* Solution Details */
.solution-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.solution-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.solution-number {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.solution-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.solution-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 30px;
}

/* Micro-stats */
.solution-stats {
    list-style: none;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.solution-stats li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.solution-stats .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}

/* Button CTA */
.btn-solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold), #b8933b);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.25);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-solution-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
    color: #000;
}

.btn-solution-cta svg {
    transition: transform 0.3s ease;
}

.btn-solution-cta:hover svg {
    transform: translateX(4px);
}

.btn-solution-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.02);
}

.btn-solution-secondary-cta:hover {
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.btn-solution-secondary-cta svg {
    transition: transform 0.3s ease;
}

.btn-solution-secondary-cta:hover svg {
    transform: translateX(4px);
}

/* Solution Media */
.solution-media {
    position: relative;
    width: 100%;
    height: 380px;
    background: #070715;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.solution-row:hover .solution-media {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.05);
}

.solution-media-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.4s ease;
}

.solution-row:hover .solution-media-border {
    background: linear-gradient(135deg, var(--gold), transparent, #00f2ff, transparent) border-box;
}

/* Cyber Screen mockup container */
.cyber-screen {
    width: 88%;
    height: 82%;
    background: #0a0a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.cyber-header {
    background: #05050f;
    padding: 8px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cyber-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cyber-dot.red { background: #ff5f56; }
.cyber-dot.yellow { background: #ffbd2e; }
.cyber-dot.green { background: #27c93f; }

.cyber-title-bar {
    margin-left: auto;
    font-size: 10px;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

.cyber-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(10, 10, 26, 0.2) 0%, #080816 100%);
}

.media-glow-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-row:hover .media-glow-orb {
    opacity: 0.4;
    scale: 1.15;
}

.orb-gold { background: var(--gold); }
.orb-cyan { background: #00f2ff; }


/* ── CUSTOM VISUALIZATIONS ── */

/* 1. Dashboard Visualization */
.vis-dashboard {
    display: flex;
    width: 90%;
    height: 85%;
    border-radius: 6px;
    overflow: hidden;
    background: #0d0d23;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vis-dash-sidebar {
    width: 25px;
    background: #090918;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
}

.vis-dash-item {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.vis-dash-item.active {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

.vis-dash-main {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vis-dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px 10px;
}

.vis-dash-card.full {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vis-card-title {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vis-chart-container {
    width: 100%;
    height: 58px;
    position: relative;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes scaleNode {
    0% { transform: scale(0.88); opacity: 0.7; }
    100% { transform: scale(1.12); opacity: 1; }
}

@keyframes tooltipFloat {
    0% { transform: translate(-50%, 0px); }
    100% { transform: translate(-50%, -2.5px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 2px rgba(39, 201, 63, 0.4); opacity: 0.6; }
    100% { box-shadow: 0 0 8px rgba(39, 201, 63, 0.9); opacity: 1; }
}

@keyframes spinNode {
    to { transform: rotate(360deg); }
}

.vis-dash-row {
    display: flex;
    gap: 8px;
}

.vis-dash-card.half {
    flex: 1;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* 2. Automation Systems Visualization */
.vis-automation {
    position: relative;
    width: 90%;
    height: 85%;
    background: #080816;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* 2. Digital Marketing Funnel Visualization */
.vis-marketing {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.funnel-tier {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.funnel-tier:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    cursor: pointer;
}

.tier-traffic:hover {
    border-color: rgba(0, 242, 255, 0.5) !important;
    background: rgba(0, 242, 255, 0.09) !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.15), 0 4px 15px rgba(0,0,0,0.3);
}

.tier-leads:hover {
    border-color: rgba(201, 168, 76, 0.5) !important;
    background: rgba(201, 168, 76, 0.09) !important;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.15), 0 4px 15px rgba(0,0,0,0.3);
}

.tier-revenue:hover {
    border-color: rgba(39, 201, 63, 0.5) !important;
    background: rgba(39, 201, 63, 0.09) !important;
    box-shadow: 0 0 15px rgba(39, 201, 63, 0.15), 0 4px 15px rgba(0,0,0,0.3);
}


/* 3. E-Commerce Solutions Visualization */
.vis-ecommerce {
    display: flex;
    gap: 12px;
    width: 92%;
    height: 85%;
    align-items: center;
    justify-content: center;
}

.vis-ecom-card {
    width: 45%;
    background: #0d0d23;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ecom-img-placeholder {
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(0, 242, 255, 0.1));
    border-radius: 4px;
}

.ecom-prod-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
}

.ecom-prod-price {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
}

.vis-checkout-panel {
    width: 50%;
    background: #090918;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chk-header {
    font-size: 8px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.chk-field {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 6px;
    font-size: 8px;
    font-family: monospace;
    color: var(--white);
}

.chk-btn {
    background: #00f2ff;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 8px;
    font-size: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.chk-spinner {
    width: 8px;
    height: 8px;
    border: 1.5px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: chkSpin 1s linear infinite;
}

@keyframes chkSpin {
    to { transform: rotate(360deg); }
}


/* 4. Mobile App Visualization */
.vis-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-shell {
    width: 150px;
    height: 270px;
    background: #000;
    border: 3px solid #1a1a24;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-row:hover .phone-shell {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 25px 50px rgba(201, 168, 76, 0.08), 0 10px 30px rgba(0,0,0,0.6);
    transform: scale(1.04) rotate(0.5deg);
}

.phone-earpiece {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 4px;
    background: #1c1c2e;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0a1a;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.phone-app-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.app-logo-small {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 3px;
    color: #000;
    font-size: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
}

.phone-app-stats {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
}

.app-stat-value {
    font-size: 14px;
    font-weight: 800;
    color: #00f2ff;
}

.app-stat-lbl {
    font-size: 7px;
    color: var(--text-muted);
}

.phone-app-graph {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 10px;
}

.mini-bar {
    width: 12px;
    background: var(--gold);
    border-radius: 2px;
    animation: barGrow 1.5s ease-out forwards;
}

.mini-bar.animate-grow {
    background: #00f2ff;
    animation-delay: 0.3s;
}

.phone-app-menu {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.menu-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.menu-dot.active {
    background: var(--gold);
}


/* 5. UI/UX Engineering Visualization */
.vis-uiux {
    width: 92%;
    height: 85%;
    background: #080816;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
}

.figma-canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

.figma-ruler-h {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: #0a0a20;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.figma-ruler-v {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 12px;
    background: #0a0a20;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.figma-node-box {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 160px;
    height: 90px;
    border: 1.5px solid #18a0fb;
    background: rgba(24, 160, 251, 0.05);
    border-radius: 4px;
}

.node-dimension {
    position: absolute;
    bottom: -15px;
    left: 0;
    font-size: 7px;
    color: #18a0fb;
    font-family: monospace;
}

.node-handle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1.5px solid #18a0fb;
}

.node-handle.tl { top: -3px; left: -3px; }
.node-handle.tr { top: -3px; right: -3px; }
.node-handle.bl { bottom: -3px; left: -3px; }
.node-handle.br { bottom: -3px; right: -3px; }

.node-inner-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.placeholder-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.placeholder-text-line {
    height: 4px;
    width: 70%;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.placeholder-text-line.short {
    width: 45%;
}

.figma-cursor {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
    animation: cursorPath 4s infinite alternate ease-in-out;
}

@keyframes cursorPath {
    0% { top: 90px; left: 180px; }
    100% { top: 32px; left: 32px; }
}

.cursor-tag {
    background: var(--gold);
    color: #000;
    font-size: 7px;
    font-weight: 800;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


/* 6. API Visualization */
.vis-api {
    width: 92%;
    height: 85%;
    background: #070712;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px;
    display: flex;
    align-items: center;
}

.api-code-editor {
    width: 100%;
    font-family: monospace;
    font-size: 9px;
    line-height: 1.5;
}

.code-line {
    display: flex;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
}

.code-line.indent-1 { padding-left: 12px; }
.code-line.indent-2 { padding-left: 24px; }

.code-method {
    color: #ffb86c;
    font-weight: bold;
}

.code-url {
    color: #50fa7b;
}

.code-key {
    color: #8be9fd;
}

.code-str {
    color: #f1fa8c;
}

.code-num {
    color: #bd93f9;
}

.success-banner {
    margin-top: 10px;
    background: rgba(80, 250, 123, 0.1);
    border: 1px solid rgba(80, 250, 123, 0.2);
    border-radius: 4px;
    padding: 4px 8px;
    color: #50fa7b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 5px;
    height: 5px;
    background: #50fa7b;
    border-radius: 50%;
    box-shadow: 0 0 6px #50fa7b;
}

/* responsive spacing fixes for new section */
@media (max-width: 768px) {
    .premium-solutions {
        padding: 60px 5%;
    }
    
    .solutions-container {
        gap: 60px;
    }
    
    .solution-media {
        height: 280px;
    }
    
    .phone-shell {
        transform: scale(0.8);
    }
    
    .figma-node-box {
        width: 130px;
    }
}

/* ── COMMON SECTION HEADERS ── */
.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-main-title {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.section-main-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ── WHY CHOOSE NEXGENN ── */
.why-choose-us {
    padding: 100px 5%;
    background: #070712;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.why-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.why-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

.why-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-card-border {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--gold);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.15);
}

.why-card:hover .why-card-border {
    width: 100%;
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon-wrap {
    transform: rotate(10deg);
}

.why-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.why-card-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ── HOW WE WORK (PROCESS) ── */
.our-process {
    padding: 100px 5%;
    background: #050510;
    position: relative;
    z-index: 10;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        gap: 50px;
    }

    .process-timeline::before {
        top: 0;
        left: 24px;
        right: auto;
        bottom: 0;
        height: 100%;
        width: 1px;
    }
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .process-step {
        padding-left: 60px;
    }
}

.step-dot {
    width: 48px;
    height: 48px;
    background: #0a0a1a;
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.process-step:hover .step-dot::after {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 10px var(--gold);
}

@media (max-width: 900px) {
    .step-dot {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
    }
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ── TECH GRID BACKGROUND ADDITION ── */
.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.tech-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, #070712 100%);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 5%;
    background: #050510;
    position: relative;
    z-index: 10;
}

.testimonials-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: #0a0a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    width: 400px;
    /* Fixed width for flex marquee */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quote-icon-large {
    font-size: 80px;
    font-family: serif;
    color: rgba(201, 168, 76, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.author-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--gold);
    font-size: 13px;
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 120px 5%;
    background: #070712;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-premium {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.btn-premium:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.6);
}

.btn-outline-prem {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-prem:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }
}

/* ── SPECIAL OFFER SECTION ── */
.special-offer-section {
    padding: 100px 5%;
    background: #050510;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #080816;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

.offer-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-badge-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: 20px;
}

.offer-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-title span {
    color: var(--gold);
}

.offer-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    text-align: center;
}

.time-val {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #0a0a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    font-family: monospace;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.time-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-colon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    margin-top: -20px;
}

.offer-btn {
    width: auto;
}

.offer-image-box {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image-box img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s linear infinite;
    z-index: 1;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.offer-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.confetti-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 99;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 15px;
    top: -20px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(800px) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .offer-timer {
        justify-content: center;
    }

    .offer-features-list li {
        justify-content: center;
    }
}

/* ── FLOATING WIDGETS ── */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1ebe58;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    background-color: #0a0a1a;
    border: 1px solid var(--gold);
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--gold);
    color: #000;
}

@media (max-width: 600px) {
    .floating-widgets {
        bottom: 80px;
        /* Accounts for potential mobile navs */
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* ── MAIN FOOTER ── */
.main-footer {
    background: #030308;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

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

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

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact svg {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
    .section-main-title {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px !important;
    }

    .service-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        height: 180px;
    }

    .service-content-new {
        padding: 20px;
    }

    .service-title-new {
        font-size: 20px;
    }

    .testimonial-card {
        width: 42vw;
        /* Allows 2 to be fully visible at a time */
        padding: 15px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .author-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .author-info h4 {
        font-size: 13px;
    }

    .author-info span {
        font-size: 11px;
    }

    .quote-icon-large {
        font-size: 40px;
        top: 5px;
        left: 10px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 28px !important;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }

    .btn-premium,
    .btn-outline-prem {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 12px 20px;
        font-size: 14px;
    }

    .main-footer {
        padding: 40px 20px 100px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        text-align: left;
    }

    .brand-col, .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-contact li {
        font-size: 12px;
        word-break: break-word;
        align-items: flex-start;
    }
    
    .footer-contact svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .special-offer-section {
        padding: 60px 5%;
    }

    .offer-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .offer-title {
        font-size: 28px !important;
    }

    .offer-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .offer-features-list li {
        font-size: 14px;
    }

    .time-val {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .time-colon {
        margin-top: -15px;
    }

    .offer-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .pulse-ring {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 400px) {
    .testimonial-card {
        width: 45vw;
        padding: 12px;
    }
}

/* ========================================= */
/*       SERVICES PAGE (services.php)        */
/* ========================================= */

.services-page-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5% 100px;
    overflow: hidden;
    background: var(--deep-navy);
    z-index: 1;
}

.services-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--deep-navy), transparent);
    z-index: 5;
    pointer-events: none;
}

.sp-hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.sp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.sp-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Directory */
.services-directory-section {
    position: relative;
    padding: 60px 5% 100px;
    background: var(--deep-navy);
    z-index: 2;
}

.sp-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Advanced Animated Background Elements */
.sp-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sp-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s infinite ease-in-out alternate;
}

.sp-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 242, 255, 0.15);
    top: 5%;
    left: -100px;
    animation-delay: 0s;
}

.sp-glow-orb.orb-2 {
    width: 600px;
    height: 600px;
    background: rgba(201, 168, 76, 0.12);
    top: 40%;
    right: -200px;
    animation-delay: -5s;
}

.sp-glow-orb.orb-3 {
    width: 450px;
    height: 450px;
    background: rgba(0, 162, 255, 0.12);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
    100% { transform: translate(-40px, 60px) scale(0.9); }
}

.sp-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* Futuristic Asymmetrical Service Node */
.creative-service-node {
    position: relative;
    background: rgba(10, 10, 24, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    padding: 30px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: all 0.4s ease;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.creative-service-node::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, transparent 50%, rgba(201, 168, 76, 0.05) 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.creative-service-node:hover {
    transform: translateY(-8px);
    border-color: #00f2ff;
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.creative-service-node:hover::before {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15) 0%, transparent 50%, rgba(201, 168, 76, 0.1) 100%);
}

/* Floating Corner Accents */
.cs-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    z-index: 5;
}

.cs-corner.top-left {
    top: -1px;
    left: -1px;
    border-top-color: #00f2ff;
    border-left-color: #00f2ff;
    transform: translate(-5px, -5px);
    opacity: 0;
}

.cs-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom-color: var(--gold);
    border-right-color: var(--gold);
    transform: translate(5px, 5px);
    opacity: 0;
}

.creative-service-node:hover .cs-corner {
    transform: translate(0, 0);
    opacity: 1;
}

/* Hexagon Icon Container */
.cs-icon-hex {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2ff;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2);
}

.creative-service-node:hover .cs-icon-hex {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    transform: rotate(360deg);
}

.cs-icon-hex svg {
    width: 26px;
    height: 26px;
    transition: all 0.5s ease;
}

.creative-service-node:hover .cs-icon-hex svg {
    transform: scale(1.1);
}

/* Content Area */
.cs-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-tag {
    font-size: 13px;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.cs-title {
    font-size: 26px;
    font-weight: 800;
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.creative-service-node:hover .cs-title {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

.cs-desc {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Feature Grid Data Style */
.cs-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.cs-feature {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    font-family: monospace;
    transition: color 0.3s ease;
}

.cs-feature span {
    color: #00f2ff;
    margin-right: 8px;
    font-weight: 900;
    font-size: 16px;
}

.creative-service-node:hover .cs-feature {
    color: #fff;
}
.creative-service-node:hover .cs-feature span {
    color: var(--gold);
}

/* Action Button */
.cs-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    font-family: monospace;
    color: #00f2ff;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cs-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.creative-service-node:hover .cs-action-btn {
    background: #00f2ff;
    color: #000;
    border-color: #00f2ff;
}

.creative-service-node:hover .cs-action-btn::before {
    left: 100%;
}
    background: rgba(18, 18, 43, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 50%, rgba(0, 242, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.sp-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, #00f2ff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sp-card:hover::before,
.sp-card:hover::after {
    opacity: 1;
}

/* Icon upgrade */
.sp-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 242, 255, 0.02));
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2ff;
    margin-bottom: 30px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.05);
}

.sp-card-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1px dashed rgba(0, 242, 255, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
}

.sp-card:hover .sp-card-icon::after {
    opacity: 1;
    transform: rotate(15deg);
    border-color: var(--gold);
}

.sp-card:hover .sp-card-icon {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.02));
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
    transform: scale(1.1);
}

.sp-card-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

.sp-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.sp-card:hover .sp-card-title {
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 300;
}

.sp-card-features {
    list-style: none;
    margin-bottom: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-card-features li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sp-card:hover .sp-card-features li {
    color: #fff;
    transform: translateX(5px);
}

.sp-card:hover .sp-card-features li:nth-child(1) { transition-delay: 0.05s; }
.sp-card:hover .sp-card-features li:nth-child(2) { transition-delay: 0.1s; }
.sp-card:hover .sp-card-features li:nth-child(3) { transition-delay: 0.15s; }
.sp-card:hover .sp-card-features li:nth-child(4) { transition-delay: 0.2s; }

.feat-dot {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    flex-shrink: 0;
}

.feat-dot::before {
    content: '✓';
    font-size: 10px;
    font-weight: 900;
}

.sp-card:hover .feat-dot {
    background: var(--gold);
    color: var(--deep-navy);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.sp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    background: rgba(201, 168, 76, 0.05);
}

.sp-card-btn svg {
    transition: transform 0.3s ease;
}

.sp-card:hover .sp-card-btn {
    background: var(--gold);
    color: var(--deep-navy);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}

.sp-card-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-page-hero {
        padding: 100px 5% 50px;
    }
    .sp-directory-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage Solutions Showcase Mobile Responsiveness */
@media (max-width: 768px) {
    .solutions-container {
        gap: 30px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .solution-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 35px 25px !important;
        border-radius: 20px !important;
    }
    
    .solution-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .solution-description {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .solution-stats {
        margin-bottom: 25px !important;
        gap: 8px !important;
    }
    
    .solution-stats li {
        font-size: 13px !important;
    }
    
    .solution-tag {
        font-size: 11px !important;
        margin-bottom: 12px !important;
        gap: 8px !important;
    }
    
    .solution-number {
        font-size: 11px !important;
        padding: 1px 6px !important;
    }
    
    .solution-media {
        height: 300px !important;
        border-radius: 16px !important;
    }
    
    .cyber-screen {
        width: 94% !important;
        height: 92% !important;
        transform: scale(0.9) !important;
    }
    
    /* Mobile Smartphone Mockup Custom Scaling */
    .phone-shell {
        width: 125px !important;
        height: 225px !important;
        border-radius: 18px !important;
        padding: 6px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
        transform: none !important;
    }
    
    .phone-screen {
        padding: 6px !important;
        border-radius: 14px !important;
    }
    
    .phone-earpiece {
        width: 25px !important;
        height: 3px !important;
        top: 3px !important;
    }
    
    .phone-app-header {
        margin-bottom: 4px !important;
        gap: 4px !important;
    }
    
    .phone-app-subtitle {
        margin-bottom: 4px !important;
    }
    
    .phone-app-bill-card {
        padding: 4px 6px !important;
        margin-bottom: 4px !important;
        border-radius: 4px !important;
        border-width: 1px !important;
    }
    
    .phone-app-bill-card span {
        font-size: 5px !important;
    }
    
    .phone-app-bill-card div {
        font-size: 8px !important;
    }
    
    .phone-app-ticket-card {
        padding: 4px 6px !important;
        margin-bottom: 4px !important;
        border-radius: 4px !important;
    }
    
    .phone-app-ticket-card div span {
        font-size: 5px !important;
    }
    
    .phone-app-ticket-card div {
        font-size: 6.5px !important;
    }
    
    .phone-app-handover-card {
        padding: 3px 5px !important;
        border-radius: 4px !important;
    }
    
    .phone-app-handover-card span {
        font-size: 8px !important;
    }
    
    .phone-app-handover-card div div {
        font-size: 6.5px !important;
    }
    
    .phone-app-menu {
        padding-top: 2px !important;
        margin-top: auto !important;
    }
    
    /* Make sure buttons display side-by-side beautifully on smaller tablets/phones */
    .btn-solution-cta {
        padding: 12px 22px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
    }
    
    .btn-solution-secondary-cta {
        padding: 12px 20px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
    }
}

@media (max-width: 480px) {
    .solution-row {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
    
    .solution-title {
        font-size: 20px !important;
    }
    
    .solution-media {
        height: 250px !important;
    }
    
    .cyber-screen {
        transform: scale(0.85) !important;
    }
    
    /* On narrow smart phones, stack CTA buttons to fit perfectly */
    .solution-details div[style*="display: flex"] {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    
    .btn-solution-cta, .btn-solution-secondary-cta {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Make sure MyCloudSociety phone mockup fits beautifully inside media box on narrow screens */
    .phone-shell {
        transform: scale(0.9) !important;
    }
}

/* ── DUAL RESPONSIVE NAVBAR LINKS ── */
.mobile-only-item {
    display: none !important;
}

.label-mobile {
    display: none !important;
}

.desktop-only-item {
    display: flex;
}

.label-desktop {
    display: inline;
}

/* On mobile views under 768px */
@media (max-width: 768px) {
    .desktop-only-item {
        display: none !important;
    }
    
    .mobile-only-item {
        display: flex !important;
    }
    
    .label-desktop {
        display: none !important;
    }
    
    .label-mobile {
        display: block !important;
    }
    
    /* Make sure bottom tab grid has exactly 5 columns for the 5 visible tabs! */
    .sidebar-nav {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* ── MOBILE RIGHT DRAWER SIDEBAR ── */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 12, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden offscreen by default */
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(6, 6, 18, 0.98) 100%);
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(201, 168, 76, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-logo {
    width: 36px;
    height: 36px;
    background: #0a0a18;
    border: 2px solid #00f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #00f2ff;
    text-shadow: 0 0 8px #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.drawer-brand-text {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.drawer-close-btn:hover {
    color: var(--gold);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(6, 6, 18, 0.6) 100%) !important;
    border-color: rgba(201, 168, 76, 0.3) !important;
    color: var(--gold) !important;
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.05);
    transform: translateX(4px);
}

.drawer-icon {
    font-size: 14px;
}

.drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-footer-text {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

.drawer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.drawer-social-icon {
    font-size: 11px;
    font-family: monospace;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.drawer-social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   ── FLAGSHIP SERVICE PAGES (custom-web-development.php) ──
   ========================================================================== */

/* ── 1. SERVICE HERO ── */
.service-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-navy);
    padding: 140px 5% 80px;
    z-index: 1;
}

.service-hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 80px;
}

.service-hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.service-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.service-hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.service-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.service-hero-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ── CYBER WINDOW FRAME (SAAS DASHBOARD MOCKUP) ── */
.cyber-window-frame {
    width: 100%;
    max-width: 600px;
    background: rgba(10, 10, 24, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.08);
    transition: all 0.5s ease;
}

.cyber-window-frame:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(201, 168, 76, 0.15);
    transform: translateY(-5px);
}

.window-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.window-title {
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-left: auto;
    text-transform: uppercase;
}

.window-body {
    padding: 24px;
}

/* Dashboard Graph Area */
.dashboard-graph-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.graph-tag {
    font-family: monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 700;
}

.graph-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 10px;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #00f2ff;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.spline-visual-container {
    position: relative;
    width: 100%;
    height: 120px;
}

.spline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.spline-path-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: splineDraw 4s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes splineDraw {
    to { stroke-dashoffset: 0; }
}

.graph-tooltip {
    position: absolute;
    background: rgba(10, 10, 24, 0.95);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    animation: tooltipFloat 3s infinite ease-in-out alternate;
    z-index: 5;
}

@keyframes tooltipFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.tooltip-title {
    font-size: 9px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.tooltip-val {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
}

/* Telemetry Grid */
.telemetry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.telemetry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
}

.tel-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.tel-val {
    font-size: 18px;
    font-weight: 800;
    font-family: monospace;
    margin-bottom: 10px;
}

.green-text { color: #27c93f; text-shadow: 0 0 10px rgba(39, 201, 63, 0.2); }
.cyan-text { color: #00f2ff; text-shadow: 0 0 10px rgba(0, 242, 255, 0.2); }
.gold-text { color: var(--gold); text-shadow: 0 0 10px rgba(201, 168, 76, 0.2); }

.tel-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}

.tel-fill {
    height: 100%;
    border-radius: 20px;
}

.green-fill { background: #27c93f; }
.cyan-fill { background: #00f2ff; }
.gold-fill { background: var(--gold); }

.gold-fill.active-anim {
    animation: goldFillAnim 3s infinite alternate ease-in-out;
}

@keyframes goldFillAnim {
    0% { width: 45%; }
    100% { width: 90%; }
}

/* ── 2. TRUST BAR ── */
.service-trust-bar {
    background: rgba(10, 10, 24, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 5%;
    position: relative;
    z-index: 10;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-check {
    color: var(--gold);
    font-size: 16px;
    font-weight: 900;
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.trust-text strong {
    color: #fff;
    font-weight: 700;
}

/* ── 3. "WHAT WE BUILD" ── */
.what-we-build {
    padding: 100px 5%;
    background: #040409;
    position: relative;
    z-index: 2;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.build-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.build-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.build-cards-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.build-card {
    background: rgba(18, 18, 43, 0.35);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.build-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.build-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.build-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.build-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.build-card-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.build-card:hover .build-card-glow {
    opacity: 1;
}

/* ── 4. INTERACTIVE SHOWCASE ── */
.interactive-showcase {
    padding: 100px 5%;
    background: #020206;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-tabs-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-section-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.showcase-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.showcase-tab {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
    width: 100%;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

.showcase-tab.active {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.25);
}

.tab-number {
    font-family: monospace;
    font-weight: 800;
    font-size: 14px;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 6px 12px;
    border-radius: 8px;
    line-height: 1;
}

.tab-text-wrap {
    flex: 1;
}

.tab-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.showcase-tab.active .tab-title {
    color: var(--gold);
}

.tab-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.showcase-visuals-side {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.visualizer-box {
    width: 100%;
    max-width: 480px;
    background: #06060c;
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0, 242, 255, 0.06);
}

.visualizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 24px;
}

.vis-status-badge {
    font-family: monospace;
    font-size: 10px;
    color: #fff;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vis-green-dot {
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
}

.vis-timer {
    font-family: monospace;
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
}

.visual-panel {
    display: none;
    animation: fadeInPanel 0.4s forwards ease;
}

.visual-panel.active {
    display: block;
}

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

/* Speedometer Panel */
.lighthouse-speedometer {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
}

.speed-ring {
    width: 150px;
    height: 150px;
    border: 4px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15), inset 0 0 30px rgba(201, 168, 76, 0.15);
    animation: rotateSpeedRing 15s linear infinite;
}

@keyframes rotateSpeedRing {
    to { transform: rotate(360deg); }
}

.speed-number {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    font-family: monospace;
    /* Reverse rotation so it remains straight */
    animation: rotateSpeedRingInv 15s linear infinite;
}

.speed-label {
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 4px;
    animation: rotateSpeedRingInv 15s linear infinite;
}

@keyframes rotateSpeedRingInv {
    from { transform: rotate(0); }
    to { transform: rotate(-360deg); }
}

.vis-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-metric {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
}

.mm-lbl {
    font-size: 8px;
    color: var(--text-muted);
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.mm-val {
    font-size: 15px;
    font-weight: 800;
    font-family: monospace;
}

/* Workflows Panel */
.workflow-flows-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0 25px 0;
}

.wf-node {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wf-node.active-node {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.05);
}

.wf-icon {
    font-size: 16px;
}

.wf-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.wf-line-connector {
    width: 2px;
    height: 15px;
    background: rgba(0, 242, 255, 0.15);
    margin-left: 26px;
    position: relative;
    overflow: hidden;
}

.line-dot {
    position: absolute;
    top: -4px;
    left: 0;
    width: 2px;
    height: 4px;
    background: #00f2ff;
    animation: flowDot 2s infinite linear;
}

@keyframes flowDot {
    to { top: 15px; }
}

.vis-feedback-text {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 6px;
    border-left: 2px solid var(--gold);
}

/* Scaling Node Replicas */
.replica-nodes-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.replica-node {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
}

.replica-node.active-node {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
}

.replica-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.replica-led.green-pulse { background: #27c93f; box-shadow: 0 0 10px #27c93f; }
.replica-led.gold-pulse { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.replica-led.cyan-pulse { background: #00f2ff; box-shadow: 0 0 10px #00f2ff; }

.replica-ping {
    font-size: 11px;
    font-family: monospace;
    color: var(--text-muted);
}

/* ── 5. DEVELOPMENT PROCESS (TIMELINE) ── */
.dev-process {
    padding: 100px 5%;
    background: #040409;
    position: relative;
    z-index: 2;
}

.timeline-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-line-glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), #00f2ff, var(--gold));
    animation: timelineLaser 8s infinite linear;
}

@keyframes timelineLaser {
    0% { transform: scaleY(0.1); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0.1); transform-origin: bottom; }
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0a0a18;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-weight: 800;
    font-size: 13px;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(201,168,76,0.3);
    flex-shrink: 0;
}

.timeline-step:nth-child(even) .step-badge {
    border-color: #00f2ff;
    color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.step-content {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── 6. TECH STACK SECTION ── */
.tech-stack-section {
    padding: 80px 5%;
    background: #020206;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.tech-chips-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 10px 20px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.tech-chip:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201,168,76,0.1);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.chip-dot.pink { background: #ff007f; box-shadow: 0 0 10px #ff007f; }
.chip-dot.cyan { background: #00f2ff; box-shadow: 0 0 10px #00f2ff; }
.chip-dot.green { background: #27c93f; box-shadow: 0 0 10px #27c93f; }
.chip-dot.orange { background: #ff9900; box-shadow: 0 0 10px #ff9900; }
.chip-dot.purple { background: #9900ff; box-shadow: 0 0 10px #9900ff; }
.chip-dot.red { background: #ff0000; box-shadow: 0 0 10px #ff0000; }
.chip-dot.gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* ── 7. METRIC-DRIVEN CASE STUDIES ── */
.case-study-section {
    padding: 100px 5%;
    background: #040409;
    position: relative;
    z-index: 2;
}

.case-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.case-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.case-header-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.case-header-title span {
    color: var(--gold);
}

.case-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.case-metric-box {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.cmb-val {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    font-family: monospace;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(201,168,76,0.25);
}

.cmb-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.case-desc-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.case-desc-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-testimonial-bubble {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.ctb-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ctb-author {
    display: flex;
    flex-direction: column;
}

.ctb-author strong {
    font-size: 13.5px;
    color: var(--gold);
    font-weight: 700;
}

.ctb-author span {
    font-size: 11px;
    color: var(--text-muted);
}

.case-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.cyber-window-frame.alt-frame {
    border-color: rgba(0, 242, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 30px rgba(0, 242, 255, 0.05);
}

.payroll-telemetry-mock {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ptm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
}

.ptm-lbl {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.ptm-val {
    font-size: 13.5px;
    font-weight: 800;
    font-family: monospace;
}

/* ── 8. WHY NEXGENN ── */
.why-nexgenn-service {
    padding: 100px 5%;
    background: #020206;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.why-cards-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(18, 18, 43, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-card-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.why-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── 9. FAQ ACCORDION ── */
.service-faq {
    padding: 100px 5%;
    background: #040409;
    position: relative;
    z-index: 2;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(255,255,255,0.02);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    user-select: none;
}

.faq-icon-arrow {
    font-size: 20px;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: #00f2ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px; /* Large enough to host content */
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── 10. FINAL CTA ── */
.service-final-cta {
    position: relative;
    padding: 120px 5%;
    background: #020205;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

.cta-content-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.massive-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.massive-cta-title span {
    color: var(--gold);
    text-shadow: 0 0 25px rgba(201,168,76,0.25);
}

.massive-cta-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.centered-group {
    justify-content: center !important;
}

/* ── RESPONSIVENESS OVERRIDES ── */
@media (max-width: 1024px) {
    .service-hero-container,
    .showcase-container,
    .case-container {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center;
    }
    
    .service-hero-content,
    .showcase-tabs-side,
    .case-details {
        max-width: none !important;
        align-items: center !important;
    }
    
    .service-hero-desc,
    .showcase-section-desc,
    .case-desc-text {
        max-width: none !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-group {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-top: 100px !important;
    }
    
    .trust-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .build-cards-grid,
    .why-cards-grid {
        grid-template-columns: 1fr !important;
    }
    
    .case-metrics-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wf-node {
        padding: 10px 14px !important;
    }
}

/* ==========================================================================
   ── ADVANCED ANIMATIONS & BACKGROUNDS (USER REQUEST) ──
   ========================================================================== */

/* Cyber Background Animation */
.cyber-bg-animation {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.cyber-grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 15s linear infinite;
}
@keyframes gridMove {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(60px) translateZ(-200px); }
}
.cyber-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: floatParticle 15s infinite alternate ease-in-out;
}
.cyber-particle.p1 { width: 400px; height: 400px; background: rgba(0, 242, 255, 0.15); top: -10%; left: -10%; }
.cyber-particle.p2 { width: 500px; height: 500px; background: rgba(201, 168, 76, 0.12); bottom: -20%; right: -10%; animation-delay: -5s; }
.cyber-particle.p3 { width: 300px; height: 300px; background: rgba(255, 0, 127, 0.1); top: 30%; left: 50%; animation-delay: -10s; }
.cyber-particle.p4 { width: 350px; height: 350px; background: rgba(39, 201, 63, 0.08); bottom: 20%; left: 10%; animation-delay: -7s; }

@keyframes floatParticle {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-up.active-reveal {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.active-reveal {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.active-reveal {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Enhanced Typography Animations */
.text-gradient-animate {
    background: linear-gradient(90deg, #fff, var(--gold), #00f2ff, #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-glow-pulse {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
    animation: textPulseGlow 3s infinite alternate;
}
@keyframes textPulseGlow {
    0% { text-shadow: 0 0 10px rgba(201, 168, 76, 0.3); }
    100% { text-shadow: 0 0 30px rgba(201, 168, 76, 0.8); }
}

/* Floating Mockup Animation */
.cyber-window-frame {
    animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(201, 168, 76, 0.2); }
    100% { transform: translateY(0); }
}
.cyber-window-frame:hover {
    animation-play-state: paused;
}

/* Decorative Line Tracer */
.tracer-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: tracerMove 4s linear infinite;
    opacity: 0.5;
}
@keyframes tracerMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Global Mobile Overflow Fix */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}

/* ── ULTRA PREMIUM LAUNCHKIT REDESIGN ── */
.offer-container {
    background: linear-gradient(145deg, rgba(12, 16, 36, 0.95), rgba(4, 6, 15, 0.98)) !important;
    border: 1px solid rgba(0, 242, 255, 0.25) !important;
    border-radius: 24px !important;
    box-shadow: inset 0 0 40px rgba(0, 242, 255, 0.05), 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 255, 0.1) !important;
    backdrop-filter: blur(25px) !important;
}

.offer-glow-bg {
    background: radial-gradient(circle at 30% 50%, rgba(0, 242, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 40%) !important;
    animation: slowSpin 20s linear infinite !important;
}

@keyframes slowSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.offer-badge-tag {
    background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)) !important;
    color: #f5d47a !important;
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.offer-title {
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.offer-title span {
    background: linear-gradient(to right, #c9a84c, #f5d47a, #ffffff, #c9a84c) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shine 3s linear infinite !important;
}

.time-val {
    background: rgba(0, 5, 20, 0.8) !important;
    border: 1px solid rgba(0, 242, 255, 0.4) !important;
    color: #00f2ff !important;
    font-family: 'Space Grotesk', monospace !important;
    box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.15), 0 10px 25px rgba(0,0,0,0.6) !important;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8) !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

.time-val::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.time-label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

.time-colon {
    color: rgba(0, 242, 255, 0.5) !important;
    animation: blink 1s infinite alternate !important;
}

@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; text-shadow: 0 0 15px #00f2ff; }
}

.offer-image-box img {
    filter: drop-shadow(0 30px 60px rgba(0, 242, 255, 0.4)) !important;
    animation: float-3d 6s ease-in-out infinite alternate !important;
}

@keyframes float-3d {
    0% { transform: translateY(0px) rotateY(-8deg) rotateX(8deg); }
    100% { transform: translateY(-25px) rotateY(8deg) rotateX(-8deg); }
}

.pulse-ring {
    border: 2px solid rgba(0, 242, 255, 0.4) !important;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2) inset !important;
}

.offer-features-list li {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease !important;
    cursor: default;
}
.offer-features-list li:hover {
    transform: translateX(10px) !important;
    color: #00f2ff !important;
}

.offer-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%) !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.offer-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: sweep 4s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.offer-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.6) !important;
}

/* ── DYNAMIC SIDEBAR LOGO ── */
.dynamic-sidebar-logo {
    width: 66px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.2));
}

.sidebar:hover .dynamic-sidebar-logo {
    width: 130px;
    max-height: none;
    margin-left: 0px; /* Reset alignment when expanded */
}

/* ── GLOBAL 45s AUTO CONTACT MODAL (MOBILE FIRST) ── */
.auto-contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auto-contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auto-contact-modal {
    background: linear-gradient(145deg, rgba(12, 16, 36, 0.95), rgba(4, 6, 15, 0.98));
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    padding: 30px 20px;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 242, 255, 0.05), 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auto-contact-modal-overlay.active .auto-contact-modal {
    transform: translateY(0) scale(1);
}

.auto-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-modal-close:hover {
    background: rgba(0, 242, 255, 0.15);
    color: #00f2ff;
    border-color: rgba(0, 242, 255, 0.3);
    transform: rotate(90deg);
}

.auto-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.auto-modal-header h3 {
    font-family: var(--font-space);
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.auto-modal-header p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.auto-modal-form .form-group {
    margin-bottom: 12px;
}

.auto-modal-form input,
.auto-modal-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-outfit);
    font-size: 16px; /* 16px prevents iOS auto-zoom on mobile */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auto-modal-form input:focus,
.auto-modal-form textarea:focus {
    outline: none;
    border-color: var(--cyan-glow);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
    background: rgba(0, 242, 255, 0.02);
}

.auto-modal-form textarea {
    resize: none;
}

.btn-submit-modal {
    width: 100%;
    background: linear-gradient(135deg, var(--cyan-glow) 0%, #0099ff 100%);
    color: #040612;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-family: var(--font-space);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.3);
}

@media (min-width: 768px) {
    .auto-contact-modal {
        padding: 35px 25px;
    }
    .auto-modal-header h3 {
        font-size: 26px;
    }
    .auto-modal-header p {
        font-size: 14px;
    }
    .auto-modal-form input,
    .auto-modal-form textarea {
        font-size: 15px;
    }
}/* Advanced Figma Canvas Dashboard Components */
.canvas-grid-mesh { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 20px 20px; }
.figma-dashboard-component { position: absolute; top: 20px; left: 30px; width: 380px; height: 260px; border: 1px solid var(--cyan-glow); background: rgba(6, 8, 22, 0.85); border-radius: 12px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 5; transform: scale(0.9); transform-origin: top left; }
.comp-inner-glow { position: absolute; inset: 0; border-radius: 12px; background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 80%); pointer-events: none; }
.resize-handle { position: absolute; width: 8px; height: 8px; background: #ffffff; border: 1.5px solid var(--cyan-glow); border-radius: 1px; z-index: 10; }
.resize-handle.top-left { top: -4px; left: -4px; cursor: nwse-resize; }
.resize-handle.top-right { top: -4px; right: -4px; cursor: nesw-resize; }
.resize-handle.bottom-left { bottom: -4px; left: -4px; cursor: nesw-resize; }
.resize-handle.bottom-right { bottom: -4px; right: -4px; cursor: nwse-resize; }
.dimension-tag { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); background: var(--cyan-glow); color: #020412; font-family: monospace; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0, 242, 255, 0.3); }
.simulated-dashboard-ui { padding: 20px; display: flex; flex-direction: column; gap: 15px; text-align: left; }
.sim-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 10px; }
.sim-brand { font-family: var(--font-space); font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; }
.sim-status { font-family: monospace; font-size: 0.6rem; color: #27c93f; background: rgba(39, 201, 63, 0.08); padding: 2px 6px; border-radius: 3px; }
.sim-chart-panel { background: rgba(255, 255, 255, 0.01); border: 1px solid rgba(255, 255, 255, 0.03); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.sim-chart-meta { display: flex; justify-content: space-between; align-items: center; }
.chart-title { font-size: 0.55rem; font-family: var(--font-space); color: #8b949e; letter-spacing: 0.5px; }
.chart-val { font-family: var(--font-space); font-size: 0.9rem; font-weight: 700; }
.sim-sparkline { width: 100%; height: 60px; }
.sim-grid-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sim-mini-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 6px; padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.card-label { font-size: 0.5rem; font-family: var(--font-space); color: #8b949e; }
.card-metric { font-family: var(--font-space); font-size: 0.82rem; font-weight: 700; }
.cursor-gold { background: var(--gold); }
/* ==========================================================================
   SEO LANDING PAGE SPECIFIC STYLES
   ========================================================================== */

.seo-hero {
    position: relative;
    padding: 180px 20px 100px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.seo-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.seo-trust-pills span {
    font-family: var(--font-space);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan-glow);
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.seo-section {
    padding: 100px 20px;
    position: relative;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-card {
    background: rgba(10, 10, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.05);
}

.seo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.seo-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.seo-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.seo-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.seo-card ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--cyan-glow);
}

.seo-link {
    display: inline-block;
    color: var(--cyan-glow);
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-space);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.seo-link:hover {
    color: var(--white);
}

.seo-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.seo-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.seo-benefits-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.seo-glass-visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.seo-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.seo-tech-tags span {
    font-family: var(--font-space);
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.3s;
}

.seo-tech-tags span:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--cyan-glow);
    color: var(--cyan-glow);
}

.seo-content-block {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.seo-content-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content-block strong {
    color: var(--white);
}

.seo-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.seo-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--white);
    padding: 25px 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-outfit);
}

.faq-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-faq-answer .answer-content {
    padding-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.seo-faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--cyan-glow);
}

.seo-final-cta {
    padding: 120px 20px;
    background: linear-gradient(0deg, var(--deep-navy) 0%, #070b24 100%);
    border-top: 1px solid rgba(0, 242, 255, 0.15);
    position: relative;
}

@media (max-width: 992px) {
    .seo-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .seo-hero {
        padding: 140px 20px 80px;
    }
}

@media (max-width: 768px) {
    .seo-content-block {
        padding: 30px 20px;
    }
    .seo-faq-question {
        font-size: 1.05rem;
    }
}
/* ==========================================================================
   MOBILE-FIRST SEO LANDING PAGE (.mf-)
   ========================================================================== */

/* Hero Section */
.mf-seo-hero {
    position: relative;
    padding: 140px 20px 80px;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.mf-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 40%),
                var(--deep-navy);
    animation: meshPulse 10s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.mf-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.mf-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--cyan-glow);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mf-title {
    font-family: var(--font-space);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.mf-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.mf-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mf-pills span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
}

/* Hologram Visual */
.mf-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.mf-hologram-card {
    width: 320px;
    background: rgba(10, 10, 24, 0.6);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    animation: mfFloat 6s ease-in-out infinite;
}

@keyframes mfFloat {
    0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-20px); }
}

.mf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mf-dots { display: flex; gap: 5px; }
.mf-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.mf-dots span:nth-child(1) { background: #ff5f56; }
.mf-dots span:nth-child(2) { background: #ffbd2e; }
.mf-dots span:nth-child(3) { background: #27c93f; }

.mf-title-sm {
    font-size: 0.8rem;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mf-card-body {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.mf-graph-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: 0.3s;
}

.mf-graph-bar.active {
    background: var(--cyan-glow);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.mf-card-footer { text-align: center; }
.mf-metric { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.mf-metric span { font-size: 0.8rem; color: var(--text-muted); display: block; font-weight: 400;}

.mf-float-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
    animation: mfFloat 8s ease-in-out infinite reverse;
}

.mf-float-pill.fp-1 { top: -20px; right: -20px; }
.mf-float-pill.fp-2 { bottom: 20px; left: -30px; animation-delay: 2s; }

/* Global Sections */
.mf-seo-section {
    padding: 80px 20px;
    position: relative;
}

.mf-dark-sec {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.mf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mf-sec-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.mf-sec-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Swipeable Services */
.mf-swipe-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 20px;
}
.mf-swipe-wrapper::-webkit-scrollbar { display: none; }

.mf-swipe-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.mf-service-card {
    width: 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    flex-shrink: 0;
}

.mf-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mf-service-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.mf-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Split Section */
.mf-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mf-check-list { list-style: none; }
.mf-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.mf-check-list li strong { color: var(--white); display: block; margin-bottom: 5px; font-size: 1.05rem;}

.mf-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mf-t-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
}

/* Mobile FAQ */
.mf-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.mf-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mf-faq-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    padding: 20px 0;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-outfit);
    font-weight: 600;
}

.mf-faq-btn span {
    font-size: 1.5rem;
    transition: 0.3s;
    color: rgba(255,255,255,0.5);
}

.mf-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mf-panel-inner {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sticky CTA */
.mf-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 24, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    padding: 15px 20px;
    z-index: 1000;
    display: none; /* Hidden on desktop */
}

.mf-sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mf-sticky-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.mf-btn-primary {
    background: var(--cyan-glow);
    color: var(--deep-navy);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .mf-hero-container, .mf-split { grid-template-columns: 1fr; }
    .mf-hero-visual { margin-top: 40px; }
    .mf-sticky-cta { display: block; }
    .mf-swipe-track { padding-right: 20px; }
}

@media (max-width: 600px) {
    .mf-seo-hero { padding-top: 100px; }
    .mf-title { font-size: 2.2rem; }
    .mf-hologram-card { width: 100%; max-width: 320px; transform: none; animation: none;}
    .mf-float-pill { display: none; }
}
