:root {
    --bg-color: #06050A;
    --text-color: #ffffff;
    --white: #ffffff;
    --primary: #ffffff;
    --secondary: #999999;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    --grad-orange: linear-gradient(135deg, #FF9B44 0%, #FF6044 100%);
    --grad-pink: linear-gradient(135deg, #FF4478 0%, #FF44AC 100%);
    --grad-purple: linear-gradient(135deg, #8E44FF 0%, #B044FF 100%);
    --grad-blue: linear-gradient(135deg, #445BFF 0%, #4490FF 100%);

    /* Glassmorphism & Crystal Tokens */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(0, 194, 255, 0.3);

    /* V6.1 Services Tokens */
    --bg: #04050d;
    --card: #0a0c1a;
    --border: rgba(255, 255, 255, .07);
    --white-sv: #eeedf6;
    --muted: rgba(200, 205, 230, .42);
    --cyan: #3ff0ff;
    --blue: #4f8cff;
    --violet: #a259ff;
    --pink: #ff6fd8;
    --green: #25d366;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

html {
    cursor: none;
    scroll-behavior: smooth;
}

/* Global Luminous Glass System */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px var(--glass-glow);
}

.luminous-bg-break {
    background: radial-gradient(circle at center, rgba(142, 68, 255, 0.05) 0%, transparent 70%);
}

/* Image-Based Crystal Cursor with Precision Dot */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-dot.dot-hover {
    width: 10px;
    height: 10px;
    background-color: #00C2FF;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.8);
}

.cursor-crystal {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 9999;
}

.crystal-img {
    position: absolute;
    width: 80px;
    /* Increased size as requested */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 194, 255, 0.5));
    transition: transform 0.1s ease-out;
    animation: crystalIdle 3s ease-in-out infinite;
    pointer-events: none;
    /* v12: PREVENT EVENT CAPTURE */
}

.cursor-crystal.shard-hover .crystal-img {
    filter: drop-shadow(0 0 25px rgba(0, 194, 255, 0.8)) brightness(1.2);
}

.crystal-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

/* Shimmer Sparkles */
#shard-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.shimmer-sparkle {
    position: fixed;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px rgba(0, 194, 255, 0.5);
    pointer-events: none;
}

@keyframes crystalIdle {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0) rotate(5deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-5px) rotate(-5deg);
    }
}

@keyframes glowPulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

/* Ensure buttons still hide cursor */
a,
button,
.service-card,
.portfolio-item,
.cosmic-card,
.logo-name,
details,
summary {
    cursor: none !important;
}

h1,
h2,
h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
}

.serif-italic {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 70px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.1;
}

.navbar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 0 2rem;
    /* Match global container padding */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
    transition: opacity 0.3s ease;
}

.logo-img {
    height: 26px;
    /* Increased for better visibility */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 6px;
    gap: 6px;
    position: fixed;
    /* Anchor to viewport center */
    left: 50%;
    top: 30px;
    /* Match navbar top */
    transform: translateX(-50%);
    z-index: 1003;
    /* Above navbar content */
    height: 48px;
    /* Fixed height for vertical alignment */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-links a.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-cta {
    background: #fff;
    color: #000;
    padding: 8px 18px;
    /* Ultra-compact padding */
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.82rem;
    /* Slightly smaller font */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.desktop-only {
    display: flex;
}

/* Hamburger & Mobile Menu Styles */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .menu-toggle span {
        width: 16px;
        margin: 2px 0;
    }
}

/* Toggle Open State */
.menu-toggle.active {
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
    width: 20px;
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
    width: 20px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-link {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--cyan);
    transform: scale(1.05);
}

.mobile-link.cta {
    font-size: 1.25rem;
    padding: 16px 32px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    margin-top: 20px;
}

/* Consolidated with line 317 */

.arrow {
    font-size: 1rem;
    font-weight: normal;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Raleway', sans-serif !important;
    transition: transform 0.3s, opacity 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--white);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    text-align: center;
    background: #060606;
}

.hero-video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center 20%;
    /* Shifts the video subject down slightly */
    opacity: 1;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12vh;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: 2;
    pointer-events: none;
}

/* Removed hero darkening to keep video at 100% opacity */
.hero::before {
    display: none;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding-top: 0;
    transform: translateY(-210px);
    /* Lifted slightly less to clear the navbar but still feel centered */
}

@media (min-width: 1025px) {
    .subtitle {
        white-space: normal;
        max-width: 620px;
    }
}

