﻿/* ============================================================================
   CHATTERBOX® BROADCAST - Warm Modern South African Theme
   ============================================================================ */

/*@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:wght@400;500;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Raleway:wght@300;400;500;600;700;800&display=swap');

:root {
    color-scheme: light;

    /* Chatterbox Palette */
    --chatterbox-turquoise: #2DD4BF; /* turquoise/sea foam - Primary Product Brand Colour */
    --chatterbox-ocean: #22D3EE; /* light teal #0891B2 - Secondary Colour */
    --chatterbox-black: #0C2730; /* black */
    --chatterbox-red: #EC486A; /* red */
    
    /* Earthy Neutrals */
    --sand-light: #FBF8F3; /*rgb(251, 248, 243)*/
    
    /* Gradients */
    --chatterbox-black-80: rgba(12, 39, 48, 0.8);
    --sand-light-80: rgba(251, 248, 243, 0.8);

    /*--grad-sand-light: linear-gradient(135deg, #0A1628 0%, #142238 40%, #1C3254 100%);*/
    --grad-sand-light: linear-gradient(135deg, #FFFFFF 0%, #FDFCFA 40%, #FBF8F3 100%);
    --grad-ocean: linear-gradient(135deg, #0C4A6E 0%, #0891B2 50%, #22D3EE 100%);
    --grad-turquoise: linear-gradient(135deg, #0D9488 0%, #14B8A6 50%, #2DD4BF 100%);
    --grad-ocean-transparent-25: linear-gradient( 135deg, rgba(12, 74, 110, 0.25) 0%, rgba(8, 145, 178, 0.25) 50%, rgba(34, 211, 238, 0.25) 100% );
    --grad-ocean-transparent-50: linear-gradient( 135deg, rgba(12, 74, 110, 0.5) 0%, rgba(8, 145, 178, 0.5) 50%, rgba(34, 211, 238, 0.5) 100% );
    --grad-ocean-transparent-75: linear-gradient( 135deg, rgba(12, 74, 110, 0.75) 0%, rgba(8, 145, 178, 0.75) 50%, rgba(34, 211, 238, 0.75) 100% );
    --grad-turquoise-transparent-25: linear-gradient( 135deg, rgba(13, 148, 136, 0.25) 0%, rgba(20, 184, 166, 0.25) 50%, rgba(45, 212, 191, 0.25) 100% );
    --grad-turquoise-transparent-50: linear-gradient( 135deg, rgba(13, 148, 136, 0.5) 0%, rgba(20, 184, 166, 0.5) 50%, rgba(45, 212, 191, 0.5) 100% );
    --grad-red: linear-gradient(135deg, #D43F5E 0%, #EC486A 50%, #FF7A94 100%);
    --grad-black: linear-gradient(135deg, #000000 0%, #0C2730 50%, #1A4555 100%);

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-card: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-elevated: 0 16px 48px rgba(10, 22, 40, 0.16);
    --glow-sand-light: 0 0 30px rgba(251, 248, 243, 0.35);
    --glow-ocean: 0 12px 32px rgba(8, 145, 178, 0.4), 0 4px 12px rgba(34, 211, 238, 0.3);
    --glow-turquoise: 0 12px 32px rgba(20, 184, 166, 0.4), 0 4px 12px rgba(45, 212, 191, 0.3);
    --glow-red: 0 12px 32px rgba(236, 72, 106, 0.5), 0 4px 12px rgba(255, 122, 148, 0.4);

    /* Typography */
    /*--font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;*/
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ============================================================================
   Base & Reset
   ============================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--chatterbox-red);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--sand-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    background: transparent;
}

/* Mobile: ensure no margin/padding pushes content off screen */
@media (max-width: 991.98px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden;
    }
}

/* Main content wrapper needs higher z-index */
.container,
main {
    position: relative;
    z-index: 1;
}

/* Warm texture overlay */
.warm-texture {
    position: relative;
    background-color: var(--sand-light);
}

    .warm-texture::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
    }

/* ============================================================================
   Typography
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    letter-spacing: -0.01em;
    line-height: 1.1;
}

h2, h3 {
    letter-spacing: -0.005em;
}

h4, h5, h6 {
    letter-spacing: 0;
}

.spacer-top {
    height: 4rem;
    z-index: 1;
}

.spacer-1 {
    height: 3rem;
    z-index: 1;
}

.text-gradient-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-amber {
    background: var(--grad-sand-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-teal {
    background: var(--grad-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-ocean {
    background: var(--grad-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-turquoise {
    background: var(--grad-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-fail {
    background: var(--grad-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: var(--chatterbox-red);
}

.text-black {
    color: var(--chatterbox-black);
}

.text-sand-light {
    color: var(--sand-light);
}

.text-ocean {
    color: var(--chatterbox-ocean);
}

.text-turquoise {
    color: var(--chatterbox-turquoise);
}

.text-sand-light-70 {
    color: rgba(251, 248, 243, 0.7);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /*color: var(--chatterbox-red);*/
    background: var(--grad-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-chatterbox {
    background: var(--grad-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--chatterbox-black);
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn-gradient-amber {
    background: var(--grad-sand-light);
    border: none;
    color: var(--chatterbox-red);
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-gradient-amber::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-gradient-amber:hover {
        transform: translateY(-3px);
        box-shadow: var(--glow-sand-light);
        color: var(--chatterbox-red);
    }

        .btn-gradient-amber:hover::before {
            opacity: 1;
        }


.btn-gradient-ocean {
    background: var(--grad-ocean);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-gradient-ocean::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-gradient-ocean:hover {
        transform: translateY(-3px);
        box-shadow: var(--glow-ocean);
        color: #fff;
    }

        .btn-gradient-ocean:hover::before {
            opacity: 1;
        }

.btn-gradient-turquoise {
    background: var(--grad-turquoise);
    border: none;
    color: white !important;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-gradient-turquoise::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-gradient-turquoise:hover {
        transform: translateY(-3px);
        box-shadow: var(--glow-turquoise);
        color: #fff;
    }

        .btn-gradient-turquoise:hover::before {
            opacity: 1;
        }

.btn-outline-glass {
    border: 2px solid rgba(34, 211, 238, 0.3);
    color: var(--chatterbox-black);
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.75rem;
    background: rgba(8, 145, 178, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-outline-glass:hover {
        background: rgba(34, 211, 238, 0.2);
        border-color: rgba(34, 211, 238, 0.6);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
        color: var(--chatterbox-black);
    }

.shadow-glow {
    box-shadow: var(--glow-turquoise);
}

.reg-sup {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 1;
}

/* ============================================================================
   Navigation
   ============================================================================ */

#mainNav {
    padding: 1.25rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    background: transparent;
    /* Force fixed positioning on all devices */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
}


@media (max-width: 991.98px) {
    /* Mobile: ensure navbar is always visible with background */
    #mainNav {
        background: rgba(251, 248, 243, 0.95) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        /* Ensure it's truly fixed at top on mobile */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
        margin: 0 !important;
        transform: none !important;
    }

    #mainNav .navbar-brand .brand-sub-text {
        display: none;
    }

    #mainNav .navbar-toggler {
        color: var(--chatterbox-black) !important;
        border: none;
        padding: 0.25rem 0.5rem;
    }

    #mainNav .navbar-toggler .bi-list {
        color: var(--chatterbox-black) !important;
        font-size: 1.75rem;
    }
}

    /* Nav links default state (ocean) */
    #mainNav .nav-link {
        color: var(--chatterbox-black);
        transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);                
    }

        /* Optional: hover state */
        #mainNav .nav-link:hover {
            color: var(--chatterbox-ocean) !important;            
        }

        /*#mainNav .nav-link.active:hover {
            color: var(--chatterbox-ocean) !important;
            opacity: 0.8;
        }*/

#mainNav.scrolled {
    background: linear-gradient(90deg, rgba(12, 74, 110, 0.25) 0%, rgba(8, 145, 178, 0.15) 50%, rgba(8, 145, 178, 0.15) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}

    #mainNav.scrolled .brand-sub-text {
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: var(--sand-light) !important;
        color: var(--sand-light) !important;
    }

    @media (max-width: 991.98px) {
        /* Mobile: apply ocean blur effect when scrolled - more glassy with less opacity */
        #mainNav.scrolled {
            background: linear-gradient(90deg, rgba(12, 74, 110, 0.55) 0%, rgba(8, 145, 178, 0.45) 50%, rgba(8, 145, 178, 0.45) 100%) !important;
            backdrop-filter: blur(24px) !important;
            -webkit-backdrop-filter: blur(24px) !important;
            box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
        }

        #mainNav.scrolled .navbar-toggler,
        #mainNav.scrolled .navbar-toggler .bi-list {
            color: var(--sand-light) !important;
        }
    }

    /* Nav links when scrolled (turquoise) */
        #mainNav.scrolled .nav-link {
            color: var(--sand-light) !important;
        }

            #mainNav.scrolled .nav-link:hover {
                color: var(--sand-light-80) !important;
            }

            /* Nav links when scrolled - active/selected link is turquoise */
            #mainNav.scrolled .nav-link.active,
            #mainNav.scrolled .nav-link:focus {
                color: var(--chatterbox-black) !important;
            }

                /* Underline for scrolled state */
                #mainNav.scrolled .nav-link::after,
                #mainNav.scrolled .nav-link:hover::after,
                #mainNav.scrolled .nav-link.active::after {
                    background: var(--grad-black) !important;
                }

            /* Nav links when scrolled - inactive links are sand-light */
            #mainNav.scrolled .nav-link:not(.active) {
                color: var(--sand-light) !important;
            }

                /*#mainNav.scrolled .nav-link:not(.active):hover {
                    color: var(--sand-light-80) !important;                    
                }*/

            /* Underline for scrolled state */
                    #mainNav.scrolled .nav-link:not(.active)::after,
                    #mainNav.scrolled .nav-link:not(.active):hover::after,
                    #mainNav.scrolled .nav-link:not(.active).active::after {
                        background: var(--grad-sand-light) !important;
                    }

