.hr-title {
    font-family: 'Encode Sans', sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 400;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    max-width: 1200px;
    margin-bottom: 40px;
    letter-spacing: -0.05em;
    text-transform: none;

    /* Center-weighted muted gradient for the main text - lightened */
    background: linear-gradient(to right, #1a1a1a 0%, #999 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hr-title .text-white {
    /* Bright center-weighted gradient for the highlights */
    background: linear-gradient(to right, #bbb 0%, #fff 50%, #bbb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    font-variation-settings: 'wdth' 125, 'wght' 400;
}

/* Subtext Refinements */
.hr-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hr-cta-button {
    background: #000;
    color: #fff;
    /* Move border logic to pseudo-element for better beam control */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 20;
    pointer-events: auto !important;
    overflow: hidden;
    /* Contain the beam */
}

/* THE ANIMATED BEAM */
.hr-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 300deg,
            rgba(255, 255, 255, 0.6) 330deg,
            transparent 360deg);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: beam-rotate 4s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

/* Inner Background to keep the center solid black */
.hr-cta-button::after {
    content: '';
    position: absolute;
    inset: 1px;
    /* Leave 1px for the 'border' */
    background: #000;
    border-radius: 7px;
    /* Slightly less than parent radius */
    z-index: -1;
    transition: background 0.3s ease;
}

@keyframes beam-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hr-cta-button:hover::after {
    background: #0a0a0a;
}


.hr-cta-button:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 55px rgba(255, 255, 255, 0.25);
    /* More prominent glow on hover */
    transform: translateY(-2px);
    color: #fff;
}

.hr-cta-button:active {
    transform: translateY(0px) scale(0.96);
    /* Visual feedback when clicked */
    box-shadow: 0 0 30px rgba(255, 91, 50, 0.2);
}