/* Improve hero behavior on small screens */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 90vh;
        padding-top: 120px;
        /* space for navbar */
        padding-bottom: 60px;
    }

    .hero-centered {
        transform: none;
        align-items: center;
        justify-content: flex-start;
    }

    .desktop-break {
        display: none;
    }

    .hero::before {
        display: none;
    }

    .hero-video {
        mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        transform: translateY(60px);
        /* shift video down slightly below content on mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-text {
        padding: 0 10px;
    }
}

.hero-text {
    max-width: 900px;
    /* Widened slightly for the new content */
    text-align: center;
    animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.desktop-break {
    display: inline;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
    /* Solid White */
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.whale-word {
    color: #ffffff;
    display: inline-block;
    position: relative;
    -webkit-text-fill-color: currentColor;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.whale-word::after {
    content: none;
}

@keyframes whaleGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    display: block;
    margin-bottom: 24px;
    max-width: 1000px;
    /* Desktop: allow single-line subtitle */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    opacity: 0;
}

/* On tablets/phones keep subtitle narrower so it wraps nicely */
@media (max-width: 992px) {
    .subtitle {
        max-width: 550px;
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Previews removal - no longer needed in centered layout */

/* --- New Website Structure (Post-Hero) --- */


/* Premium Services Section */
.bento-services {
    padding: 140px 0;
    background: #06050a;
    overflow: hidden;
}

/* Filter Navigation */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: #00D2FF;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}

/* ──────────────────────────────────────────────────────────
   ADVANCED SERVICES SECTION (V6.1 MASTER)
   ────────────────────────────────────────────────────────── */
.services-v6 {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background: var(--bg);
}

/* Header Removed - Now using .sv-hd-block inside .sv-tabs */

/* Sidebar Tabs */
.overall-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 8px;
    margin-bottom: 40px;
}

.ol-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .032);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.ol-card.showcase {
    display: flex;
    flex-direction: column;
}

.ol-card.showcase:hover {
    border-color: rgba(79, 140, 255, .22);
}

.ol-card.overview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ol-card.overview:hover {
    border-color: rgba(162, 89, 255, .22);
}

/* Mockups Area */
.ol-mockups {
    height: 220px;
    position: relative;
    margin-bottom: 12px;
    overflow: visible;
}

.mock-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5), 0 2px 8px rgba(0, 0, 0, .3);
}