/* Mobile navbar toggler */
.navbar-toggler {
    color: var(--chatterbox-black);
    padding: 0.5rem;
}

.navbar-toggler .bi-list {
    color: var(--chatterbox-black);
}

#mainNav.scrolled .navbar-toggler,
#mainNav.scrolled .navbar-toggler .bi-list {
    color: var(--sand-light);
}

/* Mobile navbar menu */
@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: var(--sand-light);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    #mainNav.scrolled .navbar-collapse {
        background: var(--grad-ocean-transparent-50);
    }

    #mainNav .navbar-nav {
        gap: 0.5rem;
    }

    #mainNav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    #mainNav .nav-link:hover {
        background: rgba(45, 212, 191, 0.1);
    }

    #mainNav.scrolled .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--chatterbox-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-reg {
    color: var(--chatterbox-turquoise);
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-sub-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--chatterbox-black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text-hero {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    background: var(--chatterbox-turquoise);
    padding-right: 0.08rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-reg-hero {
    color: var(--chatterbox-turquoise);
    font-size: 1.35rem;
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.15rem !important;
    color: var(--chatterbox-black) !important;
    transition: all 0.3s;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--chatterbox-ocean);
        transition: all 0.3s;
        transform: translateX(-50%);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--chatterbox-ocean) !important;
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

/* All sections should be transparent with higher z-index */
section {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero-section {
    background: var(--grad-sand-light);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /*padding-top: 70px;*/
    z-index: 10;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--sand-light);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--chatterbox-ocean);
    bottom: -100px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--sand-light);
    top: 50%;
    left: 40%;
    animation: float 25s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-title-xl {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 610;
    color: var(--chatterbox-black);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-fact-box {
    background: rgba(8, 145, 178, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid var(--chatterbox-ocean);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: white;
}

    .hero-fact-box i {
        font-size: 2rem;
        color: var(--chatterbox-ocean);
    }

.fact-stat {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--chatterbox-black);
}

.fact-label {
    font-size: 1.25rem;
    color: var(--chatterbox-black);
}

    .fact-label strong {
        color: var(--chatterbox-black);
        text-shadow: 0 0 12px rgba(45, 212, 191, 1), 0 0 24px rgba(45, 212, 191, 0.8), 0 0 36px rgba(45, 212, 191, 0.6), 0 0 48px rgba(45, 212, 191, 0.4);
    }

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--chatterbox-ocean);
    font-size: 0.9rem;
    font-weight: 500;
}

    .trust-badge i {
        color: var(--chatterbox-ocean);
    }

/* Hero Visual - Language Bubbles */
/*.hero-visual-container {
    position: relative;
    height: 500px;
    width: 100%;
}*/
.hero-visual-container {
    position: relative;
    height: 500px;
    width: 100%;
    z-index: 10; /* Higher z-index to overlap sections below */
    overflow: visible; /* Allow elements to extend beyond container */
    margin-top: -8rem;
}



/* Rotating language ring container */
.lang-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    animation: rotate-ring 60s linear infinite;
    animation-play-state: paused; /* Start paused, JS will start after 10s delay */
}

.lang-ring.animating {
    animation-play-state: running;
}