/* Mobile Adjustments (Restored) */
@media (max-width: 768px) {
    .hero-title-static {
        font-size: 1.8rem !important;
    }

    .hero-content-center {
        margin-top: 0 !important;
    }

    .hero-container {
        justify-content: flex-start !important;
        padding-top: 100px !important;
    }

    .hero {
        align-items: flex-start !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-content-left {
        text-align: center;
    }

    /* Forces center alignment on mobile */
    .hero-subtext {
        margin: 0 auto 40px auto;
    }

    /* HR Hero Specific Mobile Fixes */
    .hr-hero {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 120px 20px 60px !important;
        min-height: 90vh !important;
    }

    .hr-title {
        font-size: clamp(2rem, 9vw, 3.2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 24px !important;
        /* Brighter gradient so first lines are visible on dark mobile bg */
        background: linear-gradient(to bottom, #fff 0%, #aaa 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        display: block !important;
    }

    .hr-title br {
        display: none !important;
    }

    .hr-title .text-white {
        background: none !important;
        -webkit-text-fill-color: #fff !important;
        color: #fff !important;
    }

    .hr-subtext {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin: 0 auto 40px auto !important;
        text-align: center !important;
        max-width: 100% !important;
        color: #bbb !important;
    }

    .hr-cta-button {
        width: auto !important;
        min-width: 240px !important;
        margin: 0 auto !important;
        display: inline-block !important;
    }
}

:root {
    /* COLOR PALETTE */
    --bg-dark: #050505;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --primary-orange: #ff5b32;
    --primary-blue: #0056b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* FONTS */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* =========================================
   BODY TEXT TYPOGRAPHY
   ========================================= */

/* 1. Global Text Settings */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #cccccc;
    /* Soft Grey (Not pure white) */
    line-height: 1.6;
    /* More breathing room for reading */
    font-weight: 400;
    /* Regular weight */
    font-size: 16px;
    /* Standard readable size */
    background-color: var(--bg-dark);
    /* CHANGE 1: Allow vertical scroll, hide horizontal only */
    overflow-x: hidden;
    overflow-y: auto;
}

/* 2. Make Paragraphs Look Clean */
p {
    margin-bottom: 24px;
    max-width: 650px;
    /* Prevents lines from getting too long to read */
}

/* 3. Small Details (Like "Copyright" or "Tags") */
.small-text,
.footer-legal,
.blog-meta {
    font-size: 0.85rem;
    color: #888888;
    /* Darker grey to push it to the background */
    letter-spacing: 0px;
}

/* 4. Strong Text (Bold keywords) */
strong,
b {
    font-weight: 600;
    color: #ffffff;
    /* Make keywords pop in pure white */
}

/* =========================================
   2. BACKGROUND CANVAS
   ========================================= */
#tech-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* =========================================
   3. NAVIGATION BAR
   ========================================= */
.navbar {
    position: fixed;
    /* Changed from absolute to fixed for dynamic loader */
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 30px 50px; -- Controlled by Tailwind/Dynamic logic now */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header-hidden {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

/* =========================================
   DESKTOP NAVIGATION (> 1280px)
   ========================================= */
@media (min-width: 1280px) {
    .logo img {
        height: 100px;
        /* Increased from 100px */
        width: auto;
        margin-left: 60px;
    }

    /* Commented out to prevent conflict with Tailwind-based Dynamic Navbar
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 60px;
        list-style: none;
        background: rgba(255, 255, 255, 0.08);
        padding: 14px 80px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        white-space: nowrap;
    }
    */

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-right: 60px;
        z-index: 5;
        position: relative;
    }
}

/* SHARED / MOBILE DEFAULTS (< 1025px) */
.logo img {
    height: 100px;
    /* SAME BIG SIZE everywhere */
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-login {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent !important;
}

.nav-login:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    opacity: 1;
}

.btn-nav {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: #000000;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0px;
}

.btn-nav:hover {
    background: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

/* --- B. Hero Button (Main CTA - Get Started) --- */
.btn-hero {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    /* Bolder for impact */
    font-size: 1rem;
    /* Bigger font */
    color: #ffffff;
    padding: 15px 35px;
    /* Bigger button */
    border-radius: 50px;
    border: none;
    z-index: 5;
    position: relative;
    margin-top: 20px;
    /* specific spacing for the hero layout */
    margin-left: 0;

    /* Style: Same Gradient (or change it here!) */
    background: linear-gradient(135deg, #ff5b32, #ff5b32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 91, 50, 0.4);
}


/* =========================================
   5. HERO SECTION (MAIN LAYOUT)
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 0 50px;
    overflow: hidden;
    background: transparent;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* =========================================
   HACKERRANK INSPIRED HERO STYLE (HOME ONLY)
   ========================================= */
.hr-hero {
    /* Balanced Dark Mesh Gradient */
    background-color: #020202 !important;
    background-image:
        radial-gradient(at 0% 0%, rgb(32, 32, 32) 0%, transparent 55%),
        radial-gradient(at 100% 0%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
        radial-gradient(at 50% 100%, rgba(27, 27, 27, 0.829) 0%, transparent 75%),
        radial-gradient(at 80% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(at 15% 85%, rgba(0, 0, 0, 0.35) 0%, transparent 50%),
        radial-gradient(at 50% 15%, rgba(27, 27, 27, 0.35) 0%, transparent 55%) !important;
    background-attachment: fixed !important;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: visible;
    z-index: 5;
}

.automation-hero {
    overflow: visible !important;
    /* Prevent clipping on tablet */
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/hero background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -2;
    pointer-events: none;
    filter: brightness(0.7) contrast(1.1);
}

/* =========================================
   AUTOMATION PAGE OVERWRITES
   ========================================= */
.automation-hero::after {
    display: none;
}

.credit-text {
    display: none;
}

.automation-hero .hero-title-static {
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -3px;
    text-align: left !important;
    background: linear-gradient(to bottom right, #FFFFFF 30%, #FDBA74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.automation-hero .hero-title-static span {
    color: inherit;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .automation-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 180px;
        /* Increased from 160px to bring title down more */
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .automation-hero .hero-title-static {
        font-size: 2.6rem;
        /* Reduced further */
        text-align: center !important;
        letter-spacing: -1.5px;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .automation-hero .hero-title-static span {
        white-space: normal;
    }

    .automation-hero .hero-subtext {
        text-align: center !important;
        margin: 0 auto 35px auto;
        padding: 0 20px;
        font-size: 0.95rem;
        /* Smaller font */
        max-width: 650px;
        /* Increased width */
    }

    .automation-hero .hero-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 15px;
        margin: 0 auto;
    }

    /* CRITICAL FIX: Override mobile-nav.css which hides .btn-nav on screens < 1280px */
    .automation-hero .hero-actions .btn-nav {
        display: inline-flex !important;
        width: 100%;
        padding: 14px 24px;
        justify-content: center;
    }

    .automation-hero .hero-content-side {
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .automation-hero .video-wrapper {
        width: 55%;
        /* Smaller video on tablet */
        max-width: 450px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .automation-hero .hero-title-static {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

.automation-hero .hero-subtext {
    font-size: 1.25rem;
    text-align: left !important;
    max-width: 850px;
    margin-left: 0;
    margin-right: 0;
}

.automation-hero .hero-actions {
    justify-content: flex-start;
    gap: 20px;
    margin: 40px 0 0;
}





/* THE HERO CONTAINER */
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 5;
    height: 100%;
}

/* Split Layout Utilities */
.hero-container.split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
}

@media (max-width: 1024px) {
    .hero-container.split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

.hero-container.split.reversed {
    flex-direction: row-reverse;
}

.hero-content-side {
    flex: 1;
    /* Restored to 1 to keep video size consistent */
    max-width: 1000px;
    /* Large width allowed to overlap */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    /* Ensure it stays on top of video */
}



.hero-video-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 80%;
    /* Even smaller as requested */
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-abstract-video {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    /* Create a premium "holographic" feel */
    mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
    filter: contrast(1.1) brightness(1.1);
}

.video-overlay-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   6. LEFT COLUMN: TEXT CONTENT
   ========================================= */
.hero-content-left {
    text-align: center;
    max-width: 1200px;
    /* Limit width for readability */
    margin: 0 auto;
    width: 100%;
    /* Shift slightly left */
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    z-index: 20;
    padding-top: 0;
    /* Resetting padding for perfect center */
    /* Pushing it more up */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    will-change: opacity, transform;
}

.hero-content-center h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #ffffff;
    text-align: center;
}

.hero-content-center p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 50px auto;
    /* Centered margin */
    text-align: center;
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* =========================================
   7. RIGHT COLUMN: PIXEL-LOCKED LOOP
   ========================================= */
.hero-grid-right {
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;

    height: 100vh;
    max-height: 900px;
    margin-top: -80px;
    overflow: hidden;

    /* Smooth Fades */
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Gap is handled by margin-bottom */
    width: 40%;
}

/* =========================================
   CARD STYLING
   ========================================= */
.grid-card {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;

    /* Strict spacing */
    margin-bottom: 30px;

    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 40px rgba(0, 0, 0, 0.5);

    position: relative;
    flex-shrink: 0;
}


/* --- THE HOVER EFFECT --- */
.grid-card:hover {
    /* Slight Zoom */
    transform: scale(1.03);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;

    /* Orange Glow Border */
    border-color: #FF7E5F;

    /* Outer Glow Shadow */
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.3), inset 0 0 10px rgba(255, 126, 95, 0.1);
}

/* Precise Heights */
.tall {
    height: 300px;
}

.short {
    height: 280px;
}

/* =========================================
   ANIMATIONS (Math for 4 Images)
   ========================================= */

/* Adjusted speed because the strip is longer now */
.scroll-up {
    will-change: transform;
    animation: scrollUp 40s linear infinite;
}

.scroll-down {
    will-change: transform;
    animation: scrollDown 45s linear infinite;
}

/* THE MATH: 
   Tall(330) + Short(310) + Tall(330) + Short(310) = 1280px 
*/

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1280px);
    }

    /* Exact height of the 4 unique images */
}

@keyframes scrollDown {

    /* Start offset by the height of the 4 unique images */
    0% {
        transform: translateY(-1280px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================
   ZOOM SECTION (Mobile Fix)
   ========================================= */
@media (max-width: 768px) {
    .zoom-section {
        height: auto !important;
        min-height: auto !important;
        padding: 40px 5%;
        background: #000;
        margin-top: 0 !important;
    }

    .zoom-sticky {
        position: static !important;
        height: auto !important;
        transform: none !important;
    }

    .zoom-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Ensure video fits perfectly */
    .zoom-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Hide Custom Buttons on Mobile */
    .sound-btn,
    .fullscreen-btn {
        display: none !important;
    }
}

/* =========================================
   8. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }

    .hero-content-left {
        text-align: center;
        margin: 0 auto 40px auto;
        max-width: 100%;
    }

    .hero-content-left p {
        margin: 0 auto 40px auto;
    }

    .nav-links {
        display: none;
    }

    .hero-grid-right {
        height: 500px;
        transform: rotate(0deg);
        width: 100%;
        mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .hero {
        padding: 120px 20px 60px 20px;
        height: auto;
        min-height: 100vh;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .hero-actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 30px;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }
}



/* =========================================
   BUILDER PORTAL SECTION
   ========================================= */
.builder-portal-section {
    position: relative;
    padding: 120px 5%;
    background-color: #050505;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.portal-grid {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(112, 0, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg) translateY(-20%);
    animation: gridMove 20s linear infinite;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) translateY(0);
    }

    100% {
        transform: rotateX(60deg) translateY(50px);
    }
}

.portal-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.1);
}

.portal-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.portal-glow-text {
    color: #7000ff;
    text-shadow: 0 0 20px rgba(112, 0, 255, 0.5);
}

.portal-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.portal-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #7000ff;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.portal-btn:hover {
    background: white;
    color: #7000ff;
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.6);
    transform: translateY(-2px);
}

/* =========================================
   PERFORMANCE STATS STRIP
   ========================================= */

.stats-strip {
    width: 100%;
    background: transparent !important;
    padding: 60px 0;
    border: none !important;
    position: relative;
    z-index: 5;
}

.stats-hero {
    background: transparent !important;
    border-bottom: none !important;
    padding: 40px 0 0 0 !important;
    margin-top: 100px !important;
}

.stats-hero .stat-number {
    font-size: 2.8rem !important;
    color: #ffffff;
}

.stats-hero .stat-label {
    color: rgba(255, 255, 255, 0.5);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    /* Space between stats */
}

/* THE NUMBER */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;


}

/* THE LABEL */
.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 0 0;
    font-weight: 600;
}

/* THE DIVIDER LINES */
.stat-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        /* Stack them vertically on phone */
        gap: 40px;
    }

    .stat-line {
        width: 100px;
        /* Horizontal line on mobile */
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* =========================================
   FEATURES SECTION (BENTO GRID LAYOUT)
   ========================================= */

.features-section {
    padding: 120px 5%;
    background: #000000;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.features-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Features Grid - Bento Box Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    width: 100%;
}

/* Feature Card Base Styling */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Wide Cards (Span 6 columns) */
.feature-wide {
    grid-column: span 6;
}

/* Small Cards (Span 4 columns) */
.feature-small {
    grid-column: span 4;
}

/* Card Overlay Top (Text at top of card) */
.card-overlay-top {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.card-overlay-top h3 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-overlay-top p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

/* Feature Visual Container */
.feature-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

/* Mobile Responsiveness for Features Grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .feature-wide,
    .feature-small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 5%;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-wide,
    .feature-small {
        grid-column: span 1;
        min-height: 350px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .card-overlay-top h3 {
        font-size: 1.5rem;
    }

    .card-overlay-top p {
        font-size: 0.95rem;
    }
}

/* =========================================
   COGNIFOX GRID (FIXED LAYOUT)
   ========================================= */

.grid-section {
    padding: 120px 5%;
    background: #050505;
    /* Force height to auto so it expands */
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

.grid-header {
    margin: 0 auto 70px auto;
    /* CENTERED */
    max-width: 800px;
    text-align: center;
    /* CENTERED */
}

.grid-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.grid-header p {
    color: #888;
    font-size: 1.1rem;
}

/* --- THE NEW GRID CONTAINER --- */
.cognifox-grid {
    display: grid;
    /* Forces 3 Equal Columns */
    grid-template-columns: repeat(3, 1fr);
    /* Forces a 20px gap between cards */
    gap: 30px;

    width: 80%;
    margin: 50px auto;
    /* CENTERED */

    /* Resets any weird positioning */
    position: static;
    transform: none;
}

/* --- THE NEW CARD STYLE --- */
.cognifox-card {
    position: relative;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* CENTERED */
    text-align: center;
    /* CENTERED */
    gap: 20px;

    transition: all 0.3s ease;

    /* VITAL: Ensures cards have height */
    height: auto;
    min-height: 100px;
}

.cognifox-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* --- ICON BOX --- */
.card-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color 0.3s ease;
}

.cognifox-card:hover .card-icon-box {
    color: #ff6b00;
    border-color: rgba(255, 107, 0, 0.3);
}

/* --- TEXT --- */
.card-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.card-text p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .cognifox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cognifox-grid {
        grid-template-columns: 1fr;
    }

    .grid-header h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   PROCESS SECTION (Fixed Layout: Headline Top / Content Bottom)
   ========================================= */

/* --- 1. THE CANVAS (Made Taller) --- */
/* =========================================
   PROCESS SECTION (MODERN FRAMEWORK LAYOUT)
   ========================================= */

.process-section {
    position: relative;
    width: 100%;
    padding: 120px 5%;
    background-color: #000000;
    overflow: hidden;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-header {
    text-align: center;
    margin-bottom: 150px;
}

.process-headline {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
    transform: translateX(-100px);
}

@keyframes text-shine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.magic-text {
    background: linear-gradient(to right,
            #703d7f 0%,
            #915f96 25%,
            #c45543 75%,
            #703d7f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: text-shine 5s linear infinite;
    display: inline-block;
}

.process-timeline {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff5b32;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 91, 50, 0.6),
        0 0 40px rgba(255, 91, 50, 0.2);
}

.step-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ff5b32, transparent);
    margin: 10px 0;
}

.process-item:hover .step-number {
    transform: scale(1.15);
}

.process-details {
    padding-top: 5px;
}

.process-details h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-details p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .process-header {
        margin-right: 0;
        margin-bottom: 80px;
    }

    .process-headline {
        font-size: 3.5rem;
    }

    .process-timeline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 5%;
    }

    .process-headline {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-item {
        gap: 20px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-line {
        height: 120px;
        /* Slightly longer line for mobile text wrapping */
    }

    .process-details h3 {
        font-size: 1.3rem;
    }

    .process-details p {
        font-size: 1rem;
    }
}



/* =========================================
   WORK SECTION (Original "Apple-Style" + Images)
   ========================================= */
.work-header {
    display: flex;
    flex-direction: column;
    /* Stack Title on top of Subtitle */
    align-items: center;
    /* Force everything to the Middle horizontally */
    text-align: center;
    /* Ensure text inside is centered */
    margin-bottom: 50px;
    width: 100%;
    /* Ensure container spans full width */
}

.section-subtitle {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    /* Keep lines from getting too long to read */
    margin: 10px auto 40px;
    /* Top: 10px, Side: Auto (Center), Bottom: 40px */
    line-height: 1.5;
}

.work-section {
    padding: 100px 5%;
    background-color: #000000;
    position: relative;
}

.center-text {
    text-align: center;
    margin-bottom: 40px;
}

/* --- 1. FILTERS (Pills) --- */
.work-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ACTIVE STATE (Restored Your Original Gradient) */
.filter-btn.active {
    /* The Purple-to-Red/Orange Gradient you liked */
    background: linear-gradient(90deg, #703d7f, #c45543);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(196, 85, 67, 0.3);
}

/* --- 2. THE BIG CARD CONTAINER --- */
.project-showcase {
    background: #111;
    /* Dark Grey Container */
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

/* The Inner Card Layout */
.project-card {
    display: flex;
    gap: 40px;
    height: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card.anim-hidden {
    opacity: 0;
    transform: scale(0.95);
}

/* --- LEFT SIDE: VISUAL --- */
.project-visual {
    flex: 1.2;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    position: relative;
    overflow: hidden;
    min-height: 400px;
    transition: transform 0.3s ease;

    /* ENABLE IMAGES */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Gradient Overlay so text is readable */
.project-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Fade from transparent to dark at the bottom */
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.project-visual:hover {
    transform: scale(0.99);
    /* Press effect */
}

.project-visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-icon {
    margin-bottom: 20px;
    color: white;
}

.project-visual h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

/* --- RIGHT SIDE: DETAILS --- */
.project-details {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 20px 0;
}

.detail-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.detail-row p {
    font-size: 1.1rem;
    color: #ddd;
    margin: 0;
    line-height: 1.5;
}

.read-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #fff;
    color: #000;
}

/* --- 3. NAVIGATION --- */
.work-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #fff;
    color: #000;
}

.view-all-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #fff;
    color: #000;
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .project-card {
        flex-direction: column;
    }

    .project-visual {
        min-height: 250px;
    }

    .project-details {
        padding: 40px 0;
        text-align: center;
        align-items: center;
    }

    .read-more-btn {
        margin: 30px auto 0;
    }
}

/* =========================================
   SCROLL ANIMATION (Re-paste if missing)
   ========================================= */
/* Consolidated to the main animation section below */

/* Delays for the "Staggered" effect */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}


/* =========================================
   why choose us
   ========================================= */
.bento-section {
    padding: 100px 5%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    /* Soft radius */
    margin: 80px;
    /* Reveal black background */
}

.bento-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.bento-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bento-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1040px;
    /* Reduced by 20% (1300 * 0.8) */
}

/* Card Base Styles */
.bento-card {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 30px;
    /* Reduced padding */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bento-card h3 {
    font-size: 1rem;
    /* Reduced by 20% (1.25 * 0.8) */
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
}

.bento-card p {
    font-size: 0.8rem;
    /* Reduced by 20% (0.95 * 0.8 ≈ 0.76, using 0.8) */
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
    /* Reduced by 20% (20 * 0.8) */
}

/* GRID SPANS */
.card-roi {
    grid-column: span 3;
    min-height: 272px;
    /* Reduced by 20% (340 * 0.8) */
}

.card-security {
    grid-column: span 3;
    min-height: 272px;
    /* Reduced by 20% (340 * 0.8) */
}

.card-reliability {
    grid-column: span 3;
    min-height: 304px;
    /* Reduced by 20% (380 * 0.8) */
}

.card-cx {
    grid-column: span 3;
    min-height: 304px;
    /* Reduced by 20% (380 * 0.8) */
}

/* VISUALIZATIONS */

/* 1. ROI Chart (Specific Design) */
.roi-chart {
    display: block;
    position: relative;
    height: 208px;
    /* Reduced by 20% (260 * 0.8) */
    width: 100%;
    margin-top: auto;
    padding: 16px 16px 24px 32px;
    /* Reduced slightly */
    box-sizing: border-box;
}

/* Grid & Axes */
.chart-grid {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 20px;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    z-index: 0;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: #eee;
}

.chart-y-axis {
    position: absolute;
    top: 20px;
    bottom: 30px;
    left: 0;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.chart-y-axis span {
    font-size: 0.7rem;
    color: #aaa;
    line-height: 1;
}

.chart-x-axis {
    position: absolute;
    bottom: 5px;
    left: 40px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.chart-x-axis span {
    font-size: 0.75rem;
    color: #aaa;
    transform: translateX(-50%);
}

.chart-x-axis span:last-child {
    color: #d97706;
    /* Highlight last month */
    font-weight: 700;
}

/* SVG */
.revenue-svg {
    position: absolute;
    top: 20px;
    left: 40px;
    width: calc(100% - 75px);
    height: 168px;
    /* Reduced by 20% (210 * 0.8) */
    overflow: visible;
    z-index: 1;
}

.revenue-path {
    fill: none;
    stroke: #d97706;
    /* Orange */
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 2s ease-out forwards;
}

.revenue-end-dot-html {
    position: absolute;
    top: 32px;
    /* Reduced by 20% (40 * 0.8) */
    /* Adjust to match path end (20px + SVG offset) */
    right: 20px;
    /* Adjust to match path end (SVG padding right: 20px) */
    width: 12px;
    height: 12px;
    background: #d97706;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
    opacity: 0;
    animation: pop-in 0.5s ease-out forwards;
    z-index: 2;
}

/* Floating Badge */
.revenue-badge {
    position: absolute;
    top: 10px;
    left: 35%;
    /* Center relative to container */
    transform: translateX(-50%) translateY(10px);
    /* Center align */
    background: linear-gradient(135deg, #fff, #fff5eb);
    padding: 8px 16px;
    /* Reduced padding */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
    border: 2px solid rgba(217, 119, 6, 0.1);
    text-align: center;
    opacity: 0;
    animation: fade-up 0.6s ease-out forwards;
    z-index: 2;
}

.badge-value {
    display: block;
    font-size: 1rem;
    /* Compact size */
    font-weight: 800;
    color: #111;
}

.badge-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pop-in {
    to {
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Label */
.revenue-label-float {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    opacity: 0;
    animation: fade-in 0.5s ease forwards 2.6s;
}

.revenue-value-float {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #d47e2d;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(10px);
    animation: slide-up-fade 0.5s ease forwards 2.7s;
}

@keyframes slide-up-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Security Image */
.security-img {
    width: 70%;
    height: auto;
    margin-top: auto;
    margin-left: 70px;
    /* Align to right */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* subtle shadow for image */
    display: block;
    transform: translateY(40px);
    /* Sink */
}

/* 3. Reliability Metrics */
.reliability-metrics {
    display: flex;
    align-items: flex-start;
    /* Align top */
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding: 20px 0;
    width: 100%;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    text-align: left;
    flex: 1;
}

.metric-value {
    font-size: 2.4rem;
    /* Reduced by 20% (3 * 0.8) */
    font-weight: 550;
    color: #8b5cf6;
    background: linear-gradient(135deg, #9614aa, #6e0e7c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.8rem;
    /* Reduced from 1rem */
    color: #252525;
    font-weight: 300;
    margin-bottom: 56px;
    /* Reduced by 20% (70 * 0.8) */
    white-space: nowrap;
}

.metric-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    /* Reset margin */
}

@media (max-width: 600px) {
    .reliability-metrics {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-around;
        align-items: center;
        margin-top: 20px;
    }

    .metric-item {
        align-items: center !important;
        text-align: center !important;
        flex: 1 1 30%;
    }

    .metric-value {
        font-size: 1.8rem !important;
        margin-bottom: 4px !important;
    }

    .metric-label {
        font-size: 0.7rem !important;
        margin-bottom: 20px !important;
        white-space: normal !important;
    }

    .security-img {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 80% !important;
        margin-top: 20px !important;
    }
}

/* 4. CX Toggles */
.toggle-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.toggle-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: #9d00ff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(157, 0, 255, 0.3);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



/* Mobile */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card-roi,
    .card-security,
    .card-reliability,
    .card-cx {
        grid-column: span 1;
        min-height: 300px;
    }
}

/* Embedded CTA in Bento */
.bento-cta-wrapper {
    width: 100%;
    max-width: 1300px;
    margin-top: 100px;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border-radius: 40px;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Soft border */
}

.bento-cta-text {
    color: #111;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -0.03em;
}

.bento-cta-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.bento-cta-btn:hover {
    transform: scale(1.05);
    background: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-icon-circle {
    width: 32px;
    height: 32px;
    background: #d47e2d;
    /* Teal color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.cta-icon-circle svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .bento-cta-wrapper {
        padding: 60px 20px;
        margin-top: 100px;
    }
}

/* Bento Section Animation */
.bento-section.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-grid .bento-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   CONTACT SPLIT SECTION (FINAL PREMIUM WHITE/GLASS LOOK)
   ========================================= */

.contact-split-section {
    position: relative;
    padding: 100px 5%;
    background: #000000;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Ambient Glow */
.contact-glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(124, 124, 124, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Container to hold Left & Right */
.contact-content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1600px;
    /* Ultra-Wide Look */
    gap: 80px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* --- LEFT COLUMN --- */
.contact-left {
    flex: 1;
    max-width: 650px;
    padding-top: 20px;
}

/* Pill Badge */
.contact-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.split-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
}

.split-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 50px;
}

/* --- CARDS STACK --- */
.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Card */
.info-card-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
}

/* Icons */
.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-info .label {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-info .value {
    font-size: 0.9rem;
    color: #888;
}

.arrow-circle {
    color: #555;
    transition: 0.3s;
}

.info-card-row:hover .arrow-circle {
    color: #fff;
    transform: translate(3px, -3px);
}


/* --- RIGHT COLUMN (FORM) --- */
.contact-right {
    flex: 1.5;
}

.glass-modern-form {
    /* UPDATED: Slightly more transparent background */
    background: rgba(5, 5, 5, 0.0);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Increased gap */
}

.form-group,
.form-field {
    margin: 0;
    width: 100%;
}

.form-field label {
    display: none;
}

/* --- THE INPUTS (UPDATED FOR WHITE TEXT) --- */
.glass-modern-form input,
.glass-modern-form textarea,
.dark-input {
    width: 90%;

    /* UPDATED: Lighter Glass Background */
    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Brighter border */
    border-radius: 15px;

    /* UPDATED: Chunky Padding */
    padding: 22px 25px;

    /* UPDATED: Bright White Text */
    color: #ffffff !important;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* --- PLACEHOLDER VISIBILITY --- */
.glass-modern-form input::placeholder,
.glass-modern-form textarea::placeholder {
    /* UPDATED: Visible Light Grey */
    color: rgba(221, 221, 221, 0.7) !important;
    opacity: 1;
}

/* Focus State */
.glass-modern-form input:focus,
.glass-modern-form textarea:focus,
.dark-input:focus {
    background: rgba(151, 80, 80, 0.05);
    border-color: #ffffff;
    /* White border on click */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    /* White Glow */
    outline: none;
}

/* Submit Button */
.btn-submit-white {
    width: 100%;
    background: #ffffff;
    color: #000;
    border: none;
    padding: 20px;
    /* Taller button */
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-white:hover {
    background: #ff6b00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

/* =========================================
   SCROLL ANIMATION STYLES
   ========================================= */

/* =========================================
   SCROLL ANIMATION SYSTEM (CONSOLIDATED)
   ========================================= */

/* 1. Base State: Default is reveal-up */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) translateX(0) scale(1);
    filter: blur(0);
    transition: opacity 1.2s cubic-bezier(0.5, 0, 0, 1),
        transform 1.2s cubic-bezier(0.5, 0, 0, 1),
        filter 1.2s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform, filter;
}

/* 2. Variation Overrides (Initial State) */

/* Reveal Left: Slides in from the left, removes vertical offset */
.reveal-left {
    transform: translateX(-150px) translateY(0) !important;
}

/* Reveal Right: Slides in from the right, removes vertical offset */
.reveal-right {
    transform: translateX(150px) translateY(0) !important;
}

/* Reveal Zoom: Scales up from center */
.reveal-zoom {
    transform: scale(0.85) translateY(0) !important;
}

/* Reveal Blur: Pure soft focus to crisp (No movement) */
.reveal-blur {
    filter: blur(15px);
    transform: translateY(0) scale(1) !important;
}

/* 3. The Ending State (Triggered by JS) */
.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
    filter: blur(0) !important;
}

/* 4. Timing Adjustments */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
    }

    .split-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   BLOG SECTION (Cinematic Stack)
   ========================================= */
.blog-section {
    padding: 100px 5%;
    background-color: #000000;
    position: relative;
}

.section-header.center-text {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem
}

.section-subtitle {
    color: #888;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* --- THE STACK LAYOUT --- */
.blog-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between cards */
    max-width: 1000px;
    margin: 0 auto 60px;
}

/* --- THE CARD --- */
.blog-card {
    position: relative;
    height: 400px;
    /* Tall cinematic banners */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Text at the bottom-left */
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Background Image Zoom Effect */
.blog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.blog-card:hover .blog-bg {
    transform: scale(1.05);
    /* Gentle zoom on hover */
}

.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}



/* --- OVERLAYS (Gradients to make text readable) --- */
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Specific Gradient Styles */
.gradient-orange {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.gradient-blue {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.gradient-dark {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

/* --- TEXT CONTENT --- */
.blog-content {
    position: relative;
    z-index: 2;
    /* Sits on top of image */
    max-width: 600px;
}

.blog-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-dot {
    margin: 0 8px;
    opacity: 0.5;
}

.blog-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.blog-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Tags */
.blog-tags {
    display: flex;
    gap: 15px;
}

.blog-tags span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(5px);
}

/* Clickable Area */
.blog-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* --- BOTTOM BUTTON --- */
.center-btn-wrapper {
    text-align: center;
}

.view-all-posts {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background: #fff;
    color: #000;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .blog-card {
        height: auto;
        min-height: 350px;
        padding: 30px 20px;
    }

    .blog-card h3 {
        font-size: 1.8rem;
    }

    .gradient-orange,
    .gradient-blue,
    .gradient-dark {
        /* On mobile, darken everything so text pops */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    }
}



/* =========================================
   STUDIO-STYLE FOOTER (Minimalist Center)
   ========================================= */
.studio-footer {
    background-color: #050505;
    color: #fff;
    padding: 80px 20px 40px;
    font-family: inherit;
    /* Inherit your main font */
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- 1. TOP BRANDING --- */
.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brand-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-services li.dot {
    color: #444;
    /* Dimmer dots */
}

/* --- THE DIVIDER LINE --- */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0;
    /* Space above/below line */
}

/* --- 2. MIDDLE NAVIGATION --- */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    /* Wide spacing like reference */
    margin-bottom: 50px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff5b32;
    /* Orange Hover */
}

/* --- 3. SOCIAL ICONS (Rounded Squares) --- */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    /* Slight grey background */
    border-radius: 14px;
    /* Soft square shape like reference */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff5b32;
    /* Fill orange on hover */
    transform: translateY(-3px);
}

/* --- 4. BOTTOM LEGAL --- */
.footer-legal {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

.legal-divider {
    color: #333;
}

.copyright {
    margin: 0;
    opacity: 0.6;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
    .brand-services {
        flex-direction: column;
        /* Stack services on phone */
        gap: 5px;
    }

    .brand-services li.dot {
        display: none;
        /* Hide dots on mobile */
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .legal-links {
        font-size: 0.75rem;
    }
}

/* =========================================
   3D AUDIO SPHERE SECTION
   ========================================= */
.audio-sphere-section {
    padding: 120px 5%;
    /* Dark, moody gradient background */
    background: radial-gradient(circle at center, #3f3d3c6e 0%, #000000 90%);
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* The container that holds the Three.js Canvas */
#sphere-canvas-container {
    width: 100%;
    max-width: 800px;
    height: 500px;
    /* Adjust height as needed */
    position: relative;
    margin: 40px 0;
    /* Optional: A subtle glow behind the canvas area */
    background: radial-gradient(circle at center, rgba(49, 29, 6, 0.1) 0%, transparent 60%);
}

/* Hide button once active (handled by JS) */
.ai-speak-btn.hidden {
    display: none;
}

/* Ensure the container can hold the absolute icon */
#sphere-canvas-container {
    position: relative;
    /* ... existing styles ... */
}

/* CONTAINER (Positioning) */
.mic-icon-overlay {
    position: absolute;
    top: 50%;
    /* Adjust height position as needed */
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80px;
    /* Size of the whole glow area */
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

/* 1. THE SPINNING AURORA GLOW */
.mic-glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    /* The Magic Gradient: Purple -> Blue -> Cyan -> Purple */
    background: conic-gradient(from 0deg,
            #7000ff,
            #c45543,
            #c45543,
            #7000ff);

    /* Make it look like glowing light */
    filter: blur(8px);
    opacity: 0.8;

    /* Spin Animation */
    animation: aurora-spin 2s linear infinite;
}

/* 2. DARK BACKDROP (To make the white icon pop) */
.mic-backdrop {
    position: absolute;
    width: 65px;
    /* Smaller than the glow ring */
    height: 65px;
    background: #051025b6;
    /* Dark Blue/Black */
    border-radius: 50%;
    z-index: 2;
}

/* 3. THE ICON ITSELF */
.mic-svg {
    position: relative;
    z-index: 3;
    opacity: 0.9;
}

/* ANIMATION KEYFRAMES */
@keyframes aurora-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- DROPDOWN MENU STYLES --- */

/* 1. Make the parent list item the anchor point */
.nav-links li.dropdown-parent {
    position: relative;
    padding-bottom: 10px;
    /* Bridge gap so mouse doesn't lose focus */
    margin-bottom: -10px;
    /* Counteract padding layout shift */
}

/* 2. The Dropdown Box (Hidden by default) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Positions it directly below */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* Centers it and pushes it down slightly */

    background-color: #050505;
    /* Deep black to match your site */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Structure inside */
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
}

/* 3. The Hover Effect (Reveals the menu) */
.nav-links li.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    /* Floats up slightly */
}

/* 4. Styling the Links Inside */
.dropdown-menu li {
    margin: 0;
    /* Reset margins */
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ccc !important;
    /* Force grey color initially */
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    transition: all 0.2s ease;
}

/* 5. Hovering over a Dropdown Item */
.dropdown-menu a:hover {
    color: #ff6b00 !important;
    /* Fox Orange */
    background: rgba(255, 255, 255, 0.05);
    /* Slight highlight */
    padding-left: 25px;
    /* Cool slide effect */
}

/* =========================================
   14. SERVICE PAGE SPECIFICS (VOICE AI)
   ========================================= */

/* HERO SECTION */
.service-hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.service-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #aaa;
    line-height: 1.6;
    z-index: 10;
}

/* --- THE FIX: RENAMED CLASSES --- */
.agent-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Renamed to .service-orb-core */
.service-orb-core {
    width: 120px;
    height: 120px;
    background: #ff6b00;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.6);
    animation: orbBreathe 4s ease-in-out infinite;
    z-index: 2;
}

/* Renamed to .service-orb-ring */
.service-orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border-top: 2px solid #ff6b00;
    animation: orbSpin 8s linear infinite;
}

@keyframes orbBreathe {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 90px rgba(255, 107, 0, 0.9);
    }
}

@keyframes orbSpin {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   ARTICLE PAGE NAVIGATION (REFINED)
   ========================================= */

.article-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.article-nav .nav-container {
    display: flex;
    justify-content: space-between;
    /* Logo left, Button right */
    align-items: center;
    position: relative;
    /* Context for absolute centering */
    width: 100%;
    max-width: 100%;
    /* Full width to let button go to edge */
    margin: 0 auto;
    padding: 15px 40px;
    /* More padding for breathing room */
}

/* Ensure Logo is visible and styled */
.article-nav .logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    /* Dark text for light theme article */
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 10;
}

.article-nav .logo img {
    height: 32px;
    width: auto;
}

/* Center Links Absolutely */
.article-nav .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-nav .nav-links li a {
    text-decoration: none;
    color: #4a4a4a;
    /* Dark Grey Links */
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.article-nav .nav-links li a:hover {
    color: #ff6b00;
}

/* Button on the Right - "Move it to the right a bit" */
.article-nav .btn-nav-light {
    display: inline-block;
    padding: 10px 24px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 10;
    margin-right: -15px;
    /* Ensures it's at the edge */
}

.article-nav .btn-nav-light:hover {
    background: #e66000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Mobile Responsiveness for Article Nav */
@media (max-width: 900px) {
    .article-nav .nav-links {
        display: none;
        /* Hide links on mobile/tablet */
    }

    .article-nav .nav-container {
        justify-content: space-between;
    }
}

/* =========================================
   SERVICE PAGE FEATURES GRID (Added for GEO & Voice AI)
   ========================================= */
.features-section {
    padding: 100px 5%;
    background: #050505;
    /* Dark background */
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    /* More space */
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    /* Cyan tint for tech feel */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

/* FAQ Accordion Styles (Shared) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   SCROLL ANIMATION STYLES
   ========================================= */

/* 1. Make the section tall to allow scrolling */
.designed-for-section {
    height: 300vh;
    /* Gives us scroll room */
    padding: 0;
    /* Let sticky wrapper handle padding */
    background: #050505;
    overflow: visible !important;
    /* FIXED: Allow sticky to work */
    position: relative;
}

/* SCANNIG BEAM & JUMP EFFECTS */

/* Beam Container */
.scanning-line-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Random movement for the particle cloud */
@keyframes sparkle-move {
    0% {
        transform: translateY(-5px) scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: translateY(5px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(-3px) scale(1);
        opacity: 0.7;
    }
}

@keyframes scan-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(400px);
    }

    /* Adjust based on card width */
}

/* Icon Jump Animation */
.icon-btn {
    animation: icon-jump 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Staggered Delays based on position (approx 0% to 100% of scan duration) */
/* Assuming card width ~350px. Icons spaced ~60px apart. */
/* Beam moves 0 to 400px in 4s => 100px/s */
/* Adjust delays to match beam arrival */

.icon-btn:nth-child(1) {
    animation-delay: 0.8s;
}

.icon-btn:nth-child(2) {
    animation-delay: 1.2s;
}

.icon-btn:nth-child(3) {
    animation-delay: 1.6s;
}

.icon-btn:nth-child(4) {
    animation-delay: 2.0s;
}

.icon-btn:nth-child(5) {
    animation-delay: 2.4s;
}

@keyframes icon-jump {

    0%,
    15%,
    100% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(-8px) scale(1.1);
    }

    /* Jump Up */
    10% {
        transform: translateY(0) scale(1);
    }
}

/* 2. The Sticky Wrapper */
.df-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 3. Transitions for existing elements */
.df-center-visual {
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 20;
}

.df-node,
.df-title,
.df-subtitle,
.beam-svg-layer {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 4. ACTIVE STATE (When Scrolled) */
/* Move Image Left & Scale Down */
.state-scroll-active .df-center-visual {
    transform: translateX(-25vw) scale(0.7);
}

/* Hide Nodes & Title */
.state-scroll-active .df-node,
.state-scroll-active .df-title,
.state-scroll-active .df-subtitle,
.state-scroll-active .beam-svg-layer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

/* ... previous styles ... */

/* 5. NEW CONTENT (Hidden by default) */
.df-scroll-content,
.df-stats-content {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) translateX(50px);
    width: 40%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    text-align: center;
    /* Center text in the right space */
}

/* Show Content when Feature Active */
.state-scroll-active .df-scroll-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

/* Show Content when Stats Active */
.state-scroll-stats .df-stats-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

/* Ensure Features hide when Stats appear */
.state-scroll-stats .df-scroll-content {
    opacity: 0;
    transform: translateY(-50%) translateX(-50px);
    /* Exit to left */
    pointer-events: none;
}

/* Ensure Visuals stay hidden/transformed in Stats state */
.state-scroll-stats .df-center-visual {
    transform: translateX(-25vw) scale(0.7);
    /* Keep same position */
}

.state-scroll-stats .df-node,
.state-scroll-stats .df-title,
.state-scroll-stats .df-subtitle,
.state-scroll-stats .beam-svg-layer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

/* STATS STYLING */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    /* Solid Black Design */
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

    /* Removed backdrop-filter as it's opaque now */

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    /* Stronger shadow for depth */

    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 20px 50px 0 rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.1);
    /* Glow */
}

.stat-card:last-child {
    grid-column: span 2;
    /* Full width for the last one */
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

/* Content Styling */
.scroll-content-block h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-content-block p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature List */
.scroll-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scroll-feature-list li {
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 1px;
    /* The border width */
    border-radius: 16px;
    background: transparent;
    cursor: default;
    /* transition: transform 0.3s ease; */
}

.scroll-feature-list li:hover {
    transform: translateX(10px);
}

/* Logic for Neon Border using Helper Divs */
.neon-border-one {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    filter: blur(8px) drop-shadow(0 0 12px var(--color1));
    z-index: 0;
}

.neon-border-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Full animation width */
    height: 100%;
    background: linear-gradient(135deg, var(--color1), var(--color1), transparent, transparent);
}

.neon-border-two {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    filter: blur(8px) drop-shadow(0 0 12px var(--color2));
    z-index: 0;
}

.neon-border-two::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    /* Full animation width */
    height: 100%;
    background: linear-gradient(135deg, transparent, transparent, var(--color2), var(--color2));
}

/* User Requested Animation logic */
@keyframes neon-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-neon-border {
    position: absolute;
    width: 200%;
    /* Make bigger to cover corners during rotation */
    height: 200%;
    top: -50%;
    left: -50%;
    animation: neon-border var(--neon-duration, 4s) linear infinite;
    z-index: 0;
    opacity: 0.8;
}

.animate-neon-border::before {
    width: 100%;
    /* Full */
    height: 100%;
}


/* Content Wrapper */
.feature-content {
    position: relative;
    z-index: 10;
    background: #050505;
    /* Matches page background */
    width: 100%;
    height: 100%;
    border-radius: 15px;
    /* Slightly less than li radius */
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.scroll-feature-list .icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.scroll-feature-list .text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scroll-feature-list strong {
    color: #fff;
    font-size: 1.1rem;
}

.scroll-feature-list span {
    color: #666;
    font-size: 0.95rem;
}

/* =========================================
   AGENTS PREVIEW SECTION
   ========================================= */
.agents-preview-section {
    padding: 60px 5%;
    background: #000;
    /* Seamless with previous section */
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* Ensure waves don't spill */
}

#agent-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    opacity: 0.6;
    /* Adjust intensity */
}


.agents-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* On top of waves */
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 24px;
    /* Tighter gap to fit 3 */
}

@media (max-width: 1100px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

.agent-preview-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    /* Restored to sink the mockup inside the card */
}

/* ... existing styles ... */

/* --- AUTOMATION VIDEO MOCKUP --- */
.video-mockup {
    width: 90%;
    margin-bottom: 30px;
    aspect-ratio: 16/9;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 4px;
    /* Optical center */
}

.video-mockup:hover .play-button {
    transform: scale(1.1);
    background: rgba(37, 99, 235, 0.8);
    /* Blue on hover */
    border-color: #2563eb;
}

.video-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 0.75rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
}

.agent-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #333;
}