.mock-top {
    height: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.mock-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.mock-body {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-asset-block {
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Card 1: Social */
.social-card {
    width: 180px;
    height: 190px;
    left: 0;
    top: 20px;
    transform: rotate(-3deg);
    z-index: 1;
    background: linear-gradient(145deg, #0d1117, #1a0818);
}

.social-card:hover {
    transform: rotate(-3deg) translateY(-8px) scale(1.02);
}

.instagram-bg {
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 111, 216, .1), rgba(162, 89, 255, .07));
}

/* Card 2: UGC */
.ugc-card {
    width: 160px;
    height: 210px;
    left: 150px;
    top: 0;
    transform: rotate(1.5deg);
    z-index: 2;
    background: linear-gradient(145deg, #0f0f1a, #1a1040);
}

.ugc-card:hover {
    transform: rotate(1.5deg) translateY(-8px) scale(1.02);
}

.ugc-bg {
    height: 110px;
    background: linear-gradient(160deg, rgba(162, 89, 255, .15), rgba(79, 140, 255, .08));
}

.mock-play-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(162, 89, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-play-tri {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(162, 89, 255, .8);
    margin-left: 2px;
}

.mock-live-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: rgba(162, 89, 255, .6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(162, 89, 255, .5);
}

/* Card 3: Website */
.web-card {
    width: 200px;
    height: 175px;
    left: 285px;
    top: 28px;
    transform: rotate(-1deg);
    z-index: 3;
    background: linear-gradient(145deg, #0a1a0f, #0f2a18);
}

.web-card:hover {
    transform: rotate(-1deg) translateY(-8px) scale(1.02);
}

.mock-url-bar {
    flex: 1;
    height: 9px;
    background: rgba(63, 240, 255, .06);
    border: 1px solid rgba(63, 240, 255, .08);
    border-radius: 3px;
    margin-left: 6px;
}

.web-hero-bg {
    height: 50px;
    background: linear-gradient(135deg, rgba(63, 240, 255, .07), rgba(79, 140, 255, .05));
    margin-bottom: 5px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 5px;
}

.mock-grid-item {
    height: 22px;
    background: rgba(255, 255, 255, .03);
    border-radius: 4px;
}

/* Skeleton Lines */
.mock-skeleton {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-line {
    height: 4px;
    background: rgba(255, 255, 255, .05);
    border-radius: 2px;
}

.m-line.w-90 {
    width: 90%;
}

.m-line.w-80 {
    width: 80%;
}

.m-line.w-70 {
    width: 70%;
}

.m-line.w-60 {
    width: 60%;
}

.m-line.w-50 {
    width: 50%;
}

.m-line.w-40 {
    width: 40%;
}

.social-card .m-line {
    background: rgba(255, 111, 216, .1);
}

/* Media Query Updates */
@media (max-width: 768px) {
    .ol-mockups {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mock-card {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
    }
}

.skeleton-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sl {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .05);
}

.sl.w-70 {
    width: 70%;
}

.sl.w-40 {
    width: 40%;
}

.sl.w-60 {
    width: 60%;
}

.sl.w-50 {
    width: 50%;
}

.sl.w-80 {
    width: 80%;
}

.sl.w-90 {
    width: 90%;
}

.sl.w-30 {
    width: 30%;
}

/* Chips Area */
.ol-chips {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.ol-chip {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.ol-chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pink-tint {
    background: rgba(255, 111, 216, .1);
}

.green-tint {
    background: rgba(37, 211, 102, .1);
}

.blue-tint {
    background: rgba(79, 140, 255, .1);
}

.client-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.result-label {
    font-size: 10px;
    color: var(--muted);
}

/* Typography elements */
.ol-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--white);
}

.showcase .ol-heading {
    font-size: 28px;
    margin-bottom: 4px;
}

.ol-desc {
    font-size: 13px;
    color: rgba(200, 205, 230, .42);
    line-height: 1.6;
}

.ol-cta {
    background: #eeedf6;
    color: #04050d !important;
    border-radius: 50px;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    cursor: pointer;
    transition: .3s;
    width: fit-content;
    border: none;
}

.ol-cta span {
    transition: .3s;
}

.ol-cta:hover {
    background: #d4d2e8;
}

.ol-cta:hover span {
    transform: translate(3px, -3px);
}

/* Overview Card Styles */
.ol-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 89, 255, .12), transparent 70%);
    pointer-events: none;
}

.ol-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.ol-tag {
    font-size: 11px;
    color: rgba(200, 205, 230, .45);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .02);
    transition: .3s;
}

.ol-tag:hover {
    color: #fff;
    border-color: rgba(162, 89, 255, .3);
    background: rgba(162, 89, 255, .06);
}

.ol-tag.more {
    color: #a259ff;
    border-color: rgba(162, 89, 255, .2);
    background: rgba(162, 89, 255, .05);
}

.overview .ol-heading {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.ol-heading em {
    font-style: italic;
    background: linear-gradient(120deg, #a259ff, #ff6fd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Sidebar Tabs */
.sv-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

.sv-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-hd-block {
    padding-top: 30px;
    /* Significant upward shift for visual alignment */
    margin-bottom: 40px;
    padding-left: 10px;
}

.hd-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.hd-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    /* Slightly smaller for sidebar fit */
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hd-title em {
    font-style: italic;
    color: var(--blue);
}

.sv-tab {
    position: relative;
    padding: 24px 30px;
    background: rgba(255, 255, 255, .015);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    overflow: hidden;
}

.sv-tab:hover {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .15);
}

.sv-tab.active {
    background: rgba(255, 255, 255, .04);
    border-color: var(--accent);
}

.sv-tab-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    opacity: .4;
}

.sv-tab.active .sv-tab-num {
    color: var(--accent);
    opacity: 1;
}

.sv-tab-info {
    flex: 1;
}

.sv-tab-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    transition: .3s;
}

.sv-tab.active .sv-tab-name {
    color: var(--white);
    font-weight: 600;
}

.sv-tab-chip {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    opacity: 0;
    transform: scale(.8);
    transition: .4s cubic-bezier(.2, .8, .2, 1);
}

.sv-tab.active .sv-tab-chip {
    opacity: 1;
    transform: scale(1);
}

.sv-tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    box-shadow: 0 0 12px var(--accent);
}

/* Panels Area */
.sv-panels {
    position: relative;
    height: 720px;
    /* Restored desktop height for strong hero-style layout */
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
}

.sv-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 80px 80px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.2, .8, .2, 1), transform .6s cubic-bezier(.2, .8, .2, 1), visibility .6s;
    display: flex;
    flex-direction: column;
}

.sv-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sv-panel-bg-num {
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 340px;
    font-weight: 900;
    color: var(--white);
    opacity: .015;
    line-height: .8;
    pointer-events: none;
}

.sv-panel-head {
    /* Removed fixed height here, using fixed child heights for better control */
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.sv-panel-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
    white-space: nowrap;
}

.sv-panel-title em {
    font-style: italic;
    color: var(--panel-accent);
    font-weight: 100;
}

.sv-panel-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 500px;
    overflow: hidden;
}

/* Visual Base */
.sv-panel-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 10px;
    /* Moved higher */
}

/* Visuals Styles */
.vis-social {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.vis-cal {
    background: rgba(255, 255, 255, .01);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    flex: 1;
    max-width: 380px;
}

.vis-cal-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    opacity: .6;
    letter-spacing: .1em;
}

.vis-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.vis-cal-day-label {
    text-align: center;
    font-size: 9px;
    font-weight: 900;
    padding-bottom: 12px;
    opacity: .2;
}

.vis-cal-cell {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, .005);
    border: 1px solid rgba(255, 255, 255, .02);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vis-cal-cell.today {
    background: rgba(79, 140, 255, .15);
    border-color: #4f8cff;
    color: #4f8cff;
    font-weight: 800;
    font-size: 12px;
}

.has-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.has-dot.reel::after {
    background: #ff6fd8;
    box-shadow: 0 0 8px #ff6fd8;
}

.has-dot.caro::after {
    background: #4f8cff;
    box-shadow: 0 0 8px #4f8cff;
}