/* Individual language bubbles - Default background state */
.lang-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(8, 145, 178, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--chatterbox-black);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    opacity: 0.5;
    z-index: 2;
}

    .lang-bubble i {
        font-size: 1rem;
        color: var(--chatterbox-ocean);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    /* Foreground state - larger and more prominent */
    .lang-bubble.foreground {
        background: rgba(8, 145, 178, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(34, 211, 238, 0.4);
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
        opacity: 1;
        z-index: 5;
        transform: scale(1.15);
    }

        .lang-bubble.foreground i {
            font-size: 1.2rem;
        }

    /* Highlighted state - ocean glow effect WITHOUT position override */
    .lang-bubble.highlighted {
        background: rgba(34, 211, 238, 0.35) !important;
        border: 2px solid var(--chatterbox-ocean) !important;
        box-shadow: 0 0 35px rgba(34, 211, 238, 0.6), 0 0 60px rgba(8, 145, 178, 0.3);
        /* DON'T use transform: scale() as it overrides position */
        padding: 0.8rem 1.3rem !important;
        font-size: 0.95rem !important;
        color: white;
    }

        .lang-bubble.highlighted i {
            color: white;
            font-size: 1.3rem !important;
            filter: drop-shadow(0 0 8px var(--chatterbox-ocean));
        }

    /* For foreground bubbles that get highlighted */
    .lang-bubble.foreground.highlighted {
        padding: 0.85rem 1.4rem !important;
        font-size: 1rem !important;
    }

        .lang-bubble.foreground.highlighted i {
            font-size: 1.4rem !important;
        }

    /* Position each bubble in a circle - with counter-rotation to keep text horizontal */
    /* Static state includes counter-rotation; animation takes over when .animating is added */
    .lang-bubble:nth-child(1) {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) rotate(0deg);
        animation: counter-rotate-1 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(2) {
        transform: translate(-50%, -50%) rotate(32.7deg) translateY(-190px) rotate(-32.7deg);
        animation: counter-rotate-2 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(3) {
        transform: translate(-50%, -50%) rotate(65.4deg) translateY(-190px) rotate(-65.4deg);
        animation: counter-rotate-3 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(4) {
        transform: translate(-50%, -50%) rotate(98.1deg) translateY(-190px) rotate(-98.1deg);
        animation: counter-rotate-4 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(5) {
        transform: translate(-50%, -50%) rotate(130.8deg) translateY(-190px) rotate(-130.8deg);
        animation: counter-rotate-5 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(6) {
        transform: translate(-50%, -50%) rotate(163.5deg) translateY(-190px) rotate(-163.5deg);
        animation: counter-rotate-6 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(7) {
        transform: translate(-50%, -50%) rotate(196.2deg) translateY(-190px) rotate(-196.2deg);
        animation: counter-rotate-7 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(8) {
        transform: translate(-50%, -50%) rotate(228.9deg) translateY(-190px) rotate(-228.9deg);
        animation: counter-rotate-8 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(9) {
        transform: translate(-50%, -50%) rotate(261.6deg) translateY(-190px) rotate(-261.6deg);
        animation: counter-rotate-9 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(10) {
        transform: translate(-50%, -50%) rotate(294.3deg) translateY(-190px) rotate(-294.3deg);
        animation: counter-rotate-10 60s linear infinite reverse;
        animation-play-state: paused;
    }

    .lang-bubble:nth-child(11) {
        transform: translate(-50%, -50%) rotate(327deg) translateY(-190px) rotate(-327deg);
        animation: counter-rotate-11 60s linear infinite reverse;
        animation-play-state: paused;
    }

    /* When ring is animating, start bubble counter-rotations too */
    .lang-ring.animating .lang-bubble {
        animation-play-state: running;
    }

/* Counter-rotation animations to keep text horizontal */
@keyframes counter-rotate-1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-190px) rotate(360deg);
    }
}

@keyframes counter-rotate-2 {
    from {
        transform: translate(-50%, -50%) rotate(32.7deg) translateY(-190px) rotate(-32.7deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(32.7deg) translateY(-190px) rotate(327.3deg);
    }
}

@keyframes counter-rotate-3 {
    from {
        transform: translate(-50%, -50%) rotate(65.4deg) translateY(-190px) rotate(-65.4deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(65.4deg) translateY(-190px) rotate(294.6deg);
    }
}

@keyframes counter-rotate-4 {
    from {
        transform: translate(-50%, -50%) rotate(98.1deg) translateY(-190px) rotate(-98.1deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(98.1deg) translateY(-190px) rotate(261.9deg);
    }
}

@keyframes counter-rotate-5 {
    from {
        transform: translate(-50%, -50%) rotate(130.8deg) translateY(-190px) rotate(-130.8deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(130.8deg) translateY(-190px) rotate(229.2deg);
    }
}

@keyframes counter-rotate-6 {
    from {
        transform: translate(-50%, -50%) rotate(163.5deg) translateY(-190px) rotate(-163.5deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(163.5deg) translateY(-190px) rotate(196.5deg);
    }
}

@keyframes counter-rotate-7 {
    from {
        transform: translate(-50%, -50%) rotate(196.2deg) translateY(-190px) rotate(-196.2deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(196.2deg) translateY(-190px) rotate(163.8deg);
    }
}

@keyframes counter-rotate-8 {
    from {
        transform: translate(-50%, -50%) rotate(228.9deg) translateY(-190px) rotate(-228.9deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(228.9deg) translateY(-190px) rotate(131.1deg);
    }
}

@keyframes counter-rotate-9 {
    from {
        transform: translate(-50%, -50%) rotate(261.6deg) translateY(-190px) rotate(-261.6deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(261.6deg) translateY(-190px) rotate(98.4deg);
    }
}

@keyframes counter-rotate-10 {
    from {
        transform: translate(-50%, -50%) rotate(294.3deg) translateY(-190px) rotate(-294.3deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(294.3deg) translateY(-190px) rotate(65.7deg);
    }
}

@keyframes counter-rotate-11 {
    from {
        transform: translate(-50%, -50%) rotate(327deg) translateY(-190px) rotate(-327deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(327deg) translateY(-190px) rotate(33deg);
    }
}

/* Rotation animation */
@keyframes rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Central orb */
.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--grad-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-turquoise);
    z-index: 10;
}

.sa-heart-icon {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.orb-ripples {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--chatterbox-turquoise);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 3s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .lang-ring {
        width: 340px;
        height: 340px;
    }

    .lang-bubble:nth-child(1) {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-170px);
    }

    .lang-bubble:nth-child(2) {
        transform: translate(-50%, -50%) rotate(32.7deg) translateY(-170px);
    }

    .lang-bubble:nth-child(3) {
        transform: translate(-50%, -50%) rotate(65.4deg) translateY(-170px);
    }

    .lang-bubble:nth-child(4) {
        transform: translate(-50%, -50%) rotate(98.1deg) translateY(-170px);
    }

    .lang-bubble:nth-child(5) {
        transform: translate(-50%, -50%) rotate(130.8deg) translateY(-170px);
    }

    .lang-bubble:nth-child(6) {
        transform: translate(-50%, -50%) rotate(163.5deg) translateY(-170px);
    }

    .lang-bubble:nth-child(7) {
        transform: translate(-50%, -50%) rotate(196.2deg) translateY(-170px);
    }

    .lang-bubble:nth-child(8) {
        transform: translate(-50%, -50%) rotate(228.9deg) translateY(-170px);
    }

    .lang-bubble:nth-child(9) {
        transform: translate(-50%, -50%) rotate(261.6deg) translateY(-170px);
    }

    .lang-bubble:nth-child(10) {
        transform: translate(-50%, -50%) rotate(294.3deg) translateY(-170px);
    }

    .lang-bubble:nth-child(11) {
        transform: translate(-50%, -50%) rotate(327deg) translateY(-170px);
    }

    @keyframes counter-rotate-1 {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-170px) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-170px) rotate(360deg);
        }
    }

    @keyframes counter-rotate-2 {
        from {
            transform: translate(-50%, -50%) rotate(32.7deg) translateY(-170px) rotate(-32.7deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(32.7deg) translateY(-170px) rotate(327.3deg);
        }
    }

    @keyframes counter-rotate-3 {
        from {
            transform: translate(-50%, -50%) rotate(65.4deg) translateY(-170px) rotate(-65.4deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(65.4deg) translateY(-170px) rotate(294.6deg);
        }
    }

    @keyframes counter-rotate-4 {
        from {
            transform: translate(-50%, -50%) rotate(98.1deg) translateY(-170px) rotate(-98.1deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(98.1deg) translateY(-170px) rotate(261.9deg);
        }
    }

    @keyframes counter-rotate-5 {
        from {
            transform: translate(-50%, -50%) rotate(130.8deg) translateY(-170px) rotate(-130.8deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(130.8deg) translateY(-170px) rotate(229.2deg);
        }
    }

    @keyframes counter-rotate-6 {
        from {
            transform: translate(-50%, -50%) rotate(163.5deg) translateY(-170px) rotate(-163.5deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(163.5deg) translateY(-170px) rotate(196.5deg);
        }
    }

    @keyframes counter-rotate-7 {
        from {
            transform: translate(-50%, -50%) rotate(196.2deg) translateY(-170px) rotate(-196.2deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(196.2deg) translateY(-170px) rotate(163.8deg);
        }
    }

    @keyframes counter-rotate-8 {
        from {
            transform: translate(-50%, -50%) rotate(228.9deg) translateY(-170px) rotate(-228.9deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(228.9deg) translateY(-170px) rotate(131.1deg);
        }
    }

    @keyframes counter-rotate-9 {
        from {
            transform: translate(-50%, -50%) rotate(261.6deg) translateY(-170px) rotate(-261.6deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(261.6deg) translateY(-170px) rotate(98.4deg);
        }
    }

    @keyframes counter-rotate-10 {
        from {
            transform: translate(-50%, -50%) rotate(294.3deg) translateY(-170px) rotate(-294.3deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(294.3deg) translateY(-170px) rotate(65.7deg);
        }
    }

    @keyframes counter-rotate-11 {
        from {
            transform: translate(-50%, -50%) rotate(327deg) translateY(-170px) rotate(-327deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(327deg) translateY(-170px) rotate(33deg);
        }
    }
}

@media (max-width: 768px) {
    .hero-visual-container {
        height: 450px;
    }

    .lang-ring {
        width: 300px;
        height: 300px;
    }

    .lang-bubble {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

        .lang-bubble.foreground {
            padding: 0.6rem 0.95rem;
            font-size: 0.85rem;
        }

        .lang-bubble i {
            font-size: 0.9rem;
        }

        .lang-bubble.foreground i {
            font-size: 1.1rem;
        }

    .central-orb {
        width: 100px;
        height: 100px;
    }

    .sa-heart-icon {
        font-size: 2.5rem;
    }

    .lang-bubble:nth-child(1) {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-150px);
    }

    .lang-bubble:nth-child(2) {
        transform: translate(-50%, -50%) rotate(32.7deg) translateY(-150px);
    }

    .lang-bubble:nth-child(3) {
        transform: translate(-50%, -50%) rotate(65.4deg) translateY(-150px);
    }

    .lang-bubble:nth-child(4) {
        transform: translate(-50%, -50%) rotate(98.1deg) translateY(-150px);
    }

    .lang-bubble:nth-child(5) {
        transform: translate(-50%, -50%) rotate(130.8deg) translateY(-150px);
    }

    .lang-bubble:nth-child(6) {
        transform: translate(-50%, -50%) rotate(163.5deg) translateY(-150px);
    }

    .lang-bubble:nth-child(7) {
        transform: translate(-50%, -50%) rotate(196.2deg) translateY(-150px);
    }

    .lang-bubble:nth-child(8) {
        transform: translate(-50%, -50%) rotate(228.9deg) translateY(-150px);
    }

    .lang-bubble:nth-child(9) {
        transform: translate(-50%, -50%) rotate(261.6deg) translateY(-150px);
    }

    .lang-bubble:nth-child(10) {
        transform: translate(-50%, -50%) rotate(294.3deg) translateY(-150px);
    }

    .lang-bubble:nth-child(11) {
        transform: translate(-50%, -50%) rotate(327deg) translateY(-150px);
    }

    @keyframes counter-rotate-1 {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) rotate(360deg);
        }
    }

    @keyframes counter-rotate-2 {
        from {
            transform: translate(-50%, -50%) rotate(32.7deg) translateY(-150px) rotate(-32.7deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(32.7deg) translateY(-150px) rotate(327.3deg);
        }
    }

    @keyframes counter-rotate-3 {
        from {
            transform: translate(-50%, -50%) rotate(65.4deg) translateY(-150px) rotate(-65.4deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(65.4deg) translateY(-150px) rotate(294.6deg);
        }
    }

    @keyframes counter-rotate-4 {
        from {
            transform: translate(-50%, -50%) rotate(98.1deg) translateY(-150px) rotate(-98.1deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(98.1deg) translateY(-150px) rotate(261.9deg);
        }
    }

    @keyframes counter-rotate-5 {
        from {
            transform: translate(-50%, -50%) rotate(130.8deg) translateY(-150px) rotate(-130.8deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(130.8deg) translateY(-150px) rotate(229.2deg);
        }
    }

    @keyframes counter-rotate-6 {
        from {
            transform: translate(-50%, -50%) rotate(163.5deg) translateY(-150px) rotate(-163.5deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(163.5deg) translateY(-150px) rotate(196.5deg);
        }
    }

    @keyframes counter-rotate-7 {
        from {
            transform: translate(-50%, -50%) rotate(196.2deg) translateY(-150px) rotate(-196.2deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(196.2deg) translateY(-150px) rotate(163.8deg);
        }
    }

    @keyframes counter-rotate-8 {
        from {
            transform: translate(-50%, -50%) rotate(228.9deg) translateY(-150px) rotate(-228.9deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(228.9deg) translateY(-150px) rotate(131.1deg);
        }
    }

    @keyframes counter-rotate-9 {
        from {
            transform: translate(-50%, -50%) rotate(261.6deg) translateY(-150px) rotate(-261.6deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(261.6deg) translateY(-150px) rotate(98.4deg);
        }
    }

    @keyframes counter-rotate-10 {
        from {
            transform: translate(-50%, -50%) rotate(294.3deg) translateY(-150px) rotate(-294.3deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(294.3deg) translateY(-150px) rotate(65.7deg);
        }
    }

    @keyframes counter-rotate-11 {
        from {
            transform: translate(-50%, -50%) rotate(327deg) translateY(-150px) rotate(-327deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(327deg) translateY(-150px) rotate(33deg);
        }
    }
}

/* ============================================================================
   Stats Section
   ============================================================================ */
.stats-section {
    background: var(--sand-light);
    position: relative;
    z-index: 8;
    margin-top: -50px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-elevated);
    }

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--chatterbox-black);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* ============================================================================
   Challenge Section
   ============================================================================ */
.challenge-section {
    padding: var(--space-2xl) 0;
}

.challenge-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 3px solid transparent;
    transition: all 0.3s;
}

    .challenge-card.fail {
        border-color: var(--chatterbox-red);
    }

    .challenge-card.success {
        border-color: var(--chatterbox-turquoise);
    }

.challenge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.challenge-card.fail .challenge-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--chatterbox-red);
}

.challenge-card.success .challenge-icon {
    background: rgba(5, 150, 105, 0.1);
    color: var(--chatterbox-turquoise);
}

.challenge-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.challenge-list {
    list-style: none;
    padding: 0;
}

    .challenge-list li {
        padding: 0.75rem 0;
        display: flex;
        align-items: start;
        gap: 1rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .challenge-list i {
        font-size: 1.2rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

.impact-stat-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin: 0 auto;
}

.impact-label {
    font-size: 1rem;
    color: var(--chatterbox-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.impact-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.impact-result {
    font-size: 1.2rem;
    color: var(--chatterbox-turquoise);
    font-weight: 600;
}

/* ============================================================================
   Unique Section
   ============================================================================ */
.unique-section {
    background: var(--grad-sand-light);
    padding: var(--space-2xl) 0;
}

/*.comparison-box {
    background: var(--grad-ocean-transparent-50);
    backdrop-filter: blur(12px);
    border: 1px solid var(--grad-ocean);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}*/

.comparison-box {
    /*background: rgba(8, 145, 178, 0.15);*/
    background: var(--grad-ocean-transparent-25);
    backdrop-filter: blur(12px);
    border: 1px solid var(--chatterbox-ocean);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.3), 0 0 60px rgba(8, 145, 178, 0.2);
}

@media (max-width: 768px) {
    .comparison-box {
        /*background: rgba(8, 145, 178, 0.15);*/
        margin-bottom: 2rem;        
    }
}

.comparison-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

    .comparison-item.fail {
        /*background: rgba(239, 68, 68, 0.05);*/
        background: linear-gradient( 0deg, rgba(236, 72, 106, 0.05), rgba(236, 72, 106, 0.05) ), #FFF5F0;
        border: 2px solid var(--chatterbox-red);
    }

    .comparison-item.success {
        /*background: rgba(5, 150, 105, 0.05);*/
        background: linear-gradient( 0deg, rgba(45, 212, 191, 0.05), rgba(45, 212, 191, 0.05) ), #FFF8F4;
        border: 2px solid var(--chatterbox-turquoise);
    }

    .comparison-item:last-child {
        margin-bottom: 0;
    }

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.comparison-item.fail .comparison-icon {
    background: rgba(239, 68, 68, 0.2);
    color: var(--chatterbox-red);
}

.comparison-item.success .comparison-icon {
    background: rgba(5, 150, 105, 0.2);
    color: var(--chatterbox-turquoise);
}

.comparison-item h5 {
    color: var(--chatterbox-black);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-item.fail h5 {
    color: var(--chatterbox-red);
}

.comparison-item.success h5 {
    color: var(--chatterbox-turquoise);
}

.comparison-item-chatterbox {
    background: var(--grad-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .comparison-list li {
        padding: 0.5rem 0;
        color: var(--chatterbox-black);
        font-size: 1rem;
    }

.unique-feature-card {
    background: var(--grad-ocean-transparent-50);
    backdrop-filter: blur(12px);
    border: 1px solid var(--chatterbox-turquoise);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.3), 0 0 60px rgba(8, 145, 178, 0.2);
}

    .unique-feature-card:hover {
        background: var(--grad-ocean-transparent-25);
        border: 1px solid var(--chatterbox-ocean);
        transform: translateX(10px);
    }

.unique-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-turquoise);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.unique-content h4 {
    color: var(--chatterbox-black);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.unique-content p {
    color: var(--chatterbox-black);
    font-size: 0.95rem;
    margin: 0;
}

.unique-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.unique-feature-card:hover .unique-info {
    color: rgba(34, 211, 238, 0.75);
}

.only-platform-box {
    background: var(--sand-light);
    backdrop-filter: blur(12px);
    border: 1px solid var(--chatterbox-ocean);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: white;
}

    .only-platform-box h3 {
        background: var(--grad-ocean);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.5rem;
        font-weight: 600;
    }

.only-stat {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--grad-turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.only-label {
    color: var(--chatterbox-black);
    font-size: 0.95rem;
}

/* ============================================================================
   How It Works Section
   ============================================================================ */
.how-it-works-section {
    padding: var(--space-2xl) 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

    .step-row:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-elevated);
    }

.step-number {
    width: 70px;
    height: 70px;
    background: var(--grad-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--sand-light);
    flex-shrink: 0;
    box-shadow: var(--glow-sand-light);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--chatterbox-black);
}

.step-content p {
    color: var(--chatterbox-black);
    margin-bottom: 0.75rem;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad-ocean-transparent-50);
    color: var(--chatterbox-black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: var(--grad-ocean-transparent-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--chatterbox-black);
    flex-shrink: 0;
}

.step-row.final {
    border: 3px solid var(--chatterbox-turquoise);
}

    .step-row.final .step-number {
        background: var(--grad-turquoise);
    }

    .step-row.final .step-visual {
        background: rgba(5, 150, 105, 0.1);
        color: var(--chatterbox-turquoise);
    }

.step-time.final {
    background: var(--grad-turquoise-transparent-50);
}
/* ============================================================================
   Customers Section
   ============================================================================ */
.customers-section {
    background: var(--grad-sand-light);
    padding: var(--space-2xl) 0;
}

.customer-card {
    background: var(--grad-ocean-transparent-25);
    backdrop-filter: blur(12px);
    border: 1px solid var(--chatterbox-ocean);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    opacity: 0.9;
}

    .customer-card:hover {
        background: var(--grad-ocean-transparent-50);
        transform: translateY(-10px);
        border-color: var(--chatterbox-ocean);
        opacity: 0.95;
    }

.customer-icon {
    width: 80px;
    height: 80px;
    background: var(--sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--chatterbox-ocean);
}

.customer-card h3 {
    color: var(--chatterbox-black);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.customer-card:hover.customer-card h3 {
    color: var(--chatterbox-red);
}

.customer-pain {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.customer-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--chatterbox-black);
}

.stat-perc {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--chatterbox-red);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--chatterbox-black);
    margin-top: 0.25rem;
}

.customer-quote {
    font-style: italic;
    color: var(--chatterbox-black);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--chatterbox-ocean);
}

.customer-card:hover .customer-quote {
    color: var(--chatterbox-red);
    border-left: 3px solid var(--chatterbox-red);
}

.customer-cta {
    color: var(--sand-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================================================
   Pricing Section
   ============================================================================ */
.pricing-section {
    padding: var(--space-2xl) 0;
}

.pricing-card-main {
    background: var(--sand-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-elevated);
    border: 3px solid var(--chatterbox-ocean);
}

.pricing-badge {
    display: inline-block;
    background: var(--grad-ocean);
    color: var(--sand-light);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--chatterbox-black);
    vertical-align: super;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--grad-sand-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    display: block;
    font-size: 1.1rem;
    color: var(--chatterbox-black);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .pricing-features li {
        color: var(--chatterbox-ocean);
        padding: 1rem 0;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--chatterbox-ocean);
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li:hover {
            opacity: 0.8;
        }

        .pricing-features i {
            color: var(--chatterbox-turquoise);
            font-size: 1.3rem;
        }
            
            .pricing-example {
                background: var(--sand-light);
                border-radius: var(--radius-lg);
                padding: 2rem;
                margin-bottom: 2rem;
            }
.pricing-features-highlight {
    text-shadow: 0 0 12px rgba(12, 39, 48, 0.8), 0 0 24px rgba(45, 212, 191, 0.9), 0 0 36px rgba(45, 212, 191, 0.7), 0 0 48px rgba(45, 212, 191, 0.5);
}

.pricing-example h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.example-calc {
    margin-bottom: 1rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

    .calc-row.total {
        border-top: 2px solid var(--sand-light);
        padding-top: 1rem;
        margin-top: 0.5rem;
        font-size: 1.2rem;
    }

.example-note {
    text-align: center;
    color: var(--chatterbox-black);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* ============================================================================
   Final CTA Section
   ============================================================================ */
.cta-final-section {
    background: var(--grad-sand-light);
    padding: var(--space-2xl) 0;
}

.cta-final-box {
    text-align: center;
    padding: 4rem 2rem;
}

    .cta-final-box h2 {
        color: white;
        font-size: 3rem;
    }

    .cta-final-box p {
        color: var(--chatterbox-black);        
    }

/* ============================================================================
   Quote & Footer
   ============================================================================ */
.quote-section {
    background: white;
}

.main-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--chatterbox-ocean);
    line-height: 1.6;
    position: relative;
}

    .main-quote i {
        font-size: 3.5rem;
        color: var(--chatterbox-turquoise);
        display: block;
        margin-bottom: 1rem;
        opacity: 0.8;
    }

    .main-quote strong {
        color: var(--chatterbox-turquoise);
    }

.main-footer {
    background: var(--chatterbox-black);
    color: white;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--sand-light);
}

    .footer-brand sup {
        color: var(--sand-light);
    }

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-left: 0.75rem;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================================================
   Modals
   ============================================================================ */
.modal-dark .modal-content {
    background: var(--chatterbox-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
}

.modal-dark .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--chatterbox-red);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-dark .modal-title {
    color: white;
}

.modal-dark .modal-body {
    padding: 2rem;
}

.modal-dark p,
.modal-dark li {
    color: rgba(255, 255, 255, 0.9);
}

.example-box,
.quote-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--sand-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-style: italic;
}

.solution-box {
    background: rgba(5, 150, 105, 0.2);
    border: 2px solid var(--chatterbox-turquoise);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-modal .wrong-way {
    background: rgba(239, 68, 68, 0.2);
    border-left: 4px solid var(--chatterbox-red);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.comparison-modal .right-way {
    background: rgba(5, 150, 105, 0.2);
    border-left: 4px solid var(--chatterbox-turquoise);
    padding: 1rem;
    border-radius: var(--radius-md);
}

/* ============================================================================
   Utility Classes
   ============================================================================ */
.py-6 {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.z-2 {
    z-index: 2;
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1024px) {
    .hero-visual-container {
        height: 500px;
        margin-top: -20rem; /* Adjust this value as needed */
    }
}

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .brand-text-hero {
            font-size: 2rem;
        }

        .brand-reg-hero {
            font-size: 1.15rem;
        }
    }

    @media (max-width: 768px) {
        .brand-text-hero {
            font-size: 1.75rem;
        }

        .brand-reg-hero {
            font-size: 1rem;
        }
    }

    @media (max-width: 991px) {
        .hero-title-xl {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .brand-text-hero {
            font-size: 1.2rem;
        }

        .brand-reg-hero {
            font-size: 0.7rem;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .hero-visual-container {
            height: 400px;
            margin-top: 0;
        }

        .step-row {
            flex-direction: column;
            text-align: center;
        }

        .only-stat {
            font-size: 2.5rem;
        }

        .spacer-1 {
            height: 1.5rem;
        }

        .fact-label {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 767px) {
        .hero-title-xl {
            font-size: 2rem;
        }

        .hero-cta {
            flex-direction: column;
        }

            .hero-cta .btn {
                width: 100%;
            }

        .stat-value {
            font-size: 3rem;
        }

        .impact-value {
            font-size: 1.8rem;
            flex-direction: column;
        }

        .price {
            font-size: 4rem;
        }

        .spacer-1 {
            height: 1rem;
        }
    }

    /* ============================================================================
   COMPARISON SECTION - Before/After Side by Side
   Add this to your chatterbox_broadcast.css
   ============================================================================ */

    .comparison-section-v2 {
        position: relative;
        padding: var(--space-2xl) 0;
        background: var(--grad-sand-light);
        overflow: hidden;
    }

        /* Animated background orbs - matches hero section style */
        .comparison-section-v2 .comp-bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            opacity: 0.08;
        }

        .comparison-section-v2 .comp-bg-shape--1 {
            width: 500px;
            height: 500px;
            background: var(--chatterbox-red);
            top: -150px;
            left: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .comparison-section-v2 .comp-bg-shape--2 {
            width: 400px;
            height: 400px;
            background: var(--chatterbox-ocean);
            bottom: -100px;
            right: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }

        /* Section header */
        .comparison-section-v2 .comp-header {
            text-align: center;
            margin-bottom: var(--space-xl);
            position: relative;
            z-index: 1;
        }

            .comparison-section-v2 .comp-header h2 {
                font-family: var(--font-display);
                font-size: clamp(2rem, 5vw, 3rem);
                font-weight: 700;
                color: #fff;
                margin-bottom: var(--space-sm);
            }

            .comparison-section-v2 .comp-header p {
                color: rgba(255, 255, 255, 0.6);
                font-size: 1.15rem;
                max-width: 600px;
                margin: 0 auto;
            }

        /* Cards container */
        .comparison-section-v2 .comp-container {
            position: relative;
            z-index: 1;
        }

    /* Individual cards */
    .comp-card-v2 {
        background: rgba(255, 255, 255, 0.04);
        border-radius: var(--radius-xl);
        padding: var(--space-lg);
        height: 100%;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
    }

        .comp-card-v2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .comp-card-v2:hover {
            transform: translateY(-8px);
        }

    /* Problem card specific */
    .comp-card-v2--problem {
        border: 1px solid rgba(239, 68, 68, 0.25);
    }

        .comp-card-v2--problem::before {
            background: var(--grad-red);
        }

        .comp-card-v2--problem:hover {
            box-shadow: 0 25px 60px rgba(239, 68, 68, 0.12);
        }

    /* Solution card specific */
    .comp-card-v2--solution {
        border: 1px solid rgba(20, 184, 166, 0.25);
    }

        .comp-card-v2--solution::before {
            background: var(--grad-turquoise);
        }

        .comp-card-v2--solution:hover {
            box-shadow: 0 25px 60px rgba(20, 184, 166, 0.12);
        }

    /* Card headers */
    .comp-card-v2__header {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
        padding-bottom: var(--space-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .comp-card-v2__icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .comp-card-v2--problem .comp-card-v2__icon {
        background: rgba(239, 68, 68, 0.15);
        color: var(--chatterbox-red);
    }

    .comp-card-v2--solution .comp-card-v2__icon {
        background: rgba(20, 184, 166, 0.15);
        color: var(--chatterbox-ocean);
    }

    .comp-card-v2__title {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
    }

    .comp-card-v2--problem .comp-card-v2__title {
        color: var(--chatterbox-red);
    }

    .comp-card-v2--solution .comp-card-v2__title {
        color: var(--chatterbox-turquoise);
    }

    /* Stats row */
    .comp-stats-v2 {
        display: flex;
        gap: var(--space-md);
        margin-bottom: var(--space-md);
        flex-wrap: wrap;
    }

    .comp-stat-v2 {
        text-align: center;
        flex: 1;
        min-width: 80px;
        padding: var(--space-sm);
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-md);
    }

    .comp-stat-v2__value {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
        line-height: 1.2;
    }

    .comp-card-v2--problem .comp-stat-v2__value {
        color: var(--chatterbox-red);
    }

    .comp-card-v2--solution .comp-stat-v2__value {
        color: var(--chatterbox-turquoise);
    }

    .comp-stat-v2__label {
        font-size: 0.7rem;
        color: rgba(0, 0, 0, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    /* List items */
    .comp-list-v2 {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .comp-list-v2__item {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(-20px);
        animation: compSlideIn 0.5s ease forwards;
    }

        .comp-list-v2__item:last-child {
            border-bottom: none;
        }

        /* Staggered animation delays */
        .comp-list-v2__item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .comp-list-v2__item:nth-child(2) {
            animation-delay: 0.15s;
        }

        .comp-list-v2__item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .comp-list-v2__item:nth-child(4) {
            animation-delay: 0.25s;
        }

        .comp-list-v2__item:nth-child(5) {
            animation-delay: 0.3s;
        }

        .comp-list-v2__item:nth-child(6) {
            animation-delay: 0.35s;
        }

    @keyframes compSlideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .comp-list-v2__icon {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .comp-card-v2--problem .comp-list-v2__icon {
        background: rgba(239, 68, 68, 0.1);
        color: var(--chatterbox-red);
    }

    .comp-card-v2--solution .comp-list-v2__icon {
        background: rgba(20, 184, 166, 0.1);
        color: var(--chatterbox-turquoise);
    }

    .comp-list-v2__content {
        flex: 1;
        min-width: 0;
    }

    .comp-list-v2__title {
        font-family: var(--font-body);
        font-weight: 700;
        color: rgba(0, 0, 0, 0.95);
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .comp-list-v2__desc {
        font-family: var(--font-body);
        color: rgba(0, 0, 0, 0.55);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .comp-list-v2__badge {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: white;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .comp-card-v2--problem .comp-list-v2__badge {
        background: var(--grad-red);
    }

    .comp-card-v2--solution .comp-list-v2__badge {
        background: var(--grad-turquoise);
    }

    /* Center divider with VS badge */
    .comp-divider-v2 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        display: none;
    }

    @media (min-width: 992px) {
        .comp-divider-v2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
    }

    .comp-divider-v2__line {
        width: 2px;
        height: 80px;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    }

    .comp-divider-v2__vs {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--grad-sand-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 400;
        font-size: 0.9rem;
        color: var(--chatterbox-ocean);
        box-shadow: var(--glow-ocean);
    }

    /* Bottom impact stat */
    .comp-impact-v2 {
        margin-top: var(--space-xl);
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .comp-impact-v2__box {
        display: inline-flex;
        align-items: center;
        gap: var(--space-lg);
        background: var(--grad-sand-light);
        backdrop-filter: blur(12px);
        border: 1px solid var(--chatterbox-ocean) !important;
        border-radius: var(--radius-full);
        padding: var(--space-sm) var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .comp-impact-v2__item {
        display: flex;
        align-items: center;
        gap: var(--space-xs);
    }

    .comp-impact-v2__arrow {
        color: var(--chatterbox-ocean) !important;
        font-size: 1.5rem;
    }

    .comp-impact-v2__from {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 400; /* Changed from 700 */
        color: var(--chatterbox-red) !important; /* or turquoise */
    }

    .comp-impact-v2__to {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 400; /* Changed from 700 */
        color: var(--chatterbox-turquoise) !important; /* or turquoise */
    }

    .comp-impact-v2__label {
        font-size: 0.85rem;
        color: rgba(0, 0, 0, 0.6);
        font-weight: 400;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .comparison-section-v2 {
            padding: var(--space-xl) 0;
        }

        .comp-card-v2 {
            padding: var(--space-md);
        }

            .comp-card-v2 + .comp-card-v2 {
                margin-top: var(--space-md);
            }

        .comp-impact-v2__box {
            flex-direction: column;
            gap: var(--space-sm);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
        }
    }

    /* Impact summary on light backgrounds */
    .warm-texture .comp-impact-v2 {
        margin-top: var(--space-xl);
        text-align: center;
    }

    .warm-texture .comp-impact-v2__box {
        display: inline-flex;
        align-items: center;
        gap: var(--space-lg);
        background: white;
        border: 2px solid var(--sand-light);
        border-radius: var(--radius-full);
        padding: var(--space-sm) var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
        box-shadow: var(--shadow-card);
    }

    .warm-texture .comp-impact-v2__item {
        display: flex;
        align-items: center;
        gap: var(--space-xs);
    }

    .warm-texture .comp-impact-v2__arrow {
        color: var(--sand-light);
        font-size: 1.5rem;
    }

    .warm-texture .comp-impact-v2__from {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--chatterbox-red);
    }

    .warm-texture .comp-impact-v2__to {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--chatterbox-turquoise);
    }

    .warm-texture .comp-impact-v2__label {
        font-size: 0.85rem;
        color: var(--chatterbox-black);
        font-weight: 500;
    }

    @media (max-width: 991px) {
        .warm-texture .comp-impact-v2__box {
            flex-direction: column;
            gap: var(--space-sm);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
        }
    }

    /* ===================================================
   AMBIENT BACKGROUND EFFECT
=================================================== */
    /* ===================================================
   CRITICAL AMBIENT BACKGROUND FIXES
=================================================== */

     /*Force ALL sections to be transparent*/ 
    .hero-section,
    .stats-section,
    .challenge-section,
    .unique-section,
    .how-it-works-section,
    .customers-section,
    .pricing-section,
    .cta-final-section,
    .quote-section {
        background: transparent !important;
    }

     /*Only keep warm texture on specific sections*/ 
    .warm-texture {
        background-color: var(--sand-light) !important;
    }

     /*Ambient background stays behind everything*/
    .ambient-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        opacity: 0; /* Start completely hidden */
        animation: fadeOut 8s ease-in-out forwards;
        animation-play-state: paused; /* Start paused, JS will start after delay */
        overflow: hidden;
        pointer-events: none;
    }

    .ambient-background.animating {
        opacity: 0.8;
        animation-play-state: running;
    }

     /*Ensure content is above ambient*/ 
    body {
        position: relative;
    }

    .container {
        position: relative;
        z-index: 1;
    }

     /*Navigation must be above everything*/ 
    #mainNav {
        z-index: 1050 !important;
    }

    .color-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0;
        mix-blend-mode: screen;
        will-change: transform, opacity;
    }

    .blob1 {
        width: 60vw;
        height: 60vw;
        background: linear-gradient(135deg, #0891B2 0%, var(--chatterbox-ocean) 100%);
        top: -20%;
        left: -10%;
        animation: moveBlob1 8s ease-in-out forwards;
        animation-play-state: paused; /* Start paused */
    }

    .blob2 {
        width: 50vw;
        height: 50vw;
        background: #0C4A6E;  /* Deep ocean */
        bottom: -10%;
        right: -10%;
        animation: moveBlob2 8s ease-in-out forwards;
        animation-play-state: paused; /* Start paused */
    }

    .blob3 {
        width: 45vw;
        height: 45vw;
        background: var(--chatterbox-turquoise);
        top: 40%;
        right: 20%;
        animation: moveBlob3 8s ease-in-out forwards;
        animation-play-state: paused; /* Start paused */
    }

    .blob4 {
        width: 55vw;
        height: 55vw;
        background: linear-gradient(135deg, var(--chatterbox-turquoise) 0%, var(--chatterbox-ocean) 100%);
        bottom: 30%;
        left: 10%;
        animation: moveBlob4 8s ease-in-out forwards;
        animation-play-state: paused; /* Start paused */
    }

    /* When ambient is animating, start blob animations too */
    .ambient-background.animating .color-blob {
        animation-play-state: running;
    }

    @keyframes fadeOut {
        0% {
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        80% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes moveBlob1 {
        0% {
            transform: translate(0, 0) scale(0.8);
            opacity: 0;
        }

        20% {
            opacity: 0.5;
        }

        60% {
            transform: translate(10%, 20%) scale(1.2);
            opacity: 0.5;
        }

        100% {
            transform: translate(20%, 30%) scale(0.8);
            opacity: 0;
        }
    }

    @keyframes moveBlob2 {
        0% {
            transform: translate(0, 0) scale(0.8);
            opacity: 0;
        }

        20% {
            opacity: 0.5;
        }

        60% {
            transform: translate(-15%, -25%) scale(1.2);
            opacity: 0.5;
        }

        100% {
            transform: translate(-25%, -35%) scale(0.8);
            opacity: 0;
        }
    }

    @keyframes moveBlob3 {
        0% {
            transform: translate(0, 0) scale(0.8);
            opacity: 0;
        }

        20% {
            opacity: 0.5;
        }

        60% {
            transform: translate(-20%, 15%) scale(1.1);
            opacity: 0.5;
        }

        100% {
            transform: translate(-30%, 25%) scale(0.8);
            opacity: 0;
        }
    }

    @keyframes moveBlob4 {
        0% {
            transform: translate(0, 0) scale(0.8);
            opacity: 0;
        }

        20% {
            opacity: 0.5;
        }

        60% {
            transform: translate(25%, -15%) scale(1.1);
            opacity: 0.5;
        }

        100% {
            transform: translate(35%, -25%) scale(0.8);
            opacity: 0;
        }
    }

 /*===================================================
   MOBILE ADJUSTMENTS FOR AMBIENT BACKGROUND
=================================================== */

    @media (max-width: 600px) {
        .ambient-background {
            animation: none;
            opacity: 0.8;
        }

        .color-blob {
            filter: blur(30px);
        }

        .blob1 {
            width: 80vw;
            height: 80vw;
            top: -10%;
            left: -10%;
            animation: moveBlob1Mobile 8s ease-in-out forwards;
        }

        .blob2 {
            width: 70vw;
            height: 70vw;
            bottom: -10%;
            right: -10%;
            animation: moveBlob2Mobile 8s ease-in-out forwards;
        }

        .blob3 {
            width: 65vw;
            height: 65vw;
            top: 30%;
            right: 15%;
            animation: moveBlob3Mobile 8s ease-in-out forwards;
        }

        .blob4 {
            width: 75vw;
            height: 75vw;
            bottom: 20%;
            left: 5%;
            animation: moveBlob4Mobile 8s ease-in-out forwards;
        }

        @keyframes moveBlob1Mobile {
            0% {
                transform: translate(0, 0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 0.7;
            }

            60% {
                transform: translate(10%, 20%) scale(1.2);
                opacity: 0.7;
            }

            100% {
                transform: translate(20%, 30%) scale(0.8);
                opacity: 0;
            }
        }

        @keyframes moveBlob2Mobile {
            0% {
                transform: translate(0, 0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 0.7;
            }

            60% {
                transform: translate(-15%, -25%) scale(1.2);
                opacity: 0.7;
            }

            100% {
                transform: translate(-25%, -35%) scale(0.8);
                opacity: 0;
            }
        }

        @keyframes moveBlob3Mobile {
            0% {
                transform: translate(0, 0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 0.7;
            }

            60% {
                transform: translate(-20%, 15%) scale(1.1);
                opacity: 0.7;
            }

            100% {
                transform: translate(-30%, 25%) scale(0.8);
                opacity: 0;
            }
        }

        @keyframes moveBlob4Mobile {
            0% {
                transform: translate(0, 0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 0.7;
            }

            60% {
                transform: translate(25%, -15%) scale(1.1);
                opacity: 0.7;
            }

            100% {
                transform: translate(35%, -25%) scale(0.8);
                opacity: 0;
            }
        }
    }

/* ===================================================
   SAFE CONTINUOUS AMBIENT PATCH (NO KEYFRAME REPLACEMENT)
   Paste at the VERY END of your CSS
=================================================== */

/* Ambient background - visible from start, blob animations start after delay */
.ambient-background {
    animation: none !important;
    opacity: 0.85 !important; /* Visible from start */
}

/* Keep your existing moveBlobX keyframes,
   but make them loop forever + alternate direction */
.blob1 {
    animation: moveBlob1 9s ease-in-out infinite alternate, blobOpacity1 3s ease-in-out infinite !important;
    animation-play-state: paused;
}

.blob2 {
    animation: moveBlob2 11s ease-in-out infinite alternate, blobOpacity2 3.5s ease-in-out infinite !important;
    animation-delay: 0s, -1.5s !important;
    animation-play-state: paused;
}

.blob3 {
    animation: moveBlob3 10s ease-in-out infinite alternate, blobOpacity3 3.25s ease-in-out infinite !important;
    animation-delay: 0s, -2.5s !important;
    animation-play-state: paused;
}

.blob4 {
    animation: moveBlob4 13s ease-in-out infinite alternate, blobOpacity4 4s ease-in-out infinite !important;
    animation-delay: 0s, -3.5s !important;
    animation-play-state: paused;
}

.ambient-background.animating .blob1,
.ambient-background.animating .blob2,
.ambient-background.animating .blob3,
.ambient-background.animating .blob4 {
    animation-play-state: running;
}

/* IMPORTANT:
   Your original keyframes fade opacity back to 0 at the end.
   These opacity animations come SECOND, so they win for opacity
   while moveBlobX still drives transform movement. */
@keyframes blobOpacity1 {
    0%, 100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.42;
    }
}

@keyframes blobOpacity2 {
    0%, 100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.26;
    }
}

@keyframes blobOpacity3 {
    0%, 100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.34;
    }
}

@keyframes blobOpacity4 {
    0%, 100% {
        opacity: 0.30;
    }

    50% {
        opacity: 0.22;
    }
}

/* Mobile: keep your existing mobile motion keyframes,
   just make them loop + keep opacity alive */
@media (max-width: 600px) {
    .ambient-background {
        opacity: 0.85 !important; /* Visible from start on mobile too */
        animation: none !important;
    }

    .blob1 {
        animation: moveBlob1Mobile 9s ease-in-out infinite alternate, blobOpacity1 3s ease-in-out infinite !important;
        animation-play-state: paused;
    }

    .blob2 {
        animation: moveBlob2Mobile 11s ease-in-out infinite alternate, blobOpacity2 3.5s ease-in-out infinite !important;
        animation-play-state: paused;
    }

    .blob3 {
        animation: moveBlob3Mobile 10s ease-in-out infinite alternate, blobOpacity3 3.25s ease-in-out infinite !important;
        animation-play-state: paused;
    }

    .blob4 {
        animation: moveBlob4Mobile 13s ease-in-out infinite alternate, blobOpacity4 4s ease-in-out infinite !important;
        animation-play-state: paused;
    }

    .ambient-background.animating .blob1,
    .ambient-background.animating .blob2,
    .ambient-background.animating .blob3,
    .ambient-background.animating .blob4 {
        animation-play-state: running;
    }
}

.blob1 {
    background: radial-gradient(circle at 50% 50%, #22d3ee 0%, var(--chatterbox-ocean) 58%, transparent 75% ) !important;
}

.blob2 {
    background: radial-gradient(circle at 40% 35%, #0C4A6E 0%, rgba(12, 74, 110, 0) 75% ) !important;
}

.blob3 {
    background: radial-gradient(circle at 30% 30%, var(--chatterbox-turquoise) 0%, rgba(0,0,0,0) 72% ) !important;
}

.blob4 {
    background: radial-gradient(circle at 60% 40%, var(--chatterbox-turquoise) 0%, var(--chatterbox-ocean) 60%, transparent 78% ) !important;
}


/* Tryout Modal */
.tryout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 39, 48, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

    .tryout-modal-overlay.active {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        padding: 24px;
    }

.tryout-modal-content {
    width: 100%;
    max-width: min(1400px, calc(100vw - 48px));
    max-height: calc(100dvh - 48px);
    position: relative;
}

#tryoutIframe {
    width: 100%;
    height: calc(100dvh - 48px);
    max-height: 850px;
    border: none;
    border-radius: 28px;
    background: white;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16);
}

.tryout-modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

    .tryout-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg) scale(1.1);
    }

@media (max-width: 576px) {
    .tryout-modal-overlay.active {
        padding: 8px;
    }

    .tryout-modal-content {
        max-height: calc(100dvh - 16px);
    }

    #tryoutIframe {
        height: calc(100dvh - 16px);
        max-height: none;
        border-radius: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Demo Modal Styles */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 39, 48, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 24px;
}

    .demo-modal-overlay.active {
        display: grid;
        place-items: start center;
        opacity: 1;
        padding-top: 24px;
        overflow-y: auto;
    }

.demo-modal-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(1800px, calc(100vw - 48px));
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    position: relative;
}

/* Campaign Type Toggle - positioned at top */
.campaign-type-toggle {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem;
    border-radius: 16px;
    align-self: center;
    margin-top: 0;
}

.campaign-type-btn {
    background: transparent;
    border: 2px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    white-space: nowrap;
}

.campaign-type-btn i {
    font-size: 1.1rem;
}

.campaign-type-btn span {
    font-weight: 700;
    font-size: 0.85rem;
}

.campaign-type-btn small {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.campaign-type-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.campaign-type-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--chatterbox-turquoise);
    color: white;
}

.campaign-type-btn.active[data-type="transactional"] {
    border-color: var(--chatterbox-ocean);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.campaign-type-btn.active[data-type="direct-marketing"] {
    border-color: #A855F7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.campaign-type-btn.active[data-type="direct-marketing"] i {
    color: #C084FC;
}

/* Demo content wrapper for horizontal layout */
.demo-content-wrapper {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.demo-switcher {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 170px;
    max-width: 180px;
}

.demo-switch-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    .demo-switch-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }

    .demo-switch-btn:hover::before {
        left: 100%;
    }

    .demo-switch-btn i {
        font-size: 1.1rem;
    }

    .demo-switch-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateX(3px);
    }

    .demo-switch-btn.active {
        background: var(--grad-turquoise);
        border-color: var(--chatterbox-turquoise);
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4), 0 3px 10px rgba(45, 212, 191, 0.3);
        transform: translateX(3px);
    }

        .demo-switch-btn.active::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 50%;
            background: white;
            border-radius: 0 3px 3px 0;
            animation: activeIndicator 0.3s ease-out;
        }

@keyframes activeIndicator {
    from {
        height: 0%;
    }

    to {
        height: 60%;
    }
}

#demoIframe {
    flex: 1;
    border: none;
    border-radius: 28px;
    background: white;
    height: calc(100vh - 140px);
    height: calc(100dvh - 140px);
    min-height: 500px;
    max-height: 900px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16);
}

.demo-modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

    .demo-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg) scale(1.1);
    }

@media (max-width: 1200px) {
    .demo-modal-container {
        flex-direction: column;
    }

    .demo-content-wrapper {
        flex-direction: column;
    }

    .campaign-type-toggle {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.35rem;
    }

    .campaign-type-btn {
        padding: 0.6rem 1rem;
    }

    .campaign-type-btn i {
        font-size: 1rem;
    }

    .campaign-type-btn span {
        font-size: 0.75rem;
    }

    .campaign-type-btn small {
        font-size: 0.55rem;
        display: none;
    }

    .demo-switcher {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        min-width: auto;
        max-width: none;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .demo-switch-btn {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

        .demo-switch-btn:hover,
        .demo-switch-btn.active {
            transform: translateY(-3px);
        }

    #demoIframe {
        min-height: 600px;
        height: 92vh;
        max-height: none;
    }
}

/* iPad Pro and similar tablet widths (portrait mode) */
@media (max-width: 1024px) {
    .demo-modal-overlay {
        padding: 16px;
    }

    .demo-modal-container {
        width: calc(100vw - 32px);
    }

    .tryout-modal-overlay.active {
        padding: 16px;
    }

    .tryout-modal-content {
        max-width: calc(100vw - 32px);
    }

    #tryoutIframe {
        border-radius: 20px;
    }

    #demoIframe {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .demo-modal-overlay {
        padding: 0.5rem;
        padding-top: 3rem;
    }

    .campaign-type-toggle {
        gap: 0.35rem;
        padding: 0.25rem;
    }

    .campaign-type-btn {
        padding: 0.5rem 0.75rem;
    }

    .campaign-type-btn i {
        font-size: 0.9rem;
    }

    .campaign-type-btn span {
        font-size: 0.65rem;
    }

    .campaign-type-btn small {
        display: none;
    }

    .demo-switcher {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .demo-switch-btn {
        padding: 0.65rem 0.85rem;
        font-size: 0.7rem;
        text-align: center;
        justify-content: center;
    }

        .demo-switch-btn i {
            font-size: 0.95rem;
        }

    #demoIframe {
        min-height: 600px;
        height: 117vh;
        max-height: none;
    }
}

/* ============================================================================
   DARK MODE
   Automatically activates when user's system prefers dark color scheme
   ============================================================================ */

/*@media (prefers-color-scheme: dark) {*/
    /* Override CSS Variables for Dark Mode */
    /*:root {
        
        --sand-light: #0C1A20;
        --sand-light-80: rgba(12, 26, 32, 0.8);
        --chatterbox-black: #E8F4F8;
        --chatterbox-black-80: rgba(232, 244, 248, 0.8);*/
        /* Adjusted gradients for dark mode */
        /*--grad-sand-light: linear-gradient(135deg, #0A1418 0%, #0C1A20 40%, #0F2028 100%);*/
        /* Shadows adjusted for dark backgrounds */
        /*--shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
        --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.5);
        --glow-sand-light: 0 0 30px rgba(12, 26, 32, 0.5);
    }*/

    /* Base body */
    /*body {
        background-color: #0C1A20;
        color: #E8F4F8;
    }*/

    /* Warm texture overlay */
    /*.warm-texture {
        background-color: #0C1A20;
    }

    .warm-texture::before {
        opacity: 0.02;
    }*/

    /* Section backgrounds */
    /*section {
        background: transparent !important;
    }*/

    /* Hero section */
    /*.hero-section {
        background: linear-gradient(180deg, #0A1418 0%, #0C1A20 50%, #0F2028 100%);
    }*/

    /* Text colors */
    /*.text-black {
        color: #E8F4F8;
    }

    .section-subtitle {
        color: #B8D4DC;
    }*/

    /* Navigation - Default state (transparent) stays the same */
    /*#mainNav {
        background: transparent;
    }*/

    /* Navigation - Scrolled state */
    /*#mainNav.scrolled {
        background: linear-gradient(90deg, rgba(12, 74, 110, 0.4) 0%, rgba(8, 145, 178, 0.25) 50%, rgba(8, 145, 178, 0.25) 100%);
    }*/

    /* Nav links */
    /*#mainNav .nav-link {
        color: #E8F4F8;
    }

    #mainNav .nav-link:hover {
        color: var(--chatterbox-ocean) !important;
    }*/

    /* Mobile navbar dropdown */
    /*@media (max-width: 991.98px) {
        #mainNav .navbar-toggler,
        #mainNav .navbar-toggler .bi-list {
            color: #E8F4F8 !important;
        }

        #mainNav .navbar-collapse {
            background: #0F2028;
        }

        #mainNav.scrolled .navbar-collapse {
            background: linear-gradient(135deg, rgba(12, 74, 110, 0.9) 0%, rgba(8, 145, 178, 0.8) 100%);
        }
    }*/

    /* Brand text - keep turquoise gradient */
    /*.brand-sub-text {
        background: #B8D4DC;
        -webkit-background-clip: text;
        background-clip: text;
    }*/

    /* Hero title */
    /*.hero-title-xl {
        color: #E8F4F8;
    }*/

    /* Hero subtitle */
    /*.hero-subtitle {
        color: #B8D4DC;
    }*/

    /* Hero fact box */
    /*.hero-fact-box {
        background: rgba(12, 74, 110, 0.3);
        border-color: rgba(34, 211, 238, 0.3);
    }

    .fact-label {
        color: #B8D4DC;
    }*/

    /* Trust badges */
    /*.trust-badge {
        background: rgba(12, 74, 110, 0.25);
        border-color: rgba(34, 211, 238, 0.2);
        color: #B8D4DC;
    }*/

    /* Language bubbles */
    /*.lang-bubble {
        background: rgba(12, 74, 110, 0.4);
        border-color: rgba(34, 211, 238, 0.3);
        color: #E8F4F8;
    }

    .lang-bubble:hover {
        background: rgba(8, 145, 178, 0.5);
    }*/

    /* Central orb */
    /*.central-orb {
        background: linear-gradient(135deg, rgba(12, 74, 110, 0.8) 0%, rgba(8, 145, 178, 0.6) 100%);
    }*/

    /* Stats section */
    /*.stats-section {
        background: linear-gradient(180deg, #0C1A20 0%, #0A1418 100%);
    }

    .stat-card {
        background: rgba(12, 74, 110, 0.2);
        border-color: rgba(34, 211, 238, 0.15);
    }

    .stat-label {
        color: #B8D4DC;
    }*/

    /* Challenge section */
    /*.challenge-section {
        background: #0A1418;
    }

    .challenge-card {
        background: rgba(12, 74, 110, 0.15);
        border-color: rgba(34, 211, 238, 0.1);
    }

    .challenge-card h3 {
        color: #E8F4F8;
    }

    .challenge-list li {
        color: #B8D4DC;
    }

    .impact-stat-box {
        background: rgba(12, 74, 110, 0.25);
    }

    .impact-label {
        color: #B8D4DC;
    }*/

    /* Unique section */
    /*.unique-section {
        background: #0C1A20;
    }

    .comparison-box {
        background: rgba(12, 74, 110, 0.15);
        border-color: rgba(34, 211, 238, 0.1);
    }

    .comparison-item h5 {
        color: #E8F4F8;
    }

    .comparison-list li {
        color: #B8D4DC;
    }

    .unique-feature-card {
        background: rgba(12, 74, 110, 0.2);
        border-color: rgba(34, 211, 238, 0.15);
    }

    .unique-feature-card:hover {
        background: rgba(8, 145, 178, 0.25);
        border-color: rgba(34, 211, 238, 0.3);
    }

    .unique-content h4 {
        color: #E8F4F8;
    }

    .unique-content p {
        color: #B8D4DC;
    }

    .only-platform-box {
        background: linear-gradient(135deg, rgba(12, 74, 110, 0.4) 0%, rgba(8, 145, 178, 0.3) 100%);
        border-color: rgba(34, 211, 238, 0.3);
    }

    .only-label {
        color: #B8D4DC;
    }*/

    /* How it works section */
    /*.how-it-works-section {
        background: #0A1418;
    }

    .step-content h3 {
        color: #E8F4F8;
    }

    .step-content p {
        color: #B8D4DC;
    }

    .step-time {
        background: rgba(12, 74, 110, 0.3);
        color: #E8F4F8;
    }

    .step-visual {
        background: rgba(12, 74, 110, 0.2);
        border-color: rgba(34, 211, 238, 0.2);
    }*/

    /* Customers section */
    /*.customers-section {
        background: #0C1A20;
    }

    .customer-card {
        background: rgba(12, 74, 110, 0.15);
        border-color: rgba(34, 211, 238, 0.1);
    }

    .customer-card:hover {
        background: rgba(8, 145, 178, 0.2);
        border-color: rgba(34, 211, 238, 0.25);
    }

    .customer-card h3 {
        color: #E8F4F8;
    }

    .customer-pain {
        color: #B8D4DC;
    }

    .customer-stat {
        background: rgba(12, 74, 110, 0.25);
    }

    .stat-desc {
        color: #B8D4DC;
    }

    .customer-quote {
        background: rgba(8, 145, 178, 0.15);
        color: #B8D4DC;
    }*/

    /* Pricing section */
    /*.pricing-section {
        background: #0A1418;
    }

    .pricing-card-main {
        background: linear-gradient(135deg, rgba(12, 74, 110, 0.3) 0%, rgba(8, 145, 178, 0.2) 100%);
        border-color: rgba(34, 211, 238, 0.2);
    }

    .pricing-features li {
        color: #B8D4DC;
    }

    .pricing-example h5 {
        color: #E8F4F8;
    }

    .example-calc {
        background: rgba(12, 74, 110, 0.25);
    }

    .calc-row {
        color: #B8D4DC;
    }

    .example-note {
        color: #8CAAB4;
    }*/

    /* CTA Final section */
    /*.cta-final-section {
        background: linear-gradient(180deg, #0C1A20 0%, #0A1418 100%);
    }

    .cta-final-box {
        background: linear-gradient(135deg, rgba(12, 74, 110, 0.4) 0%, rgba(8, 145, 178, 0.3) 100%);
        border-color: rgba(34, 211, 238, 0.3);
    }*/

    /* Quote section */
    /*.quote-section {
        background: #0A1418;
    }

    .main-quote {
        color: #B8D4DC;
    }*/

    /* Footer */
    /*.main-footer {
        background: #0A1418;
        border-top-color: rgba(34, 211, 238, 0.1);
    }

    .footer-tagline {
        color: #8CAAB4;
    }

    .footer-copy {
        color: #6B8A94;
    }*/

    /* Buttons - Glass outline */
    /*.btn-outline-glass {
        border-color: rgba(34, 211, 238, 0.4);
        color: #E8F4F8;
        background: rgba(8, 145, 178, 0.15);
    }

    .btn-outline-glass:hover {
        background: rgba(34, 211, 238, 0.25);
        border-color: rgba(34, 211, 238, 0.6);
        color: #E8F4F8;
    }*/

    /* Modal styles */
    /*.modal-dark .modal-content {
        background: #0F2028;
        border-color: rgba(34, 211, 238, 0.2);
    }

    .tryout-modal-overlay,
    .demo-modal-overlay {
        background: rgba(0, 0, 0, 0.85);
    }

    .tryout-modal-content {
        background: #0F2028;
        border-color: rgba(34, 211, 238, 0.2);
    }

    .demo-modal-container {
        background: #0F2028;
        border-color: rgba(34, 211, 238, 0.2);
    }

    .demo-switcher {
        background: rgba(12, 74, 110, 0.3);
    }

    .demo-switch-btn {
        color: #B8D4DC;
    }

    .demo-switch-btn:hover {
        background: rgba(8, 145, 178, 0.3);
        color: #E8F4F8;
    }

    .demo-switch-btn.active {
        background: var(--grad-ocean);
        color: white;
    }*/

    /* Ambient background blobs - slightly more visible in dark mode */
    /*.ambient-background .blob {
        opacity: 0.4;
    }*/

    /* Example and quote boxes in modals */
    /*.example-box,
    .quote-box {
        background: rgba(12, 74, 110, 0.2);
        border-color: rgba(34, 211, 238, 0.15);
    }

    .solution-box {
        background: rgba(8, 145, 178, 0.2);
        border-color: rgba(45, 212, 191, 0.2);
    }*/

    /* FAQ Accordion (if present) */
    /*.accordion-item {
        background: rgba(12, 74, 110, 0.15);
        border-color: rgba(34, 211, 238, 0.1);
    }

    .accordion-button {
        background: transparent;
        color: #E8F4F8;
    }

    .accordion-button:not(.collapsed) {
        background: rgba(8, 145, 178, 0.2);
        color: var(--chatterbox-ocean);
    }

    .accordion-body {
        color: #B8D4DC;
    }*/

    /* Scrollbar styling for dark mode */
    /*::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #0A1418;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(8, 145, 178, 0.4);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(8, 145, 178, 0.6);
    }*/

    /* Selection color */
    /*::selection {
        background: rgba(8, 145, 178, 0.4);
        color: #E8F4F8;
    }
}*/

/* ============================================================================
   Partners / Backed By Section
   ============================================================================ */
.partners-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(20, 184, 166, 0.03) 100%);
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    padding: 3rem 0;
}

.partners-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ocean-deep);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.partners-logos img {
    height: 64px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive adjustments for partners */
@media (max-width: 992px) {
    .partners-logos {
        gap: 1.5rem 2.5rem;
    }

    .partners-logos img {
        height: 64px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2rem 0;
    }

    .partners-label {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .partners-logos {
        gap: 1.25rem 2rem;
    }

    .partners-logos img {
        height: 22px;
    }
}

@media (max-width: 576px) {
    .partners-logos {
        gap: 1rem 1.5rem;
    }

    .partners-logos img {
        height: 18px;
    }
}