.agent-card-content {
    padding: 30px;
}

.agent-card-content h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.agent-card-content p {
    color: #888;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 90%;
}

.agent-card-visual {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.03), transparent 70%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* --- VOICE AGENT MOCKUP --- */
.agent-preview-card .phone-mockup {
    width: 220px;
    height: 380px;
    background: #000;
    border: 6px solid #333;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    margin-bottom: -150px;
    /* Deeper sink */
    transform: translateY(20px);
    /* Moved down from translateY(-20px) */
}

.agent-preview-card .phone-screen {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    height: 100%;
    border-radius: 24px;
    /* Full inner radius */
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    position: relative;
}

.voice-wave-icon {
    display: flex;
    gap: 5px;
    height: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.voice-wave-icon span {
    width: 4px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
}

.voice-wave-icon span:nth-child(1) {
    height: 15px;
    animation-delay: 0.1s;
}

.voice-wave-icon span:nth-child(2) {
    height: 30px;
    animation-delay: 0.2s;
}

.voice-wave-icon span:nth-child(3) {
    height: 25px;
    animation-delay: 0.3s;
}

.voice-wave-icon span:nth-child(4) {
    height: 15px;
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

.caller-id {
    padding-left: 30px;
    width: 100%;
}

.caller-id h4 {
    margin: 0;
    font-size: 1.2rem;
    white-space: nowrap;
}

.caller-id p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
    white-space: nowrap;
}

.call-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: auto;
    margin-bottom: 40px;
}