.has-dot.story::after {
    background: #3ff0ff;
    box-shadow: 0 0 8px #3ff0ff;
}

.vis-cal-legend {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.vis-cal-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 800;
    color: var(--muted);
    opacity: .7;
}

.vis-cal-legend-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.vis-post {
    width: 220px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(16px);
}

.vis-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vis-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6fd8, #4f8cff);
}

.vis-post-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.vis-post-handle {
    font-size: 10px;
    color: var(--muted);
}

.vis-post-image {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, .015);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vis-post-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.vis-post-action {
    width: 15px;
    height: 15px;
    opacity: .5;
}

.vis-post-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.vis-post-line {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .04);
}

.vis-post-tags {
    font-size: 10px;
    color: #4f8cff;
    font-weight: 500;
    display: flex;
    gap: 8px;
}

/* UGC VISUAL */
.vis-ugc {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    /* Left aligned */
    gap: 24px;
    width: 100%;
    transform: scale(0.95);
}

.vis-reel.reel-1 {
    width: 120px;
    height: 180px;
}

.vis-reel.reel-2 {
    width: 120px;
    height: 220px;
}

.vis-reel.reel-3 {
    width: 120px;
    height: 160px;
}

.vis-reel {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.vis-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.vis-reel-label {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    opacity: .3;
}

.vis-ugc-stat {
    padding-left: 30px;
}

.vis-ugc-stat-num {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 200;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}

/* CHAT VISUAL */
.vis-chat {
    width: 620px;
    max-height: 380px;
    background: #080a14;
    border: 1px solid #1a1c2e;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
    transform: scale(0.8);
}

.vis-chat-header {
    padding: 18px 28px;
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: 14px;
}

.vis-chat-avatar {
    font-size: 24px;
}

.vis-chat-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.vis-chat-status {
    font-size: 11px;
    color: var(--green);
    opacity: .8;
}

.vis-chat-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.vis-msg {
    padding: 14px 20px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.5;
    border-radius: 18px;
}

.vis-msg.in {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    align-self: flex-start;
    color: rgba(255, 255, 255, .7);
}

.vis-msg.out {
    background: rgba(37, 211, 102, .04);
    border: 1px solid rgba(37, 211, 102, .15);
    align-self: flex-end;
    color: var(--white);
}

.vis-msg-time {
    font-size: 9px;
    margin-top: 8px;
    opacity: .3;
    text-align: right;
}

/* PIPELINE VISUAL */
.vis-pipeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.vis-pipe-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 20px;
    padding: 20px;
    transition: .3s;
}

.vis-pipe-row:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-5px);
}

.vis-pipe-node {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.vis-pipe-node.circle {
    border-radius: 50%;
}

.vis-pipe-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}

.vis-pipe-connector {
    display: none;
}

/* BROWSER VISUAL */
.vis-browser {
    width: 480px;
    background: #080a14;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
    transform: scale(0.95);
}

.vis-browser-bar {
    height: 40px;
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 14px;
}

.vis-browser-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.vis-browser-url {
    flex: 1;
    height: 22px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.vis-browser-url-text {
    font-size: 10px;
    color: var(--cyan);
    opacity: .3;
}

.vis-browser-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vis-browser-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vis-browser-hero-line {
    height: 10px;
    border-radius: 5px;
}

.vis-browser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vis-browser-block {
    aspect-ratio: 1.25;
    background: rgba(255, 255, 255, .01);
    border: 1px solid rgba(255, 255, 255, .03);
    border-radius: 10px;
}

/* Design & Print Visual */
.vis-print {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.vis-print-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.vis-print-card {
    width: 250px;
    height: 145px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: .5s cubic-bezier(.2, .8, .2, 1);
    overflow: hidden;
}

.vis-print-card.front {
    background: #0d0a1a;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(255, 155, 68, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(255, 155, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(162, 89, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.vis-print-card.back {
    background: linear-gradient(135deg, #1c140c 0%, #0c0a08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vis-print-card:hover {
    transform: translateY(-8px) rotate(1deg);
    border-color: rgba(255, 155, 68, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 155, 68, 0.1);
}

.vis-print-card-brand {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    color: var(--white);
}

.vis-print-card-brand span,
.vis-print-card-logo span {
    color: #ff9b44;
}

.vis-print-card-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.vis-print-card-title {
    font-size: 8px;
    font-weight: 800;
    color: #ff9b44;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.vis-print-card-contact {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.vis-print-card-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.vis-print-info {
    flex: 0 0 300px;
}

.vis-print-tag {
    background: rgba(255, 155, 68, 0.03);
    border: 1px solid rgba(255, 155, 68, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vis-print-tag span {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ff9b44;
}

.vis-print-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vis-print-list li {
    font-size: 12px;
    color: var(--muted);
    padding-left: 20px;
    position: relative;
    transition: .3s;
}

.vis-print-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #ff9b44;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 155, 68, 0.4);
}

.vis-print-list li:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Panel Bottom */
.sv-panel-bottom {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sv-panel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 65%;
}

.sv-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.sv-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: svMarquee 30s linear infinite;
}

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

@keyframes svMarquee {
    from {
        transform: translateX(0);
    }

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

.sv-chip {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--muted);
    padding: 10px 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: .3s;
    white-space: nowrap;
}

.sv-chip:hover {
    border-color: rgba(255, 255, 255, .2);
    color: var(--white);
    background: rgba(255, 255, 255, .05);
}

.sv-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .4s cubic-bezier(.2, .8, .2, 1);
}

.sv-cta:hover {
    color: var(--panel-accent);
    transform: translateX(8px);
}

.sv-cta-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s cubic-bezier(.2, .8, .2, 1);
}

.sv-cta:hover .sv-cta-arrow {
    background: var(--panel-accent);
    border-color: var(--panel-accent);
    color: var(--bg);
}

.sv-panel-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Stack services panel footer on small screens */
@media (max-width: 768px) {
    .sv-panel-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 24px;
    }

    .sv-panel-chips {
        max-width: 100%;
    }

    .sv-panel-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Allow long service titles to wrap on tablets and below */
@media (max-width: 1100px) {
    .sv-panel-title {
        white-space: normal;
    }
}

.sv-view-work {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.sv-view-work:hover {
    color: var(--panel-accent);
    border-color: var(--panel-accent);
}

/* Responsiveness */
@media (max-width: 1100px) {
    .sv-wrap {
        grid-template-columns: 1fr;
    }

    .sv-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sv-tabs::-webkit-scrollbar {
        display: none;
    }

    .sv-tab {
        padding: 16px 24px;
        white-space: nowrap;
        min-width: max-content;
    }

    .sv-panels {
        min-height: 720px;
    }
}

.line-lg {
    width: 50%;
    height: 6px;
    background: rgba(63, 240, 255, 0.08);
    border-radius: 3px;
}

.line-sm {
    width: 30%;
    height: 4px;
    background: rgba(63, 240, 255, 0.04);
    border-radius: 2px;
}

.br-skeleton-grid {
    display: flex;
    gap: 10px;
}

.br-skel-box {
    flex: 1;
    height: 80px;
    background: rgba(63, 240, 254, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(63, 240, 255, 0.05);
}

/* --- Final Audit: Title Accent Colors --- */
.service-panel[data-index="0"] .accent-italic {
    color: #4f8cff;
}

.service-panel[data-index="1"] .accent-italic {
    color: #ff6fd8;
}

.service-panel[data-index="2"] .accent-italic {
    color: #25d366;
}

.service-panel[data-index="3"] .accent-italic {
    color: #a259ff;
}

.service-panel[data-index="4"] .accent-italic {
    color: #3ff0ff;
}

/* End V6 Section */

.services-v5 {
    display: none;
}


/* --- Constellation CTA --- */
.constellation-section {
    padding: 80px 0;
    background: #000;
}

.constellation-card {
    background: #06050a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.constellation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.constellation-title {
    font-size: 4rem;
    line-height: 1.1;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.gradient-text-blue-purple {
    background: linear-gradient(90deg, #00D2FF, #A855F7, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.constellation-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.constellation-btns {
    display: flex;
    gap: 16px;
}

.btn-constellation-primary {
    background: #fff;
    color: #000;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-constellation-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
}

/* Background Stars */
.constellation-bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 10px #fff;
}

.s1 {
    top: 20%;
    left: 15%;
    animation: starPulse 3s infinite;
}

.s2 {
    top: 80%;
    left: 10%;
    animation: starPulse 4s infinite 1s;
}

.s3 {
    top: 10%;
    right: 20%;
    animation: starPulse 2.5s infinite 0.5s;
}

.s4 {
    top: 70%;
    right: 15%;
    animation: starPulse 5s infinite;
}

.s5 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    transform: translate(-50%, -50%);
}

@keyframes starPulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Responsive Bento */
@media (max-width: 992px) {
    .bento-grid-v3 {
        grid-template-columns: 1fr;
    }

    .bento-social-v3,
    .bento-ugc-v3,
    .bento-whatsapp-v3,
    .bento-automation-v3,
    .bento-website-v3 {
        grid-column: span 1;
    }

    .bento-social-v3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .constellation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .constellation-text {
        margin-left: auto;
        margin-right: auto;
    }

    .constellation-btns {
        justify-content: center;
    }

    .constellation-title {
        font-size: 2.8rem;
    }

    .constellation-card {
        padding: 40px;
    }
}

@keyframes crystalFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1.1);
    }

    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.15);
    }
}

/* Methodology */
.methodology {
    padding: 120px 0;
    background: #000;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.blueprint-text h2 {
    font-size: 3.5rem;
    margin-top: 10px;
}

.blueprint-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border-left: 4px solid #00C2FF;
    transition: 0.3s;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
}

.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: #444;
    margin-bottom: 10px;
    display: block;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

/* Proof Section */
.proof-section {
    padding: 70px 0;
    background: radial-gradient(circle at center, rgba(142, 68, 255, 0.05) 0%, transparent 70%);
}