.btn-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* --- CHAT AGENT MOCKUP --- */
.agent-preview-card .chat-mockup {
    width: 90%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: -40px;
    /* Sinks inside card thanks to card overflow:hidden */
}

.chat-header {
    background: #2563eb;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-info p {
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.9;
}

.chat-body {
    padding: 20px;
    background: #f8fafc;
    height: 300px;
    /* Increased for alignment with taller phone */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
}

.chat-msg.received {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-bottom-left-radius: 2px;
}

.chat-msg.sent {
    background: #2563eb;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.link-preview {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.link-thumb {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 8px;
}

/* --- LANGUAGE SUPPORT VISUAL --- */
.language-visual {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.flag-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float-flag 4s infinite ease-in-out;
    overflow: hidden;
}

.flag-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-logo:nth-child(even) {
    animation-duration: 5s;
    animation-delay: 0.5s;
}

.flag-logo:nth-child(3n) {
    animation-duration: 3.5s;
    animation-delay: 1s;
}

@keyframes float-flag {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.link-text {
    display: flex;
    flex-direction: column;
}

.link-text strong {
    font-size: 0.85rem;
    color: #0f172a;
}

.link-text span {
    font-size: 0.75rem;
    color: #64748b;
}

.chat-input-area {
    margin-top: auto;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.input-fake {
    height: 10px;
    width: 60%;
    background: #e2e8f0;
    border-radius: 5px;
}

/* --- CALENDAR INVITE UI --- */
.calendar-invite {
    background: #fff;
    padding: 0 !important;
    /* Override msg padding */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    width: 250px;
}

.cal-header {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.cal-icon {
    font-size: 1.2rem;
    background: #eff6ff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.cal-details {
    display: flex;
    flex-direction: column;
}

.cal-details strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.cal-details span {
    font-size: 0.75rem;
    color: #64748b;
}

.cal-time-slot {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.cal-date {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.cal-date .month {
    font-size: 0.65rem;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
}

.cal-date .day {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1;
}

.cal-time {
    display: flex;
    flex-direction: column;
}

.cal-time span:first-child {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
}

.cal-time .zone {
    font-size: 0.75rem;
    color: #94a3b8;
}

.btn-cal-confirm {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cal-confirm:hover {
    background: #1d4ed8;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
/* Consolidated to the main animation section below */

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-250 {
    transition-delay: 0.25s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   CTA BANNER (Blue Card)
   ========================================= */
.cta-banner-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.cta-card-blue {
    background: #bbc0cf;
    background: linear-gradient(135deg, #a5b0c7, #1e40af);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.3);
}

.cta-content {
    max-width: 50%;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta-white {
    background: #fff;
    color: #1d4ed8;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-visual-pattern {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    font-family: monospace;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: overlay;
}

@media (max-width: 900px) {
    .cta-card-blue {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-content {
        max-width: 100%;
    }

}


/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: 120px 5%;
    background: #000000;
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.features-title {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 500;
}

/* THE GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    /* 2 rows */
    gap: 24px;
}

/* CARD STYLES */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Ensure content is above canvas for the glow effect card */
/* Ensure content is above canvas for the glow effect card */
/* Ensure content is above canvas for the glow effect card */
.feature-card.dotted-glow-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Specific Override for Top Left Card Background */
.feature-card#beam-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card#beam-container .card-overlay-top {
    top: 35px;
    /* Moved down as requested */
}

.feature-card.dotted-glow-card>* {
    position: relative;
    z-index: 1;
}

.glow-card-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    /* Round edges */
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-wide {
    grid-column: span 6;
    height: 480px;
    /* Taller for top row */
}

.feature-small {
    grid-column: span 4;
    height: 420px;
}

.feature-mini {
    grid-column: span 3;
    height: 420px;
}

/* CONTENT STYLES */
.feature-visual {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Temp Placeholder Style */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Training Visual Styles */
.training-visual-container {
    flex-direction: column;
    padding: 20px;
    background: radial-gradient(circle at center, rgba(150, 150, 150, 0.1) 0%, transparent 70%);
}

.training-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(150, 150, 150, 0.1);
    border: 1px solid rgba(150, 150, 150, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #949494;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #949494;
    border-radius: 50%;
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.training-core {
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: 50px;
    margin-left: -30px;
    margin-bottom: 20px;
}

.mind-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(150, 150, 150, 0.1);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #949494;
    box-shadow: 0 0 30px rgba(150, 150, 150, 0.3);
    animation: orb-glow 3s infinite ease-in-out;
    z-index: 5;
}

@keyframes orb-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(150, 150, 150, 0.2);
        border-color: rgba(150, 150, 150, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(150, 150, 150, 0.5);
        border-color: rgba(150, 150, 150, 0.6);
    }
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-orbit 10s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.node-1 {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 70%;
    left: -18px;
}

.node-3 {
    top: 70%;
    right: -18px;
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sync-status {
    width: 80%;
}

.sync-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-align: center;
}

.sync-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.sync-progress {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #8a2be2, #b862e6);
    border-radius: 2px;
    animation: sync-animation 4s infinite linear;
}

@keyframes sync-animation {
    0% {
        width: 10%;
        transform: translateX(-100%);
    }

    50% {
        width: 60%;
        transform: translateX(50%);
    }

    100% {
        width: 10%;
        transform: translateX(200%);
    }
}

@keyframes orbit-shift-1 {
    0% {
        transform: translateY(0) translateX(-50%);
    }

    33% {
        transform: translateY(10px) translateX(-40%);
    }

    66% {
        transform: translateY(-10px) translateX(-60%);
    }

    100% {
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes orbit-shift-2 {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes orbit-shift-3 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}


.mockup-rect {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.mockup-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* HIGH-END CARD TEXT OVERLAY */
/* TEXT OVERLAY: TITLE (TOP) */
.card-overlay-top {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.card-overlay-top h3 {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.card-overlay-top p {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin: 6px 0 0 0;
    /* Space from headline */
    text-align: center;
    max-width: 85%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* TEXT OVERLAY: SUBTITLE (BOTTOM) */
.card-overlay-bottom {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 20;
    pointer-events: none;
    max-width: 90%;
    padding-right: 20px;
}

.card-overlay-bottom p {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Specific Override for Bottom Center Card */
.damn-good-card .card-overlay-bottom {
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
}

.damn-good-card .card-overlay-bottom p {
    color: rgba(255, 255, 255, 0.75) !important;
    opacity: 1 !important;
    max-width: 80%;
    z-index: 100 !important;
    mix-blend-mode: normal !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* Audit Trail Image Positioning */
.audit-trail-img {
    position: absolute;
    min-width: 110%;
    /* Makes image larger so you can move it */
    min-height: 110%;
    top: 0%;
    left: 20%;

    /* MOVE PICTURE HERE: */
    /* translate(X%, Y%) -> Move the image around */
    /* scale(1.0) -> Zoom in/out */
    transform: translate(-50%, -50%) scale(1.0);

    object-fit: cover;

    /* BLACK SHADOW */
    box-shadow: 0 20px 20px rgba(151, 151, 151, 0.9);

    transition: transform 0.3s ease;
}

.audit-trail-card {
    padding: 24px;
    display: block;
    /* Removed flex */
    overflow: hidden;
    /* GREY RADIANT (Gradient) */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(252, 252, 252, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Optional: Ensure border matches */
}

.audit-trail-card .feature-visual {
    margin-bottom: 0;
    height: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-wide,
    .feature-small {
        grid-column: span 1;
        height: auto;
        min-height: 400px;
    }

    .features-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   MARKETING AUDIT SECTION (LIME THEME)
   ========================================= */
.audit-promo-section {
    padding: 120px 5%;
    /* Transparent at top freely shows content/bg behind, fading to black */
    background: linear-gradient(to bottom, transparent, #000000 150px);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.audit-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.audit-left {
    flex: 1.2;
}

.audit-right {
    flex: 0.8;
}

.audit-preheading {
    display: block;
    color: #ff8800ad;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.audit-title {
    font-size: 3.8rem;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.audit-text {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 500px;
}

.audit-text strong {
    color: #ffffff;
}

.btn-audit {
    display: inline-block;
    padding: 22px 44px;
    background: #ff8a04c2;
    color: #000000;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-audit:hover {
    transform: scale(1.03);
}

@media (max-width: 1100px) {
    .audit-container {
        flex-direction: column;
        gap: 50px;
    }

    .audit-title {
        font-size: 2.8rem;
    }

    .audit-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .audit-promo-section {
        padding: 80px 5%;
    }

    .audit-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   DASHBOARD SHOWCASE SECTION
   ========================================= */
.dashboard-showcase-section {
    padding: 100px 5%;
    background: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* HEADER STYLES */
/* HEADER STYLES */
/* Icon removed as per request */

.showcase-title {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
}

/* DASHBOARD VISUALIZATION */
.dashboard-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.dashboard-interface {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 98, 230, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transform: rotateX(10deg) scale(0.95);
    /* Slight 3D tilt */
    transition: transform 0.5s ease;
}

.dashboard-interface:hover,
.dashboard-interface.scrolled {
    transform: rotateX(0deg) scale(1);
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

/* DASHBOARD IMAGE */
.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* =========================================
   MOBILE APP SHOWCASE SECTION
   ========================================= */
.mobile-showcase-section {
    padding: 100px 5%;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.mobile-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   ANIMATED BEAM CARD STYLES (Tree Topology)
   ========================================= */
.dotted-glow-card {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* Full control */
}

.beam-playground {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* Distribute cols */
    position: relative;
    z-index: 10;
    padding: 140px 40px 40px 40px;
    /* Increased top padding to push down */
}

/* Source Node */
.beam-node-source {
    width: 80px;
    height: 80px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.beam-node-source img {
    width: 40px;
    height: 40px;
}

/* Connected Badge (Mind Icon) */
.beam-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

/* App Grid */
.beam-app-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Vertical gap between branches */
    justify-content: center;
}

.beam-branch {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Horizontal gap between Notion->Supabase etc */
}

.beam-app-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    transition: transform 0.3s;
}

.beam-app-icon:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.beam-app-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .beam-playground {
        padding: 100px 16px 24px 16px;
        justify-content: center;
        gap: 24px;
    }

    .beam-node-source {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .beam-node-source img {
        width: 28px;
        height: 28px;
    }

    .beam-badge {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .beam-badge svg {
        width: 18px;
        height: 18px;
    }

    .beam-app-grid {
        gap: 28px;
    }

    .beam-branch {
        gap: 32px;
    }

    .beam-app-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .beam-app-icon img {
        width: 18px;
        height: 18px;
    }
}

.mobile-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT: PHONE VISUAL */
.mobile-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border: 12px solid #1a1a1a;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    padding: 0;
    /* Remove padding */
    overflow: hidden;
    border-radius: 30px;
    /* Match inner radius */
}

.phone-app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(circle, rgba(184, 98, 230, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

/* RIGHT: CONTENT */
.mobile-content {
    flex: 1;
    padding-left: 40px;
}

.mobile-title {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}

.mobile-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.mobile-features-list {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
    font-size: 0.8rem;
}

.btn-mobile-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mobile-cta:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mobile-grid {
        flex-direction: column;
        text-align: center;
    }

    .mobile-content {
        padding-left: 0;
    }

    .mobile-visual {
        margin-bottom: 40px;
    }

    .mobile-features-list li {
        justify-content: center;
    }
}

/* =========================================
   WORLD MAP SECTION
   ========================================= */
.world-map-section {
    padding: 100px 5%;
    background: #000000;
    text-align: center;
}

.map-container-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.map-header {
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.map-header p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.world-map-container {
    position: relative;
    width: 100%;
    /* Aspect ratio maintenance (2:1 like the React component) */
    aspect-ratio: 2 / 1;
    background: #000;
    /* Dark background matching the map */
    border-radius: 12px;
    overflow: hidden;
}

.world-map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #000 0%, transparent 15%, transparent 85%, #000 100%),
        linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
    pointer-events: none;
    z-index: 20;
}

.world-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: block;
}

/* SVG Overlay */
.world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Animation for the paths */
.animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* =========================================
   AUDIT TRAIL CARD (Re-implementation)
   ========================================= */

/* 1. Parent Card Styling */
.feature-card.audit-trail-card {
    padding: 0 !important;
    /* Remove main padding to allow full-bleed image */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* Crop image if it sinks too far */
}

/* 2. Text Content Styling */
.feature-card.audit-trail-card .feature-content {
    padding: 30px 30px 0 30px;
    /* Re-apply padding to text */
    /* Removed flex-shrink and z-index to fix visibility issue */
}

/* 3. Image Styling */
.audit-trail-img {
    width: 100%;
    /* Let the image fill the remaining space comfortably */
    height: auto;
    min-height: 350px;
    /* Ensure it's not tiny */

    display: block;
    margin-top: auto;
    /* Push to bottom of flex container */

    object-fit: contain;
    object-position: bottom;
    /* Anchor visuals to bottom */

    /* Sinking Effect + Right Shift */
    transform: translate(20px, 40px);
    /* Push down slightly and right */
    border-radius: 20px 20px 0 0;
    /* Softer radius */
    position: relative;
    z-index: 1;
}

/* =========================================
   SMART TASK CARD (Left Card)
   ========================================= */
.feature-card.smart-task-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card.smart-task-card .feature-visual {
    width: 100%;
    margin: 0;
    border-radius: 0;
    /* Full bleed means no internal radius usually, or keep top radius? */
    border-radius: 20px 20px 0 0;
    /* Keep top rounded to match card if it's at top */
    /* background: transparent; Removed to allow default dark bg to show full bleed */
    flex-grow: 1;
}

.feature-card.smart-task-card .feature-content {
    padding: 0 30px 30px 30px;
    /* Padding for text at bottom */
}

/* =========================================
   DAMN GOOD CARD (Detailed Interactive)
   ========================================= */

/* 1. Card Base */
.feature-card.damn-good-card {
    position: relative;
    background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
    /* Deep dark base */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 2. Ripple Background */
.damn-good-card .card-ripples {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* Concentric faint rings */
    background: repeating-radial-gradient(circle at 50% 40%,
            rgba(155, 29, 29, 0.03) 0,
            rgba(207, 17, 17, 0.03) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.6;
    mask-image: radial-gradient(circle at 50% 40%, black 20%, transparent 80%);
}

/* 3. Visual Content */
.damn-good-card .card-visual-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove padding to center perfectly */
    height: 100%;
    width: 100%;
    flex-grow: 1;
    z-index: 10;
    position: relative;
    background: transparent;
}

.icon-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* 4. Icon Buttons - Scaling & Transparency */
.icon-btn {
    border-radius: 50%;
    /* Transparent / Subtle Glass */
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle fill */
    border: none;
    /* Removed border as requested/implied by "transparent" */

    /* White Radius / Inner Border with Blur */
    box-shadow: inset 0 0 8px 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Slight outer border to define edge */

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    padding: 10px;
    /* Increased padding slightly for inner radius breathing room */
}

.icon-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    /* Near full opacity */
    transition: opacity 0.3s;
    filter: none;
    /* Full color always */
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    /* Remove move, just scale logic below */
}

.icon-btn:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* SIZING LOGIC (Fisheye Effect) */

/* 1. Outer Icons (Smallest) */
.icon-btn:nth-child(1),
.icon-btn:nth-child(5) {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    background: transparent;
    /* Fully transparent outer? */
}

/* 2. Inner Neighbors (Medium) */
.icon-btn:nth-child(2),
.icon-btn:nth-child(4) {
    width: 54px;
    height: 54px;
    opacity: 0.8;
}

/* 3. Center Icon (Largest - Active) */
.icon-btn:nth-child(3),
.icon-btn.active {
    width: 72px;
    /* Largest Scale Only */
    height: 72px;
    z-index: 10;
    /* Removed active background/glow to match others */
    opacity: 1;
    padding: 14px;
}

.icon-btn.active img {
    opacity: 1;
    filter: grayscale(0%);
}

/* 5. Text Styling update */
.feature-card.damn-good-card .feature-content {
    z-index: 20;
    position: relative;
    padding-top: 10px;
}

.feature-card.damn-good-card h3 {
    margin-bottom: 8px;
}

.feature-card.damn-good-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   ANIMATED NOTIFICATION LIST
   ========================================= */
.notification-list-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 450px 20px 20px;
    /* Increased top padding to bring it down */
    gap: 12px;
    position: relative;
    align-items: flex-start;
    /* Center horizontally */
    justify-content: flex-start;
    /* Stack from the (padded) top */
    /* Optional: Fade out bottom */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Adjusted for feature-wide height (480px) or custom taller height */
.feature-small.smart-task-card {
    height: 420px;
}

.feature-small.smart-task-card .notification-list-container {
    padding-top: 150px;
}

.notification-card {
    position: relative;
    width: 100%;
    max-width: 95%;
    margin: 0;

    /* Dark Glassmorphism */
    background: transparent;
    /* dark:bg-transparent */
    /* box-shadow: inset 0 -20px 80px -20px #ffffff1f; converted to rgba */
    box-shadow: inset 0 -20px 80px -20px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;

    /* Transitions for Entry/Exit */
    transition:
        transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
        opacity 0.4s ease,
        max-height 0.4s cubic-bezier(0.2, 1, 0.3, 1),
        margin 0.4s cubic-bezier(0.2, 1, 0.3, 1),
        box-shadow 0.2s;

    opacity: 1;
    max-height: 100px;
    /* Approximate max height */
    transform: scale(1);
    flex-shrink: 0;
    /* Prevent squashing */
}

.notification-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.03);
}

/* Entry State (Hidden) */
.notification-card.entering {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
    max-height: 0;
    margin-top: -12px;
    /* Pull siblings up? No, we want to push them down. 
                          If I add to top, and it has height 0, it takes no space.
                          Then animate to height 100px, it pushes others down. 
                       */
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
}

/* Exit State */
.notification-card.exiting {
    opacity: 0;
    transform: scale(0.95);
    /* For exit at bottom, we don't strictly need to collapse height if we remove it,
       but modifying opacity makes it vanish smoothly. 
    */
    /* If we want it to 'disappear' before removal */
}

/* Inner Elements */
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-text {
    font-size: 1.2rem;
    line-height: 1;
}

.card-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.card-name {
    white-space: nowrap;
}

.card-dot {
    margin: 0 6px;
    font-size: 0.8rem;
    color: #888;
}

.card-time {
    font-size: 0.8rem;
    color: #888;
}

.card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.3;
}

/* =========================================
   ABOUT US PAGE (SWISS CONSULTING STYLE)
   ========================================= */

.about-modern-page {
    background-color: #ffffff;
    color: #1a1a1a;
}

.modern-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* SECTION 1: TOP LIGHT */
.about-top-modern {
    padding: 180px 0 100px;
}

.modern-header-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 120px;
}

.label-orange {
    color: #ff5b32;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 25px;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: headlineReveal 1s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
}

.modern-headline {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    color: #000;
    margin: 0;
    /* Animation */
    opacity: 0;
    transform: translateY(40px);
    animation: headlineReveal 1.8s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes headlineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-grid-row {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 80px;
    border-top: 1px solid #eeeeee;
    padding-top: 40px;
}

.section-tagline {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.modern-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 60px;
}

.modern-pillar h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.modern-pillar p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* SECTION 2: DARK EXPERTISE */
.about-mid-dark {
    background-color: #000;
    color: #fff;
    padding: 120px 0;
}

.expertise-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 30px;
    letter-spacing: -1px;
}

.expertise-desc {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.expertise-cards {
    display: flex;
    flex-direction: column;
}

.exp-card {
    padding: 60px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.4s ease;
}

.exp-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-card.dark-gray {
    background: #0a0a0a;
}

.exp-card.highlight-orange {
    background: #ff5b32;
}

.exp-card.highlight-orange h3,
.exp-card.highlight-orange p {
    color: #fff;
}

.card-icon {
    margin-bottom: 30px;
}

.exp-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.exp-card p {
    font-size: 1rem;
    color: #888;
    max-width: 300px;
    line-height: 1.5;
}

.arrow-btn {
    position: absolute;
    right: 50px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.exp-card:hover .arrow-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* SECTION 3: WORD FROM OUR FOUNDER */
.founder-section {
    padding: 120px 0 150px;
    background: #fff;
}

.founder-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: center;
}

.founder-quote {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin: 25px 0 0;
    letter-spacing: -1px;
    font-style: normal;
    border: none;
    padding: 0;
}

.quote-mute {
    color: #bbbbbb;
    font-weight: 400;
}

.quote-accent {
    color: #ff5b32;
    position: relative;
    display: inline-block;
}

.quote-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 91, 50, 0.15);
    z-index: -1;
}

.founder-info-col {
    padding-left: 50px;
    border-left: 1px solid #eee;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff5b32;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.founder-bio {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .modern-headline {
        font-size: 3.5rem;
    }

    .modern-grid-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .expertise-title {
        font-size: 2.8rem;
    }

    .founder-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .founder-info-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .modern-headline {
        font-size: 2.5rem;
    }

    .modern-pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-quote {
        font-size: 2rem;
    }
}

/* NAVBAR ADAPTATION FOR LIGHT PAGE */
.about-modern-page .nav-links {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-modern-page .nav-links a {
    color: #333;
}

.about-modern-page .nav-links a:hover,
.about-modern-page .nav-links a.active {
    color: #000;
}

.about-modern-page .nav-login {
    color: #333;
}

.about-modern-page .btn-nav {
    background: #000;
    color: #fff;
}

/* Ensure logo is visible (if it was white only) */
.about-modern-page .logo {
    filter: invert(1) brightness(0.2);
}

.about-modern-page .navbar-scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* =========================================
   ANALYTICS SHOWCASE SECTION
   ========================================= */
.analytics-showcase {
    padding: 100px 50px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    backdrop-filter: blur(20px);
}

.analytics-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.analytics-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    max-width: 700px;
}

.analytics-headline span {
    color: #666;
}

/* Floating Notification Cards */
.analytics-floating-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: floatCardY 6s infinite ease-in-out;
}

.float-card:nth-child(2) {
    animation-delay: -3s;
    transform: translateX(20px);
}

.float-card:nth-child(3) {
    margin-top: 80px;
    transform: translateX(-10px);
    animation-delay: -1.5s;
}

@keyframes floatCardY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.float-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.float-card-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}

.float-card-info p {
    font-size: 0.75rem;
    margin: 0;
    color: #888;
}

/* Main Visual Area */
.analytics-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.analytics-big-stat {
    max-width: 300px;
}

.analytics-big-stat h2 {
    font-size: 8rem;
    line-height: 0.9;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -4px;
}

.analytics-big-stat p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.5;
}

/* Concentric Arcs */
.analytics-arcs-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 700px;
    height: 350px;
}

.arcs-svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.arc-path {
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
}

.arc-bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.arc-progress {
    stroke: #6366f1;
    /* Indigo */
}

.arc-progress-2 {
    stroke: rgba(99, 102, 241, 0.6);
}

.arc-progress-3 {
    stroke: rgba(99, 102, 241, 0.3);
}

.arc-labels-container {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 80px;
}

.arc-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   AUTOMATION DEFINITION SECTION
   ========================================= */
.automation-definition {
    padding: 100px 50px 60px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.def-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.def-content {
    flex: 1;
}

.def-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.def-description {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.def-description strong {
    color: #fff;
}

.def-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.def-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eee;
    font-size: 1.05rem;
}

.def-item svg {
    color: #ff6b00;
    flex-shrink: 0;
}

/* Definition Visual */
.def-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}


.def-main-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.def-main-img:hover {
    transform: scale(1.02);
}

/* =========================================
   IS THIS YOU? SECTION (SCROLLYTELLING)
   ========================================= */
.is-this-you-wrapper {
    height: 350vh;
    /* Scroll depth */
    position: relative;
    background: #000;
}

.is-this-you-section {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    text-align: center;
    overflow: hidden;
}

.is-this-you-text {
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0 auto;
    display: inline-block;
    z-index: 10;
    position: relative;
    transition: opacity 0.5s ease;
}

.is-this-you-text span {
    background: linear-gradient(135deg, #fff 0%, #fdba74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Pain Point Blocks */
.pain-point {
    position: absolute;
    padding: 15px 25px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
}

/* Corner Accents (Like in the image) */
.pain-point::before,
.pain-point::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pain-point::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.pain-point::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Positions based on the image */
.pp-1 {
    top: 20%;
    left: 10%;
    text-align: left;
}

.pp-2 {
    top: 40%;
    right: 10%;
    text-align: left;
}

.pp-3 {
    bottom: 20%;
    left: 20%;
    text-align: left;
}

.pp-4 {
    bottom: 30%;
    right: 20%;
    text-align: right;
}

.is-this-you-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.15), transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .is-this-you-text {
        font-size: 4rem;
    }

    .pain-point {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .is-this-you-text {
        font-size: 3rem;
    }

    .pp-1 {
        top: 15%;
        left: 5%;
    }

    .pp-2 {
        top: 35%;
        right: 5%;
    }

    .pp-3 {
        bottom: 15%;
        left: 5%;
    }

    .pp-4 {
        bottom: 25%;
        right: 5%;
    }
}

/* =========================================
   STORYTELLING SCROLLY SECTION
   ========================================= */
.storytelling-scrolly {
    position: relative;
    background: #000;
    padding: 0;
    margin-top: -2px;
    /* Prevent gaps */
}

.scrolly-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    position: relative;
}

/* LEFT SIDE: STICKY VISUAL */
.scrolly-visual {
    flex: 1.2;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.visual-sticky-wrapper {
    position: relative;
    width: 90%;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    perspective: 1200px;
}

.visual-inner {
    position: relative;
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.scrolly-img {
    position: absolute;
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0;
    transform: translateZ(-50px) rotateY(5deg) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    filter: grayscale(0.5) brightness(0.5);
}

.scrolly-img.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0deg) scale(1);
    pointer-events: auto;
    filter: grayscale(0) brightness(1);
}

.scrolly-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent 70%);
    filter: blur(60px);
    z-index: -1;
    transition: all 1s ease;
    opacity: 0.5;
}

/* RIGHT SIDE: SCROLLING CONTENT */
.scrolly-content {
    flex: 0.8;
    padding: 15vh 60px 20vh;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.scrolly-header {
    margin-bottom: 20vh;
}

.scrolly-step {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 0;
    opacity: 0.15;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.scrolly-step.active {
    opacity: 1;
    transform: translateX(0);
}

/* Progress Line on the left of text */
.scrolly-step::before {
    content: '';
    position: absolute;
    left: -62px;
    top: 50%;
    width: 4px;
    height: 0;
    background: #ff6b00;
    border-radius: 2px;
    transition: height 0.6s ease;
    transform: translateY(-50%);
}

.scrolly-step.active::before {
    height: 60px;
}

.step-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 107, 0, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    width: fit-content;
}

.scrolly-step h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.scrolly-step p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #999;
    max-width: 480px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .scrolly-container {
        flex-direction: column;
    }

    .scrolly-visual {
        position: sticky;
        top: 0;
        height: 50vh;
        width: 100%;
        background: #000;
        z-index: 10;
        padding: 10px;
    }

    .visual-sticky-wrapper {
        width: 95%;
        border-radius: 20px;
    }

    .scrolly-content {
        padding: 0 30px 10vh;
        border-left: none;
    }

    .scrolly-step {
        min-height: 70vh;
        opacity: 0.3;
        transform: none;
        padding-top: 10vh;
    }

    .scrolly-step::before {
        left: -20px;
    }

    .scrolly-header {
        margin-bottom: 5vh;
        padding-top: 40px;
    }

    .scrolly-step h3 {
        font-size: 2.2rem;
    }
}

/* =========================================
   CHAT BUBBLE STYLES
   ========================================= */

/* =========================================
   MINIMALIST CHAT BUBBLE (APPLE/SIRI STYLE)
   ========================================= */

.chat-bubble-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2147483647;
    /* Highest possible z-index */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    pointer-events: none;
    /* Just for the container itself */
}

.chat-bubble-container * {
    pointer-events: auto;
    /* Re-enable for children */
}

/* Floating Trigger */
.chat-bubble-trigger {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 107, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2147483647;
}

.chat-bubble-trigger:hover {
    background: #000;
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 0, 0.3);
    transform: scale(1.1) translateY(-5px);
}



.chat-bubble-trigger div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.chat-bubble-trigger svg {
    width: 28px;
    height: 28px;
}

.chat-bubble-trigger .chat-icon {
    position: absolute;
}

.chat-bubble-trigger .close-icon {
    position: absolute;
    transform: translateY(100%);
    opacity: 0;
}

.chat-bubble-container.active .chat-icon {
    transform: translateY(-100%);
    opacity: 0;
}

.chat-bubble-container.active .close-icon {
    transform: translateY(0);
    opacity: 1;
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 400px;
    height: 520px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    padding: 30px;
    color: #1a1a1a;
}

.chat-bubble-container.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* AI Orb Section (Gradient Orb Implementation) */
.chat-ai-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px;
}

.ai-orb-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-orb {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Glassy base */
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(12px);
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    /* Keep it inside the circle */

    /* 3D Sphere Effect using Shadows */
    box-shadow:
        inset -10px -10px 20px rgba(255, 182, 193, 0.2),
        /* Pinkish bottom shadow */
        inset 10px 10px 20px rgba(255, 240, 245, 0.8),
        /* Soft pink/white highlight */
        inset 0 0 4px 2px rgba(255, 192, 203, 0.5),
        /* Blurred internal rim */
        0 8px 32px rgba(255, 105, 180, 0.2);
    /* Soft pink outer glow */

    border: none;
    transform: translateZ(0);
    /* Hardware accelerate */
}

/* Common styles for inner blobs */
.orb-layer {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: blur(25px);
    /* Soften the internal shapes */
    animation: orb-float 10s infinite ease-in-out;
}

/* 1. Main Pink Glow */
.layer-1 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ff8fab, transparent 70%);
    top: -15%;
    left: -15%;
    animation-delay: 0s;
}

/* 2. White Highlight Core */
.layer-2 {
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at center, #ffffff, transparent 70%);
    bottom: -10%;
    right: -10%;
    opacity: 1;
    animation-delay: -3s;
}

/* 3. Soft Peach Accent */
.layer-3 {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, #ffc2d1, transparent 70%);
    top: 15%;
    right: 15%;
    animation-delay: -6s;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 18px !important;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #86868b;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(15px, -20px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.9) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

.chat-ai-intro h2 {
    font-size: 2.22rem;
    font-weight: 500;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.8px;
    background: linear-gradient(180deg, #1d1d1f, #86868b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Messages List */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: none;
    /* Hidden during intro */
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
}

.chat-messages.active {
    display: flex;
}

.chat-messages::-webkit-scrollbar {
    width: 0;
}

.message {
    max-width: 85%;
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.4;
    position: relative;
    animation: messageReveal 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes messageReveal {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message.bot {
    align-self: flex-start;
    background: #f5f5f7;
    color: #1d1d1f;
    border-bottom-left-radius: 5px;
}

.message.user {
    align-self: flex-end;
    background: #1d1d1f;
    color: #fff;
    border-bottom-right-radius: 5px;
}

/* Apple Style Input */
.chat-input-container {
    width: 100%;
    margin-top: auto;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f7;
    border-radius: 30px;
    padding: 8px 8px 8px 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.chat-input-wrapper:focus-within {
    background: #fff;
    border-color: #d2d2d7;
    box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.1);
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #1d1d1f;
    padding: 12px 0;
    font-size: 1.1rem;
    outline: none;
}

.chat-input::placeholder {
    color: #86868b;
}

.chat-send-btn {
    background: #1d1d1f;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    background: #000;
}

.chat-send-btn svg {
    width: 20px;
    height: 20px;
}

/* Transition between Intro and Chat */
.intro-hidden {
    display: none !important;
}

/* Mobile */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: 80vh;
        bottom: 80px;
        right: -10px;
    }
}

/* =========================================
   9. RESPONSIVE OVERRIDES (TABLET & MOBILE)
   ========================================= */

/* --- HAMBURGER MENU (Hidden on Desktop) --- */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- TABLET (MAX-WIDTH: 1024px) --- */
@media (max-width: 1024px) {

    /* 1. Global Layout Fixes */
    .hero-container,
    .section-container,
    .contact-content-wrapper,
    .audit-container,
    .is-this-you-section,
    .scrolly-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100%;
    }

    /* 2. Navigation */
    .nav-links {
        display: none;
        /* Hide default links */
        /* Future: Add JS to toggle a mobile menu overlaid on screen */
    }

    .hamburger-menu {
        display: flex;
        /* Show hamburger */
    }

    .nav-actions {
        margin-right: 0;
        /* Reset desktop margin */
        gap: 15px;
    }

    .navbar {
        padding: 20px;
        /* Reduce padding */
    }

    /* 3. Hero Section */
    .hero {
        height: auto;
        padding-top: 80px;
        /* Space for fixed nav */
        padding-bottom: 20px;
    }

    .hero-content-left,
    .hero-content-center {
        margin: 0 auto 40px auto;
        max-width: 100%;
        text-align: center;
    }

    .hero-title-static {
        font-size: 3.5rem;
        /* Smaller title */
    }

    .hero-grid-right {
        display: none;
        /* Hide complex grid on tablet if it breaks layout users often prefer cleaner look */
        /* OR make it simpler: */
        /* height: 400px; width: 100%; mask-image: none; margin-top: 0; */
    }

    /* 4. Stats Strip */
    .stats-container {
        flex-direction: row;
        /* Keep row for tablet if fits, or wrap */
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-block {
        flex: 1 1 40%;
        /* 2 per row */
    }

    .stat-line {
        display: none;
        /* Hide dividers when wrapping */
    }

    /* 5. Audit Promo */
    .audit-right {
        margin-top: 40px;
        text-align: center;
    }

    .audit-left h2 {
        font-size: 2.5rem;
    }

    /* 6. Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 30px;
    }

    .feature-wide,
    .feature-small {
        grid-column: span 1;
    }

    /* 7. Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr !important;
        /* Force stack */
        max-width: 100%;
    }

    .card-roi,
    .card-security,
    .card-reliability,
    .card-cx {
        grid-column: span 1 !important;
        min-height: auto;
    }

    /* 8. Contact Section */
    .contact-left {
        padding-top: 0;
        margin-bottom: 50px;
        max-width: 100%;
    }

    .contact-right {
        width: 100%;
        max-width: 600px;
    }

    .split-title {
        font-size: 3rem;
    }

    /* 9. Scrollytelling & Definitions */
    .scrolly-visual {
        position: relative;
        height: 50vh;
        top: 0;
        margin-bottom: 40px;
    }

    .scrolly-content {
        padding: 0;
    }

    .def-container {
        flex-direction: column;
    }
}

/* --- MOBILE (MAX-WIDTH: 768px) --- */
@media (max-width: 768px) {

    /* Typography Overrides */
    html {
        font-size: 14px;
        /* Base scale down */
    }

    .hero-title-static {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }



    .section-title,
    .bento-header h2,
    .process-headline {
        font-size: 2.2rem !important;
    }

    /* Stats: Stack vertically */
    .stats-container {
        flex-direction: column;
    }

    .stat-block {
        flex: 1 1 100%;
    }

    /* Process Timeline */
    .process-timeline {
        padding-left: 0;
    }

    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .step-line {
        display: none;
        /* Hide lines on mobile stack */
    }

    /* Contact Cards */
    .contact-cards-stack {
        width: 100%;
    }

    .info-card-row {
        width: 100%;
        justify-content: flex-start;
    }

    /* Hide Navigation Extras only in the Navbar */
    .navbar .nav-login,
    .navbar .btn-nav {
        display: none;
        /* Hide buttons on mobile, keep only hamburger */
    }

    .hamburger-menu {
        margin-left: auto;
        /* Push to right */
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-end;
    }

    /* Adjust Padding */
    .hero,
    .process-section,
    .work-section,
    .bento-section,
    .contact-split-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================
   10. MOBILE MENU OVERLAY (PREMIUM)
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    /* Added for centering */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

/* Add stagger effect to links */
.mobile-menu-overlay.active .mobile-nav-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-menu-overlay.active .mobile-nav-links a:nth-child(9) {
    transition-delay: 0.5s;
}

.mobile-contact-btn {
    background: #ff5b32;
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 20px;
    color: #000 !important;
}


/* =========================================
   11. MOBILE NAVBAR REFINEMENTS
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        top: 0;
        /* Stick to top */
        padding: 20px 0;
        /* Clean padding (removed side padding to push logo left) */
        background: transparent !important;
        /* Force transparent as requested */
        backdrop-filter: none;
        /* Remove blur */
        border-bottom: none;
        /* Remove border */
        display: flex;
        justify-content: space-between;
        /* Logo Left, Menu Right */
        align-items: center;
    }

    .logo img {
        height: 80px;
        /* Smaller mobile logo */
        margin-left: 0 !important;
        /* Force reset desktop margin */
    }

    .hamburger-menu {
        width: 30px;
        /* Standard visible size */
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-menu span {
        background-color: #fff;
        /* White bars for dark mode */
        height: 2px;
        width: 100%;
    }

    .nav-actions {
        margin-right: 0 !important;
        /* Force reset */
        width: auto;
        gap: 0;
        display: flex;
        /* Ensure hamburger is visible */
    }

    /* Adjust the mobile menu close button position to match */
    .mobile-menu-close {
        top: 25px;
        right: 25px;
    }
}

/* =========================================
   12. MOBILE MENU FIXES (FORCE VISIBILITY)
   ========================================= */
@media (max-width: 768px) {

    /* Ensure Container is Flex and Spaced */
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        z-index: 2147483647 !important;
        /* Max Z-Index */
        background: transparent !important;
    }

    /* Force desktop navbar buttons hidden */
    .navbar .nav-login,
    .navbar .btn-nav {
        display: none !important;
    }

    /* Force Hamburger Visible */
    .hamburger-menu {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important;
        height: 22px !important;
        background: transparent !important;
        z-index: 2147483647 !important;
        border: none !important;
        padding: 0 !important;
        margin-right: 0 !important;
        position: relative;
    }

    /* Ensure Lines are Visible */
    .hamburger-menu span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #ffffff !important;
        /* White color */
        border-radius: 4px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Ensure Parent doesn't collapse */
    .nav-actions {
        display: flex !important;
        width: auto !important;
        margin-right: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}


/* =========================================
   13. STRUCTURAL FIX FOR HAMBURGER MENU
   ========================================= */
/* Since we moved the button out of .nav-actions, we need to ensure it's positioned correctly */

@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        /* Ensure it stays fixed on top */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: transparent !important;
        z-index: 99999 !important;
    }

    /* Reset desktop margins */
    .logo {
        margin: 0 !important;
        z-index: 100000 !important;
        /* Above overlay if needed */
    }

    /* The moved hamburger menu */
    .hamburger-menu {
        display: flex !important;
        position: absolute !important;
        /* Force position */
        top: 25px !important;
        right: 25px !important;
        z-index: 100000 !important;
        /* Top Z-Index */
        background: transparent !important;
        border: none !important;
        width: 32px !important;
        height: 24px !important;
        cursor: pointer !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
    }

    .hamburger-menu span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #fff !important;
        border-radius: 2px;
    }

    /* Hide desktop container */
    .nav-actions {
        display: none !important;
    }
}


/* =========================================
   14. HAMBURGER VISIBILITY PATCH (CONTRAST)
   ========================================= */
@media (max-width: 768px) {

    /* Add a background to the button to ensure it's visible against any bg */
    .hamburger-menu {
        background: rgba(0, 0, 0, 0.5) !important;
        /* Semi-transparent dark bg */
        padding: 5px !important;
        border-radius: 4px !important;
        right: 20px !important;
        /* Ensure it's not off-edge */
        box-sizing: content-box !important;
    }

    .hamburger-menu span {
        background-color: #fff !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        /* Drop shadow for visibility */
    }
}

/* --- LATEST MOBILE FIXES --- */
@media (max-width: 768px) {

    /* Make the Bento CTA "square" narrower and centered */
    .bento-cta-wrapper {
        width: 85% !important;
        max-width: 340px !important;
        margin: 40px auto !important;
        padding: 40px 20px !important;
        border-radius: 30px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: #ffffff !important;
        /* Ensure visibility */
    }

    .bento-cta-text {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
        color: #111 !important;
    }

    /* Fixed Mission Control Card (Audit Trail) */
    .audit-trail-card {
        min-height: 480px !important;
        padding: 0 !important;
        margin: 20px 15px !important;
        overflow: hidden !important;
        position: relative !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 40%) !important;
    }

    .audit-trail-card .feature-visual {
        position: absolute !important;
        inset: 0 !important;
        background: transparent !important;
        margin: 0 !important;
    }

    .audit-trail-img {
        position: absolute !important;
        width: 190% !important;
        max-width: none !important;
        left: 50% !important;
        top: 60% !important;
        /* Move it down slightly more to show the main dashboard area */
        transform: translate(-50%, -10%) !important;
        opacity: 0.9;
    }

    .features-title {
        font-size: 2.2rem !important;
    }
}

/* FINAL TO FIX MOBILE HERO BUTTON COLLISION AND POSITIONING */
@media (max-width: 768px) {
    .hero {
        padding-top: 140px !important;
        /* Balanced spacing */
        padding-bottom: 0 !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-top: 30px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-actions .btn-nav {
        display: inline-block !important;
        width: auto !important;
        min-width: 140px !important;
        padding: 12px 20px !important;
        text-align: center !important;
        font-size: 0.85rem !important;
        /* Slightly smaller text to fit side-by-side */
    }

    .hero-video-side {
        margin-top: -120px !important;
        position: relative;
        z-index: 1;
    }
}

/* =========================================
   ZOOM VIDEO SECTION
   ========================================= */
.zoom-section {
    height: 200vh;
    width: 100%;
    position: relative;
    margin-top: -30vh;
    z-index: 10;
    pointer-events: none;
}

/* Ensure container allows centering */
.zoom-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;

    /* This ensures the container itself is full width */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Horizontally center children */
    overflow: hidden;
    /* Fixed: Changed to none so it doesn't block underlying elements like hero buttons */
    pointer-events: none;
}

.zoom-wrapper {
    /* YOUR NEW SIZE */
    width: 55%;
    height: 55vh;

    /* THE "MAGIC" FIX: This forces equal space on left and right */
    margin: 0 auto !important;

    border-radius: 40px;
    overflow: visible;
    /* Changed from hidden to show the glow */
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: auto;
    /* Re-enable for the actual video content */

    /* Smooth ease-out for a less mechanical feel */
    transition: width 0.15s ease-out, height 0.15s ease-out, border-radius 0.15s ease-out;
}

/* Soft Corner Backlight Glow (Subtle & Tight) */
.zoom-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    /* Small, tight bloom */
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1), transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1), transparent 60%);
    filter: blur(30px);
    /* Soft focus, much more contained */
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    transition: inherit;
    opacity: 0.6;
}

.zoom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    /* Ensure video keeps the corners */
    overflow: hidden;
}