.proof-quote {
    font-size: 2.2rem;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.proof-author {
    color: #00C2FF;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Modern FAQ */
/* --- FAQ PREMIUM SECTION --- */
.faq-premium {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

/* Left Column: Title */
.faq-display-title {
    font-family: 'Raleway', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 52px;
}

.faq-title-line-1 {
    font-style: italic;
    background: linear-gradient(120deg, #3ff0ff, #4f8cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-title-line-2 {
    color: #eeedf6;
}

/* Left Column: Accordion */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 300;
    color: #eeedf6;
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: #3ff0ff;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-chevron svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}

.faq-answer-content {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(200, 205, 230, 0.42);
    padding-bottom: 12px;
    padding-right: 40px;
}

/* Accordion Active State */
.faq-item.active .faq-question {
    color: #3ff0ff;
}

.faq-item.active .faq-chevron {
    color: #3ff0ff;
}

.faq-item.active .faq-chevron svg {
    transform: rotate(180deg);
}

@media (max-width: 480px) {
    .why-card {
        padding: 24px;
        min-height: 280px;
    }

    .why-card-title {
        font-size: 1.4rem;
    }
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

/* Right Column: Sticky Card */
.faq-right {
    position: sticky;
    top: 32px;
    margin-top: 196px;
    /* Align with first FAQ border */
}

.faq-sticky-card {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(145deg, #0e0820, #1a0e30, #0c1828);
    border: 1px solid rgba(162, 89, 255, 0.15);
    padding: 36px 32px;
    overflow: hidden;
}

.faq-card-radial {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 89, 255, 0.25), rgba(79, 140, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.faq-card-avatar {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 24px;
}

.avatar-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a259ff, #4f8cff);
    opacity: 0.5;
}

.avatar-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(162, 89, 255, 0.2), rgba(79, 140, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: #eeedf6;
    margin-bottom: 12px;
}

.faq-card-subtext {
    font-size: 12.5px;
    color: rgba(200, 205, 230, 0.42);
    line-height: 1.75;
    margin-bottom: 24px;
}

.faq-book-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--white);
    color: #000;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Raleway', sans-serif !important;
    margin-bottom: 24px;
    transition: .3s;
}

.faq-book-btn:hover {
    background: #d4d2e8;
}

.faq-whatsapp-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.3s ease;
}

.faq-whatsapp-row:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.wa-icon {
    flex-shrink: 0;
}

.wa-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wa-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.wa-link {
    font-size: 12px;
    color: #00ff88;
    text-decoration: none;
}

.wa-arrow {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsiveness */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-right {
        position: static;
    }

    .faq-display-title {
        font-size: 48px;
    }
}

/* Minimal Footer */
.minimal-footer {
    padding: 60px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.minimal-footer .footer-logo-img {
    height: 28px !important;
    width: auto !important;
    max-width: 150px !important;
    display: block !important;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.f-links {
    display: flex;
    gap: 30px;
}

.f-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: 0.3s;
}

.f-links a:hover {
    color: #fff;
}

.f-social {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Base Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.mb-60 {
    margin-bottom: 60px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 2;
    }

    .blueprint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .marquee-track span {
        font-size: 2rem;
    }

    .bento-item {
        grid-column: span 2;
    }

    .footer-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

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

    .section-title-showcase {
        font-size: 2.8rem;
    }

    .showcase-card {
        border-radius: 24px;
    }
}

.logo-name {
    font-size: 1.1rem;
    /* v12: SLIGHTLY SMALLER FOR TAG LOOK */
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
    font-family: 'Raleway', sans-serif;
    transition: all 0.4s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 100px;
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

.logo-name:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .vibe-cards-grid {
        grid-template-columns: 1fr;
    }

    .vibe-card {
        height: 480px;
    }
}

/* Responsive */
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--glass-glow);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: crystalGlowMove 10s linear infinite;
    pointer-events: none;
}

@keyframes crystalGlowMove {
    0% {
        transform: translate(-20%, -20%);
    }

    50% {
        transform: translate(20%, 20%);
    }

    100% {
        transform: translate(-20%, -20%);
    }
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.grad-orange {
    background: var(--grad-orange);
}

.grad-pink {
    background: var(--grad-pink);
}

.grad-purple {
    background: var(--grad-purple);
}

.grad-blue {
    background: var(--grad-blue);
}

.grad-dark {
    background: #1a1a1a;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.p-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .p-overlay {
    opacity: 1;
}

.p-1 {
    grid-column: span 1;
    grid-row: span 2;
}

.p-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.p-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.p-4 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #00C2FF;
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

/* Tags */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: scale(1.05);
}

.hero-img {
    display: none;
}

/* Testimonials */
.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
}

.client-info span {
    color: var(--secondary);
}


/* CTA Section */
.dark-section {
    background: #000;
    color: #fff;
    border-radius: var(--radius-lg);
    margin: 50px 2rem;
    text-align: center;
}

.dark-section .section-title {
    color: #fff;
    font-size: 3rem;
}

.cta-btns {
    margin-top: 40px;
}

/* Footer */
.footer {
    padding: 70px 0 60px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .subtitle {
        margin: 0 auto 32px;
    }
}

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

    .section-title {
        font-size: 2.5rem;
    }

    .quote {
        font-size: 1.8rem;
    }

    .dark-section {
        margin: 25px 1rem;
    }
}

/* --- Why Choose Us (v7 Premium) --- */
.why-grfx {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
}

.container-why {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.why-label-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.why-label-line {
    width: 40px;
    height: 1px;
    background: var(--cyan);
    opacity: 0.4;
}

.why-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.why-headline .italic-grad {
    font-style: italic;
    background: linear-gradient(to right, var(--cyan), var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-subtitle {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 50px;
    /* Reduced from 80px */
}

/* Track Container & Fades */
.why-track-container {
    position: relative;
    margin: 0 -100px;
    padding: 0 100px;
}

.why-track-container::before,
.why-track-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.why-track-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.why-track-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

/* The Track */
.why-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}

.why-track::-webkit-scrollbar {
    display: none;
}

.why-track.grabbing {
    cursor: grabbing;
}

/* Cards */
.why-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 10px;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card-cursor-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.08) 0%,
            transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
    z-index: 5;
}

.why-card:hover .why-card-cursor-glow {
    opacity: 1;
}

.why-card:hover .why-card-thumb {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.why-card-thumb {
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-40%, -40%);
    filter: blur(40px);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Specific Card Thumbnails */
.thumb-1 {
    background: #080a1a;
}

.glow-1 {
    background: radial-gradient(circle, rgba(162, 89, 255, 0.4) 0%, transparent 60%);
}

.thumb-2 {
    background: #05140c;
}

.glow-2 {
    background: radial-gradient(circle, rgba(63, 240, 255, 0.3) 0%, transparent 60%);
}

.thumb-3 {
    background: #1a0808;
}

.glow-3 {
    background: radial-gradient(circle, rgba(255, 111, 216, 0.35) 0%, transparent 60%);
}

.thumb-4 {
    background: #0c081a;
}

.glow-4 {
    background: radial-gradient(circle, rgba(162, 89, 255, 0.35) 0%, transparent 60%);
}

.thumb-5 {
    background: #08161a;
}

.glow-5 {
    background: radial-gradient(circle, rgba(63, 240, 255, 0.35) 0%, transparent 60%);
}

.thumb-6 {
    background: #1a0814;
}

.glow-6 {
    background: radial-gradient(circle, rgba(255, 111, 216, 0.4) 0%, transparent 60%);
}

.thumb-7 {
    background: #08140c;
}

.glow-7 {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 60%);
}

.why-icon {
    position: relative;
    z-index: 10;
    opacity: 0.9;
    transition: 0.4s ease;
}

/* Icon Micro-Animations */
.thumb-1 .why-icon {
    animation: pulseGlow 4s infinite ease-in-out;
}

.thumb-2 .why-icon {
    animation: subtleFloat 5s infinite ease-in-out;
}

.thumb-3 .clock-hand {
    transform-origin: 12px 12px;
    animation: clockTicking 4s infinite steps(1) ease-in-out;
}

.thumb-4 .why-icon {
    animation: sparklePulse 4s infinite ease-in-out;
}

.thumb-5 .why-icon {
    animation: arrowNudge 6s infinite ease-in-out;
}

.thumb-6 .why-icon {
    animation: softPulse 3s infinite ease-in-out;
}

.thumb-7 .why-icon {
    position: relative;
    overflow: hidden;
}

.thumb-7 .why-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: documentScan 4s infinite ease-in-out;
}

@keyframes pulseGlow {

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

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

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes clockTicking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(6deg);
    }

    50% {
        transform: rotate(12deg);
    }

    75% {
        transform: rotate(18deg);
    }

    100% {
        transform: rotate(24deg);
    }
}

@keyframes sparklePulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
        filter: brightness(1.1);
    }
}

@keyframes arrowNudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

@keyframes softPulse {

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

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

@keyframes documentScan {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 200%;
    }
}

/* Card Content */
.why-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.why-card-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--muted);
}

/* Nav Buttons */
.why-nav {
    display: flex;
    gap: 12px;
    margin-top: 60px;
}