.zoom-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    /* Starts hidden, fades in */
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
    width: 100%;
}

.zoom-text h2 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

/* =========================================
   SOUND BUTTON STYLING
   ========================================= */
.sound-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100 !important;
    pointer-events: auto !important;
    cursor: pointer;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

    /* Subtle Pulse Animation */
    animation: soundPulse 3s infinite;
}

.sound-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.sound-btn.sound-on {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    animation: none;
}

@keyframes soundPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .zoom-wrapper {
        width: 90%;
        height: 50vh;
    }

    .zoom-text h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   BENTO SECTION (Features)
   ========================================= */
.bento-section {
    padding: 100px 5%;
    background: #ffffff;
}

.bento-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.bento-header h2 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.bento-header p {
    font-size: 1.2rem;
    color: #555555;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

/* Ensure the parent card establishes a positioning context */
.damn-good-card {
    position: relative;
}

/* Feature Card Centering */
.card-overlay-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    /* Prevent text from hitting edges */
    transform: translateX(15px);
    /* Nudge right */
}

.card-overlay-bottom p {
    margin: 0 auto;
    width: 100%;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* =========================================
   TABLET / IPAD RESPONSIVENESS
   ========================================= */
@media (max-width: 1200px) {
    .logo img {
        margin-left: 40px !important;
        /* Move logo left on smaller screens */
    }

    .nav-actions {
        margin-right: 40px !important;
        /* Move button right on smaller screens */
    }

    .navbar {
        padding: 20px 30px !important;
    }
}

/* =========================================
   ANIMATED NOTIFICATION LIST (Real-Time Pulse Card)
   ========================================= */

/* Container for the notification list */
.notification-list-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Individual Notification Card */
.notification-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Entering Animation */
.notification-card.entering {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
}

/* Exiting Animation */
.notification-card.exiting {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

/* Hover Effect */
.notification-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Icon Box */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Icon Text (Emoji) */
.icon-text {
    font-size: 24px;
    line-height: 1;
}

/* Card Text Container */
.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Card Header (Name + Time) */
.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Card Name */
.card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Dot Separator */
.card-dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Card Time */
.card-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Card Description */
.card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .notification-list-container {
        padding: 15px;
        gap: 10px;
    }

    .notification-card {
        padding: 12px 16px;
        gap: 12px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
    }

    .icon-text {
        font-size: 20px;
    }

    .card-name {
        font-size: 0.9rem;
    }

    .card-time {
        font-size: 0.8rem;
    }

    .card-desc {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   MODERN GLOBAL FOOTER
   ========================================================================== */
.modern-footer {
    background-color: #080808;
    color: #ffffff;
    padding: 80px 0 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Section: Slogan & Newsletter */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-slogan {
    flex: 1;
    max-width: 600px;
}

.footer-slogan h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.footer-newsletter {
    flex-shrink: 0;
    width: 400px;
}

.footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: #ffffff;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: #ffffff;
    flex: 1;
    outline: none;
    font-size: 14px;
}

/* Fix Autofill Background */
.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus,
.newsletter-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #080808 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.newsletter-form button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Middle Section: Links Grid */
.footer-mid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-item svg {
    color: #ffffff;
}

/* Bottom Section: Copyright & Legal */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-newsletter {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-footer-container {
        padding: 0 24px;
        /* Tighter container padding */
    }

    .footer-top {
        margin-bottom: 40px;
        /* Reduced from 80px */
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-slogan h2 {
        font-size: 28px;
        /* Smaller font */
    }

    .footer-newsletter {
        width: 100%;
    }

    /* 2-Column Grid for Links */
    .footer-mid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        margin-bottom: 40px;
        text-align: left;
        padding-left: 30px;
        /* Shift links right as requested */
    }

    /* Contact starts full width */
    .footer-mid .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }
}

/* Mobile Specific Override for Automation Hero Subtext - Force Centering */
@media (max-width: 768px) {
    .automation-hero {
        align-items: center !important;
        text-align: center !important;
    }

    .automation-hero .hero-subtext {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        max-width: 650px !important;
        margin: 0 auto 35px auto !important;
        padding: 0 20px !important;
        text-align: center !important;
        display: block !important;
    }
}

/* =========================================
   FLOATING REQUEST PROPOSAL BUTTON
   ========================================= */
.floating-request-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 99999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hide on contact page */
.contact-page .floating-request-container {
    display: none !important;
}

.floating-request-container:hover {
    transform: translateY(-8px) scale(1.05);
}

.request-proposal-label {
    background: rgba(0, 0, 0, 0.65);
    /* Semi-transparent black */
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Explicitly set font */
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    margin-right: -20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    backdrop-filter: blur(20px);
    /* Enhanced glass effect */
    -webkit-backdrop-filter: blur(20px);
}

.request-proposal-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.65);
    /* Unified black glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.request-proposal-icon i {
    color: #ff5b32;
    /* Brand orange for the icon */
    width: 32px;
    height: 32px;
}



@media (max-width: 991px) {
    .floating-request-container {
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 768px) {
    .request-proposal-label {
        display: none;
        /* Icon-only on mobile */
    }

    .request-proposal-icon {
        width: 60px;
        height: 60px;
    }

    .request-proposal-icon i {
        width: 28px;
        height: 28px;
    }
}