.why-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.why-nav-btn:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────
   MOBILE RESPONSIVENESS (MEDIA QUERIES)
   ────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .overall-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ol-card.overview {
        max-width: 100%;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto !important;
        /* Revert cursor on touch devices */
    }

    .cursor-dot,
    .cursor-crystal,
    #shard-particles {
        display: none !important;
    }

    .navbar {
        top: 20px;
        width: 90%;
        padding: 8px 12px;
    }

    .navbar-content {
        height: 38px;
    }

    .nav-links,
    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-centered {
        transform: translateY(-80px);
        /* Lower hero text for mobile */
    }

    .hero-text h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    /* Services Scaling */
    .sv-tabs {
        flex-direction: column;
        gap: 4px;
    }

    .sv-tab {
        padding: 12px 16px;
    }

    .vis-browser,
    .vis-pipeline,
    .vis-chat,
    .vis-social {
        transform: scale(0.9);
        margin-top: -20px;
    }

    /* Why Section Stacking */
    .ol-mockups {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .mock-card {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
    }

    .ol-chips {
        flex-direction: column;
        gap: 10px;
    }

    .why-headline {
        font-size: 2.5rem;
    }

    .footer-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* --- Final Priority Logo Fix --- */
.logo-img,
.footer-logo-img,
.navbar .logo img,
.minimal-footer .f-brand img {
    height: 28px !important;
    width: auto !important;
    max-width: 200px !important;
    display: block !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .navbar {
        top: 15px;
        padding: 0 1rem;
    }

    .navbar-content {
        align-items: center;
        /* align logo and hamburger */
        padding: 0 0.75rem 0 1.5rem;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
    }

    .navbar .logo img {
        height: 20px !important;
        /* Smaller on mobile */
    }

    .hero-video {
        object-fit: contain;
        object-position: 50% 85%;
        width: 150%;
        height: 150%;
        transform: translate(-16.5%, 110px);
        mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 100%);
    }

    .hero-centered {
        transform: translateY(-80px);
        /* Adjust center for mobile */
    }
}

.footer-logo-img {
    filter: brightness(0) invert(1) !important;
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
        padding: 0 15px;
    }

    .mobile-link {
        font-size: 1.4rem;
    }

    .hd-title {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .sv-panels {
        margin-top: -10px;
    }
}

/* --- Responsive Services V6.1 --- */
@media (max-width: 992px) {
    .sv-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sv-tabs {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .sv-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 16px 20px;
    }

    .sv-hd-block {
        margin-bottom: 20px;
        padding-top: 0;
    }

    .sv-panel {
        position: relative;
        padding: 40px 30px;
        height: auto;
        display: none;
    }

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

    .sv-panels {
        height: auto;
        min-height: auto;
        /* Removed fixed min height */
    }

    .vis-social,
    .sv-panel-visual {
        flex-direction: column;
        align-items: flex-start;
        /* prevent stretching */
    }

    .vis-cal {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sv-wrap {
        gap: 15px;
    }

    .sv-tabs {
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 8px;
        /* 6 stacked rows for tabs instead of a single horizontal rectangle */
    }

    .sv-tab {
        padding: 10px 16px;
        /* Reduced box height for mobile */
    }

    .sv-panel {
        padding: 24px 20px !important;
    }

    .sv-panel-title {
        font-size: 24px !important;
        white-space: normal;
        margin-bottom: 10px;
    }

    .sv-panel-desc {
        font-size: 13px !important;
        margin-bottom: 20px;
    }

    .sv-panel-bg-num {
        font-size: 120px;
        top: -10px;
        right: -10px;
    }

    /* SIMPLER MOBILE LAYOUT FOR SERVICES
       - Panels become normal stacked blocks
       - Only the active panel is shown
       - Visuals shrink and stop forcing horizontal scroll
    */
    .sv-panels {
        position: static;
        min-height: auto;
        height: auto;
        border-radius: 20px;
    }

    .sv-panel {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        height: auto;
        padding: 24px 18px !important;
        display: none;
    }

    .sv-panel.active {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .sv-panel-visual {
        width: 100%;
        margin-top: 16px;
        display: block;
        overflow: hidden;
        flex: 0 0 auto;
    }

    .sv-panel-bottom {
        margin-top: 16px;
        padding-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sv-panel-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .vis-social,
    .vis-ugc,
    .vis-chat,
    .vis-pipeline,
    .vis-browser,
    .vis-print {
        transform: none !important;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    /* Mobile-only horizontal scroll for Social + UGC + Print visuals */
    .vis-social,
    .vis-ugc,
    .vis-print {
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vis-social {
        align-items: flex-start;
    }

    .vis-ugc {
        align-items: flex-end;
    }

    .vis-print {
        align-items: flex-start;
        padding-top: 4px;
    }

    .vis-social::-webkit-scrollbar,
    .vis-ugc::-webkit-scrollbar,
    .vis-print::-webkit-scrollbar {
        height: 0;
    }

    .vis-social>*,
    .vis-ugc>*,
    .vis-print>* {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .vis-social .vis-cal,
    .vis-social .vis-post {
        min-width: 78vw;
        max-width: 360px;
    }

    .vis-ugc .vis-ugc-stat {
        min-width: 150px;
        padding-left: 12px;
    }

    .vis-print .vis-print-cards,
    .vis-print .vis-print-info {
        min-width: 78vw;
        max-width: 360px;
    }

    .vis-chat {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        box-shadow: 0 28px 60px rgba(0, 0, 0, .45);
        border-radius: 24px;
    }

    .vis-browser {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        box-shadow: 0 28px 60px rgba(0, 0, 0, .45);
    }

    .vis-pipeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
    }
}