:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --text-gray: #888888;
    --bg-gray: #0a0a0a;
    --accent-color: #ffffff;
    --glass-bg: rgba(10, 10, 10, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    overflow-x: clip;
}

html.scroll-locked,
body.scroll-locked {
    overflow: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

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

.logo img {
    height: 32px;
    /* Standard header logo height */
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-white);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.6;
    position: relative;
    padding: 6px 16px;
    border-radius: 100px;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) inset;
    /* subtle inner glow for the pill */
}

/* GSAP Zoom Transition Section */
.product-showcase {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6vh;
    /* Approx 60px on 1000px height screens */
    position: relative;
    border-top: none;
    overflow: hidden;
}

.product-showcase .section-title {
    margin-bottom: 8vh;
    /* Reduced gap between title and image */
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    position: relative;
    text-align: center;
    width: 100%;
}

.zoom-bg-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    z-index: 1;
    overflow: visible;
}

.zoom-bg-image {
    width: 42vh;
    /* ≈415px on 991px viewport */
    height: auto;
    /* Maintains aspect ratio */
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    transform: scale(0.3);
    /* Starts at 0.3 per user request */
    will-change: transform;
    transform-origin: top center;
    position: relative;
    z-index: 2;
}

/* Callout Animations for Showcase */
.zoom-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: visible;
    /* Important to keep it snug around the image */
}

.callout {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.callout.active {
    opacity: 1;
}

.callout-point {
    width: 14px;
    height: 14px;
    background: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.9), 0 0 0 5px rgba(255, 255, 255, 0.25);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.callout.active .callout-point {
    transform: scale(1);
    animation: status-pulse-green 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.callout-line {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
    height: 2px;
    z-index: 1;
}

@keyframes status-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.callout-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.callout.active .callout-text {
    opacity: 1;
    transform: translateY(0);
}

/* Callout 1: Top Left (Camera) */
.callout-1 {
    top: 20%;
    right: 95%;
    /* anchor right edge of callout near left edge of device */
    flex-direction: row-reverse;
    /* dot on the right, line goes left */
}

.callout-1 .callout-line {
    width: 0;
    height: 1px;
    right: 3px;
    transform-origin: right center;
    /* Draw right-to-left */
    transition: width 0.6s ease 0.3s;
}

.callout-1.active .callout-line {
    width: 120px;
}

.callout-1 .callout-text {
    margin-right: 130px;
    transition-delay: 0.8s;
}

/* Callout 2: Top Right (Storage) */
.callout-2 {
    top: 6%;
    left: calc(100% + 20px);
    /* anchor left edge of callout near right edge of device */
}

.callout-2 .callout-line {
    width: 0;
    height: 1px;
    left: 3px;
    transform-origin: left center;
    /* Draw left-to-right */
    transition: width 0.6s ease 0.3s;
}

.callout-2.active .callout-line {
    width: 150px;
}

.callout-2 .callout-text {
    margin-left: 160px;
    transition-delay: 0.8s;
}

/* Callout 3: Middle Right (Buttons) */
.callout-3 {
    top: 45%;
    left: calc(100% + 30px);
    /* anchor left edge of callout to right edge of device */
}

.callout-3 .callout-line {
    width: 0;
    height: 1px;
    left: 3px;
    transform-origin: left center;
    /* Draw left-to-right */
    transition: width 0.6s ease 0.3s;
}

.callout-3.active .callout-line {
    width: 130px;
}

.callout-3 .callout-text {
    margin-left: 140px;
    transition-delay: 0.8s;
}

/* Callout 4: Bottom Left (Screen) */
.callout-4 {
    top: 63%;
    right: 90%;
    /* anchor right edge of callout to bottom left of screen */
    flex-direction: row-reverse;
    /* dot on the right, line goes left */
}

.callout-4 .callout-line {
    width: 0;
    height: 1px;
    right: 3px;
    transform-origin: right center;
    /* Draw right-to-left */
    transition: width 0.6s ease 0.3s;
}

.callout-4.active .callout-line {
    width: 130px;
}

.callout-4 .callout-text {
    margin-right: 140px;
    transition-delay: 0.8s;
}

/* Make callouts responsive and adhere to scaling */
@media (max-width: 768px) {
    .callout {
        display: none;
        /* Hide complex callouts on very small mobile screens */
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, #000000 100%);
    z-index: 1;
}

.hero-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #cccccc;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    /* vibrant green */
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    position: relative;
    top: -1px;
    /* visual alignment */
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: status-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes status-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }

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

.hero-title {
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 32px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #cccccc;
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

@keyframes btn-primary-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    animation: btn-primary-pulse 2.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.hero-bg-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    mask-image: linear-gradient(to right, transparent, black 20%);
    opacity: 0.8;
}

/* Background Grid (Optional enhancement) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Smooth Transitions */
section:not(.features) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

section:not(.features).visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid */
.grid-section {
    padding: 120px 5% 8vh;
    /* 8vh ≈ 80px on 991px viewport */
    background: #000000;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-2-col-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    position: relative;
    will-change: transform;
}

.feature-card {
    border-radius: 32px;
    padding: 60px;
    aspect-ratio: 860 / 470;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-card:hover,
.feature-card:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: #111111;
    box-shadow: 0 10px 40px -10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.feature-info h3 {
    font-size: clamp(24px, 2.5vw, 42px);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #ffffff;
}

.feature-info p {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 400;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #888888;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.language-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

.language-tags span.more {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.light-card .language-tags span {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
}

.light-card .language-tags span.more {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
}

.dark-card {
    background: #0a0a0a;
}

.light-card {
    background: #0a0a0a;
}

.feature-icon-box {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    /* Modern translucent background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.feature-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure icons are white */
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Hover States */
.feature-card:hover .feature-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon-box img {
    opacity: 1;
    transform: scale(1.1);
}

.dark-card .feature-icon-box {
    background: rgba(45, 45, 47, 0.5);
}

.light-card .feature-icon-box {
    background: rgba(45, 45, 47, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.light-card .feature-icon-box img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.light-card:hover .feature-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Background Patterns - High Fidelity SVG */
.pattern-waves {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 1000 1000"><path d="M0 500 Q 250 400 500 500 T 1000 500" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="2"/><path d="M0 600 Q 250 500 500 600 T 1000 600" fill="none" stroke="white" stroke-opacity="0.08" stroke-width="1.5"/><path d="M0 400 Q 250 300 500 400 T 1000 400" fill="none" stroke="white" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-size: cover;
}

.pattern-grid {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="0.5"/></svg>');
    background-size: 40px 40px;
}

.pattern-ripples {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="100" fill="none" stroke="white" stroke-opacity="0.15" stroke-width="1"/><circle cx="500" cy="500" r="200" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="500" cy="500" r="300" fill="none" stroke="white" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-position: center;
    background-size: cover;
}

/* Scroll Animation Initial State */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    /* Feature cards — Native CSS Stacking for Mobile & Tablet */
    .features.grid-section {
        padding: 40px 5% 40px;
        overflow: visible;
        /* Needed for sticky */
    }

    .features.grid-section .section-title {
        position: sticky;
        top: 90px;
        z-index: 20;
        background: #000000;
        margin: -20px -20px 40px -20px;
        /* pull to edge for background coverage */
        padding: 20px;
        padding-bottom: 10px;
        margin-bottom: 40px;
        text-align: center;
    }

    .features-2-col-grid {
        gap: 0;
        /* Removing gap so cards can have margin to build height */
        overflow: visible;
        display: block;
        /* Removing flex so contents work well */
    }

    .card-row {
        display: contents;
        /* Flattens cards into grid, allowing them to stick relative to the whole section */
    }

    .feature-card {
        padding: 40px 30px;
        aspect-ratio: unset;
        position: sticky !important;
        top: 25vh;
        /* Sits centered in the viewport */
        background: #0a0a0a;
        margin-bottom: 80vh;
        /* Creates the scroll distance between each card */
        border: 1px solid #222;
        /* Add subtle border so they separate when stacked */
        transform: none !important;
        /* Override any GSAP inline styles */
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        /* Shadow for depth when covering */
    }

    /* Target specific cards for reliable z-index stacking */
    .card-row:nth-child(1) .feature-card:nth-child(1) {
        z-index: 1;
    }

    .card-row:nth-child(1) .feature-card:nth-child(2) {
        z-index: 2;
    }

    .card-row:nth-child(2) .feature-card:nth-child(1) {
        z-index: 3;
    }

    .card-row:nth-child(2) .feature-card:nth-child(2) {
        z-index: 4;
    }

    .card-row:nth-child(3) .feature-card:nth-child(1) {
        z-index: 5;
    }

    .card-row:nth-child(3) .feature-card:nth-child(2) {
        z-index: 6;
    }

    .card-row:nth-child(4) .feature-card:nth-child(1) {
        z-index: 7;
    }

    .card-row:nth-child(4) .feature-card:nth-child(2) {
        z-index: 8;
    }

    .card-row:nth-child(5) .feature-card:nth-child(1) {
        z-index: 9;
    }

    .card-row:nth-child(5) .feature-card:nth-child(2) {
        z-index: 10;
    }

    /* Transition for fading out covered cards */
    .feature-card {
        transition: opacity 0.3s ease, border-color 0.4s ease, transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    }

    /* Class applied via JS when a card is covered by the next one */
    .feature-card.is-covered {
        opacity: 0 !important;
        pointer-events: none;
        transform: scale(0.95) translateY(-20px) !important;
    }

    /* Remove massive margin from the very last card so the next section doesn't wait 80vh to start appearing */
    #final-mobile-card {
        top: 18vh !important;
        margin-bottom: 0 !important;
    }

    /* Tighten the tail of the stack so the final cards don't leave desktop-sized gaps on phones. */
    .card-row:nth-last-child(2) .feature-card:last-child {
        margin-bottom: 16vh;
    }

    /* Keep the final pair visually stacked instead of leaving a full-card scroll gap. */
    .card-row:last-child .feature-card:first-child {
        margin-bottom: 16vh;
    }

    /* Give the overall section extra padding so the very last card has enough scroll room to stay stacked before the next section pulls it away */
    .features-2-col-grid {
        padding-bottom: 40vh;
    }
}



/* Other Sections */
.simple-connection,
.headset-details,
.protect-ears,
.newsletter-blog,
.opinions {
    background: #000000;
}

.section-slice img {
    filter: brightness(0.9);
    /* Subtle dimming for premium feel */
}

/* Simple Connection Section */
.simple-connection {
    background-color: #000000;
    padding: 40px 0 100px 0;
    overflow: hidden;
    color: #ffffff;
}

.simple-connection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.simple-connection-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -15px;
    /* Pull video up slightly closer to title */
}

.simple-connection-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.simple-connection-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -15px;
    /* Pull button up slightly closer to video */
}

.simple-connection-visual {
    width: 100%;
    max-width: 1200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.8s ease-in-out, transform 0.8s ease-in-out;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.simple-connection-visual.focused-glow {
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.simple-connection-video {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* OmniTrans Elite Product Card Section */
.product-elite {
    background-color: #000000;
    padding: 100px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* subtle separation */
}

.product-elite-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Visual */
.elite-visual-col {
    background: #090909;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.elite-product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.elite-visual-col:hover .elite-product-img {
    transform: scale(1.05);
}

/* Right Column: Content */
.elite-content-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elite-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.elite-tag {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.elite-title {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
}

.elite-desc {
    color: #888888;
    font-size: 20px;
    line-height: 1.6;
    max-width: 90%;
    margin-top: 8px;
}



/* Features Grid */
.elite-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.elite-feature-item {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.elite-feature-item:hover {
    background: #151515;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.elite-icon-wrapper {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.elite-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

/* Ensure PNG icons in this block are white */
.elite-icon-wrapper img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.elite-feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.elite-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.elite-feature-text p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Footer Tagline */
.elite-footer {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 10px;
    color: #555555;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding-top: 10px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-item svg {
    color: #888888;
}

@media (max-width: 1024px) {
    .product-elite-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .elite-visual-col {
        aspect-ratio: auto;
        padding: 80px 40px;
    }

    .elite-features-grid {
        grid-template-columns: 1fr;
    }

    .elite-footer {
        flex-wrap: wrap;
    }
}



@media (max-width: 768px) {
    body:has(.urgency-banner:not(.hidden)) .hero-content {
        padding-top: 12px;
    }

    .header {
        width: 95%;
        padding: 10px 15px;
    }

    .header-container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero-badge {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding: 8px 20px;
        margin-top: 30px;
        text-align: center;
        max-width: 340px;
        white-space: normal;
        line-height: 1.5;
        justify-content: center;
    }

    .badge-dash {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Footer Section */
.footer {
    padding: 50px 0 40px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 60px;
    /* Slightly larger in footer */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2));
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}



@media (max-width: 768px) {
    .simple-connection {
        padding: 60px 0;
    }

    .simple-connection-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .simple-connection-title {
        font-size: 36px;
    }

    .simple-connection-visual {
        width: 100%;
        height: 400px;
        justify-content: center;
    }

    .cropped-product-img {
        width: 150%;
        object-position: center;
    }




}

/* ============================================
   Product Gallery Section
   ============================================ */
.product-gallery-section {
    padding: 120px 60px;
    background: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: -20px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual gallery items */
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    /* Scroll animation initial state */
    opacity: 0;
    transform: translateY(40px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(30, 58, 138, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Zoom icon on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%) scale(0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

/* Placeholder state */
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    padding: 20px;
}

.gallery-placeholder span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

/* ============================================
   Lightbox
   ============================================ */
.gallery-lightbox {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-lightbox.active .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-counter {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Show More Button */
.gallery-show-more {
    display: block;
    margin: 40px auto 0;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-show-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ============================================
   Customer Reviews Section
   ============================================ */
.reviews-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aggregate-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.aggregate-rating .stars {
    color: #FFA500;
    font-size: 24px;
    letter-spacing: 2px;
}

.aggregate-rating .score {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.aggregate-rating .count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infinite-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

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

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

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

.review-card {
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.review-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.verified-badge {
    color: #00B171;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.review-stars {
    color: #FFA500;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   Meet the Founders Section
   ============================================ */
.founders-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.founders-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.founders-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founders-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.05);
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.founder-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.founder-title {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 16px;
}

.founder-quote::before,
.founder-quote::after {
    color: rgba(255, 255, 255, 0.1);
    font-size: 40px;
    position: absolute;
    line-height: 1;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.02) 0%, transparent 70%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding-right: 24px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon svg {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon .vertical-line {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    transform-origin: center;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .vertical-line {
    opacity: 0;
    transform: scaleY(0);
}

/* 
   Smooth height transition logic:
   - We transition max-height from 0 to something larger than the content will ever be.
   - We also transition padding and opacity.
*/
.faq-answer-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s ease,
        padding 0.4s ease;
    padding: 0 32px;
}

.faq-answer {
    padding-bottom: 24px;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 400px;
    /* Adjust if content is very long */
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Gallery responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-gallery-section {
        padding: 80px 24px;
    }

    .founders-grid {
        gap: 24px;
    }
}

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

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

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

/* ============================================
   CONVERSION IMPROVEMENTS
   ============================================ */

/* --- Urgency Banner --- */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.urgency-banner.hidden {
    transform: translateY(-100%);
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.urgency-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 4px 8px;
}

.urgency-close:hover {
    color: #ffffff;
}

/* Adjust header position when banner is visible */
body:has(.urgency-banner:not(.hidden)) .header {
    top: 60px;
}

/* --- Guarantee Badge --- */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    margin-top: 16px;
    letter-spacing: 0.3px;
}

.guarantee-badge svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* --- Sticky CTA Bar --- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease;
}

.sticky-cta-bar.active {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    font-size: 15px;
}

.sticky-cta-price {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.sticky-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.sticky-guarantee svg {
    color: #22c55e;
}

.sticky-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 120px 5%;
    background: #000000;
    text-align: center;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.8s ease, border-color 0.8s ease;
}

.comparison-table-wrapper.glow-active {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.comparison-table tbody td {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.highlight-col {
    background: rgba(34, 197, 94, 0.06) !important;
    color: #ffffff !important;
    position: relative;
}

.comparison-table thead .highlight-col {
    color: #22c55e !important;
    font-weight: 700;
}

.comparison-table thead .highlight-col::before {
    content: '★ ';
    color: #22c55e;
}

.check {
    color: #22c55e;
    font-weight: 600;
}

.cross {
    color: rgba(255, 255, 255, 0.35);
}

/* --- Email Capture Section --- */
.email-capture-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.04) 0%, transparent 60%);
    position: relative;
}

.email-capture-container {
    max-width: 700px;
    margin: 0 auto;
}

.email-capture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.email-capture-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.email-capture-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.email-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.email-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.email-input-group input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.email-submit-btn {
    padding: 16px 28px;
    white-space: nowrap;
    animation: none;
}

.email-privacy {
    display: block;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.email-toast {
    margin-top: 24px;
    padding: 14px 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}

.email-toast.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Hamburger Navigation --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        justify-self: end;
        order: -1;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav.mobile-open {
        display: flex !important;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    /* Sticky CTA responsive */
    .sticky-cta-info strong {
        display: none;
    }

    .sticky-guarantee {
        display: none;
    }

    /* Email capture responsive */
    .email-input-group {
        flex-direction: column;
    }

    .email-capture-card {
        padding: 40px 24px;
    }

    .email-capture-card h2 {
        font-size: 28px;
    }

    /* Comparison responsive */
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body:has(.urgency-banner:not(.hidden)) .hero-content {
        padding-top: 32px;
    }

    .urgency-banner {
        font-size: 12px;
        padding: 8px 16px;
    }

    .urgency-close {
        right: 8px;
    }

    /* Hero mobile fixes */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 11px;
        letter-spacing: 0.5px;
        padding: 8px 16px;
        gap: 6px;
        text-align: center;
        max-width: 220px;
        white-space: normal;
        line-height: 1.5;
        justify-content: center;
        margin-top: 20px;
    }

    .badge-dash {
        display: none;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* Feature cards — fix layout for mobile */
    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon-box {
        position: static;
        margin-top: 16px;
        width: 48px;
        height: 48px;
    }

    .feature-icon-box img {
        width: 24px;
        height: 24px;
    }

    /* Comparison table */
    .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 500px;
    }

    /* Product Elite card */
    .product-elite-card {
        padding: 32px 20px;
    }

    /* Founders */
    .founder-card {
        padding: 32px 20px;
    }

    .founder-image-wrapper {
        width: 120px;
        height: 120px;
    }

    /* FAQ */
    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    /* Sticky CTA mobile */
    .sticky-cta-bar {
        padding: 10px 16px;
    }

    .sticky-cta-content {
        gap: 12px;
    }

    .sticky-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* --- Exit-Intent Popup --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.popup-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 255, 255, 0.03);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.popup-overlay.active .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

.popup-visual {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.popup-product-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.popup-text {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.popup-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.popup-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0;
}

.popup-highlight {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.popup-form input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.popup-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.popup-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    animation: none;
    background: #ffffff;
    color: #000000;
    border: none;
}

.popup-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.popup-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

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

    .popup-visual {
        display: none;
    }

    .popup-text {
        padding: 40px 24px;
    }

    .popup-text h2 {
        font-size: 26px;
    }
}


/* ============================================
   Elite Gallery Styling
   ============================================ */

.elite-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
}

.elite-main-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, rgba(16, 20, 24, 0.8) 0%, rgba(4, 6, 8, 0.4) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.elite-main-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

.elite-main-img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.elite-main-image-container:hover .elite-main-img {
    transform: translateY(-8px) scale(1.05);
}

/* Thumbnails */
.elite-thumbnails {
    display: flex;
    flex-wrap: wrap;       /* Allow wrapping if too many items */
    justify-content: center; /* Center them nicely */
    gap: 10px;
    width: 100%;
}

.elite-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    padding: 6px;
}

.elite-thumb:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.08);
}

.elite-thumb.active {
    opacity: 1;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .elite-thumb {
        width: 48px;
        height: 48px;
        padding: 4px;
        border-radius: 10px;
    }
}

.footer-policy-links {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 28px;
}

.footer-policy-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-socials a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-2px);
}
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --text-gray: #888888;
    --bg-gray: #0a0a0a;
    --accent-color: #ffffff;
    --glass-bg: rgba(10, 10, 10, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    overflow-x: clip;
}

html.scroll-locked,
body.scroll-locked {
    overflow: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

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

.logo img {
    height: 32px;
    /* Standard header logo height */
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-white);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.6;
    position: relative;
    padding: 6px 16px;
    border-radius: 100px;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) inset;
    /* subtle inner glow for the pill */
}

/* GSAP Zoom Transition Section */
.product-showcase {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6vh;
    /* Approx 60px on 1000px height screens */
    position: relative;
    border-top: none;
    overflow: hidden;
}

.product-showcase .section-title {
    margin-bottom: 8vh;
    /* Reduced gap between title and image */
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    position: relative;
    text-align: center;
    width: 100%;
}

.zoom-bg-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    z-index: 1;
    overflow: visible;
}

.zoom-bg-image {
    width: 42vh;
    /* ≈415px on 991px viewport */
    height: auto;
    /* Maintains aspect ratio */
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    transform: scale(0.3);
    /* Starts at 0.3 per user request */
    will-change: transform;
    transform-origin: top center;
    position: relative;
    z-index: 2;
}

/* Callout Animations for Showcase */
.zoom-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: visible;
    /* Important to keep it snug around the image */
}

.callout {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.callout.active {
    opacity: 1;
}

.callout-point {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    flex-shrink: 0;
    background: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.9), 0 0 0 5px rgba(255, 255, 255, 0.25);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.callout.active .callout-point {
    transform: scale(1);
    animation: status-pulse-green 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.callout-line {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
    height: 2px;
    z-index: 1;
}

@keyframes status-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.callout-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.callout.active .callout-text {
    opacity: 1;
    transform: translateY(0);
}

/* Callout 1: Top Left (Camera) */
.callout-1 {
    top: 20%;
    right: 95%;
    /* anchor right edge of callout near left edge of device */
    flex-direction: row-reverse;
    /* dot on the right, line goes left */
}

.callout-1 .callout-line {
    width: 0;
    height: 1px;
    right: 3px;
    transform-origin: right center;
    /* Draw right-to-left */
    transition: width 0.6s ease 0.3s;
}

.callout-1.active .callout-line {
    width: 120px;
}

.callout-1 .callout-text {
    margin-right: 130px;
    transition-delay: 0.8s;
}

/* Callout 2: Top Right (Storage) */
.callout-2 {
    top: 6%;
    left: calc(100% + 20px);
    /* anchor left edge of callout near right edge of device */
}

.callout-2 .callout-line {
    width: 0;
    height: 1px;
    left: 3px;
    transform-origin: left center;
    /* Draw left-to-right */
    transition: width 0.6s ease 0.3s;
}

.callout-2.active .callout-line {
    width: 150px;
}

.callout-2 .callout-text {
    margin-left: 160px;
    transition-delay: 0.8s;
}

/* Callout 3: Middle Right (Buttons) */
.callout-3 {
    top: 45%;
    left: calc(100% + 30px);
    /* anchor left edge of callout to right edge of device */
}

.callout-3 .callout-line {
    width: 0;
    height: 1px;
    left: 3px;
    transform-origin: left center;
    /* Draw left-to-right */
    transition: width 0.6s ease 0.3s;
}

.callout-3.active .callout-line {
    width: 130px;
}

.callout-3 .callout-text {
    margin-left: 140px;
    transition-delay: 0.8s;
}

/* Callout 4: Bottom Left (Screen) */
.callout-4 {
    top: 63%;
    right: 90%;
    /* anchor right edge of callout to bottom left of screen */
    flex-direction: row-reverse;
    /* dot on the right, line goes left */
}

.callout-4 .callout-line {
    width: 0;
    height: 1px;
    right: 3px;
    transform-origin: right center;
    /* Draw right-to-left */
    transition: width 0.6s ease 0.3s;
}

.callout-4.active .callout-line {
    width: 130px;
}

.callout-4 .callout-text {
    margin-right: 140px;
    transition-delay: 0.8s;
}

/* Make callouts responsive and adhere to scaling */
@media (max-width: 768px) {
    .callout {
        display: none;
        /* Hide complex callouts on very small mobile screens */
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, #000000 100%);
    z-index: 1;
}

.hero-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #cccccc;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    /* vibrant green */
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    position: relative;
    top: -1px;
    /* visual alignment */
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: status-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes status-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }

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

.hero-title {
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 32px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #cccccc;
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

@keyframes btn-primary-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    animation: btn-primary-pulse 2.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.hero-bg-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    mask-image: linear-gradient(to right, transparent, black 20%);
    opacity: 0.8;
}

/* Background Grid (Optional enhancement) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Smooth Transitions */
section:not(.features) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

section:not(.features).visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid */
.grid-section {
    padding: 120px 5% 8vh;
    /* 8vh ≈ 80px on 991px viewport */
    background: #000000;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-2-col-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    position: relative;
    will-change: transform;
}

.feature-card {
    border-radius: 32px;
    padding: 60px;
    aspect-ratio: 860 / 470;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-card:hover,
.feature-card:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: #111111;
    box-shadow: 0 10px 40px -10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.feature-info h3 {
    font-size: clamp(24px, 2.5vw, 42px);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #ffffff;
}

.feature-info p {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 400;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #888888;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.language-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

.language-tags span.more {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.light-card .language-tags span {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444444;
}

.light-card .language-tags span.more {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
}

.dark-card {
    background: #0a0a0a;
}

.light-card {
    background: #0a0a0a;
}

.feature-icon-box {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    /* Modern translucent background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.feature-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure icons are white */
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Hover States */
.feature-card:hover .feature-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon-box img {
    opacity: 1;
    transform: scale(1.1);
}

.dark-card .feature-icon-box {
    background: rgba(45, 45, 47, 0.5);
}

.light-card .feature-icon-box {
    background: rgba(45, 45, 47, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.light-card .feature-icon-box img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.light-card:hover .feature-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Background Patterns - High Fidelity SVG */
.pattern-waves {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 1000 1000"><path d="M0 500 Q 250 400 500 500 T 1000 500" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="2"/><path d="M0 600 Q 250 500 500 600 T 1000 600" fill="none" stroke="white" stroke-opacity="0.08" stroke-width="1.5"/><path d="M0 400 Q 250 300 500 400 T 1000 400" fill="none" stroke="white" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-size: cover;
}

.pattern-grid {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="0.5"/></svg>');
    background-size: 40px 40px;
}

.pattern-ripples {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="100" fill="none" stroke="white" stroke-opacity="0.15" stroke-width="1"/><circle cx="500" cy="500" r="200" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="500" cy="500" r="300" fill="none" stroke="white" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-position: center;
    background-size: cover;
}

/* Scroll Animation Initial State */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    /* Feature cards — Native CSS Stacking for Mobile & Tablet */
    .features.grid-section {
        padding: 40px 5% 40px;
        overflow: visible;
        /* Needed for sticky */
    }

    .features.grid-section .section-title {
        position: sticky;
        top: 90px;
        z-index: 20;
        background: #000000;
        margin: -20px -20px 40px -20px;
        /* pull to edge for background coverage */
        padding: 20px;
        padding-bottom: 10px;
        margin-bottom: 40px;
        text-align: center;
    }

    .features-2-col-grid {
        gap: 0;
        /* Removing gap so cards can have margin to build height */
        overflow: visible;
        display: block;
        /* Removing flex so contents work well */
    }

    .card-row {
        display: contents;
        /* Flattens cards into grid, allowing them to stick relative to the whole section */
    }

    .feature-card {
        padding: 40px 30px;
        aspect-ratio: unset;
        position: sticky !important;
        top: 25vh;
        /* Sits centered in the viewport */
        background: #0a0a0a;
        margin-bottom: 80vh;
        /* Creates the scroll distance between each card */
        border: 1px solid #222;
        /* Add subtle border so they separate when stacked */
        transform: none !important;
        /* Override any GSAP inline styles */
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        /* Shadow for depth when covering */
    }

    /* Target specific cards for reliable z-index stacking */
    .card-row:nth-child(1) .feature-card:nth-child(1) {
        z-index: 1;
    }

    .card-row:nth-child(1) .feature-card:nth-child(2) {
        z-index: 2;
    }

    .card-row:nth-child(2) .feature-card:nth-child(1) {
        z-index: 3;
    }

    .card-row:nth-child(2) .feature-card:nth-child(2) {
        z-index: 4;
    }

    .card-row:nth-child(3) .feature-card:nth-child(1) {
        z-index: 5;
    }

    .card-row:nth-child(3) .feature-card:nth-child(2) {
        z-index: 6;
    }

    .card-row:nth-child(4) .feature-card:nth-child(1) {
        z-index: 7;
    }

    .card-row:nth-child(4) .feature-card:nth-child(2) {
        z-index: 8;
    }

    .card-row:nth-child(5) .feature-card:nth-child(1) {
        z-index: 9;
    }

    .card-row:nth-child(5) .feature-card:nth-child(2) {
        z-index: 10;
    }

    /* Transition for fading out covered cards */
    .feature-card {
        transition: opacity 0.3s ease, border-color 0.4s ease, transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    }

    /* Class applied via JS when a card is covered by the next one */
    .feature-card.is-covered {
        opacity: 0 !important;
        pointer-events: none;
        transform: scale(0.95) translateY(-20px) !important;
    }

    /* Remove massive margin from the very last card so the next section doesn't wait 80vh to start appearing */
    #final-mobile-card {
        top: 18vh !important;
        margin-bottom: 0 !important;
    }

    /* Tighten the tail of the stack so the final cards don't leave desktop-sized gaps on phones. */
    .card-row:nth-last-child(2) .feature-card:last-child {
        margin-bottom: 16vh;
    }

    /* Keep the final pair visually stacked instead of leaving a full-card scroll gap. */
    .card-row:last-child .feature-card:first-child {
        margin-bottom: 16vh;
    }

    /* Give the overall section extra padding so the very last card has enough scroll room to stay stacked before the next section pulls it away */
    .features-2-col-grid {
        padding-bottom: 40vh;
    }
}



/* Other Sections */
.simple-connection,
.headset-details,
.protect-ears,
.newsletter-blog,
.opinions {
    background: #000000;
}

.section-slice img {
    filter: brightness(0.9);
    /* Subtle dimming for premium feel */
}

/* Simple Connection Section */
.simple-connection {
    background-color: #000000;
    padding: 40px 0 100px 0;
    overflow: hidden;
    color: #ffffff;
}

.simple-connection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.simple-connection-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -15px;
    /* Pull video up slightly closer to title */
}

.simple-connection-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.simple-connection-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -15px;
    /* Pull button up slightly closer to video */
}

.simple-connection-visual {
    width: 100%;
    max-width: 1200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.8s ease-in-out, transform 0.8s ease-in-out;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.simple-connection-visual.focused-glow {
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.simple-connection-video {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* OmniTrans Elite Product Card Section */
.product-elite {
    background-color: #000000;
    padding: 100px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* subtle separation */
}

.product-elite-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Visual */
.elite-visual-col {
    background: #090909;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.elite-product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.elite-visual-col:hover .elite-product-img {
    transform: scale(1.05);
}

/* Right Column: Content */
.elite-content-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elite-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.elite-tag {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.elite-title {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
}

.elite-desc {
    color: #888888;
    font-size: 20px;
    line-height: 1.6;
    max-width: 90%;
    margin-top: 8px;
}



/* Features Grid */
.elite-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.elite-feature-item {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.elite-feature-item:hover {
    background: #151515;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.elite-icon-wrapper {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.elite-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

/* Ensure PNG icons in this block are white */
.elite-icon-wrapper img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.elite-feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.elite-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.elite-feature-text p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Footer Tagline */
.elite-footer {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 10px;
    color: #555555;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding-top: 10px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-item svg {
    color: #888888;
}

@media (max-width: 1024px) {
    .product-elite-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .elite-visual-col {
        aspect-ratio: auto;
        padding: 80px 40px;
    }

    .elite-features-grid {
        grid-template-columns: 1fr;
    }

    .elite-content-col {
        align-items: center;
    }

    .elite-footer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .elite-header {
        align-items: center;
        text-align: center;
    }

    .elite-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width: 768px) {
    body:has(.urgency-banner:not(.hidden)) .hero-content {
        padding-top: 12px;
    }

    .header {
        width: 95%;
        padding: 10px 15px;
    }

    .header-container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero-badge {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding: 8px 20px;
        margin-top: 30px;
        text-align: center;
        max-width: 340px;
        white-space: normal;
        line-height: 1.5;
        justify-content: center;
    }

    .badge-dash {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Footer Section */
.footer {
    padding: 80px 0 40px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 60px;
    /* Slightly larger in footer */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2));
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}



@media (max-width: 768px) {
    .simple-connection {
        padding: 60px 0;
    }

    .simple-connection-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .simple-connection-title {
        font-size: 36px;
    }

    .simple-connection-visual {
        width: 100%;
        height: 400px;
        justify-content: center;
    }

    .cropped-product-img {
        width: 150%;
        object-position: center;
    }




}

/* ============================================
   Product Gallery Section
   ============================================ */
.product-gallery-section {
    padding: 120px 60px;
    background: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: -20px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual gallery items */
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    /* Scroll animation initial state */
    opacity: 0;
    transform: translateY(40px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(30, 58, 138, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Zoom icon on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%) scale(0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

/* Placeholder state */
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    padding: 20px;
}

.gallery-placeholder span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

/* ============================================
   Lightbox
   ============================================ */
.gallery-lightbox {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-lightbox.active .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-counter {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Show More Button */
.gallery-show-more {
    display: block;
    margin: 40px auto 0;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-show-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ============================================
   Customer Reviews Section
   ============================================ */
.reviews-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aggregate-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.aggregate-rating .stars {
    color: #FFA500;
    font-size: 24px;
    letter-spacing: 2px;
}

.aggregate-rating .score {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.aggregate-rating .count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infinite-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

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

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

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

.review-card {
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.review-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.verified-badge {
    color: #00B171;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.review-stars {
    color: #FFA500;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   Meet the Founders Section
   ============================================ */
.founders-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.founders-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.founders-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founders-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.05);
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.founder-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.founder-title {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 16px;
}

.founder-quote::before,
.founder-quote::after {
    color: rgba(255, 255, 255, 0.1);
    font-size: 40px;
    position: absolute;
    line-height: 1;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.02) 0%, transparent 70%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding-right: 24px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon svg {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon .vertical-line {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    transform-origin: center;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .vertical-line {
    opacity: 0;
    transform: scaleY(0);
}

/* 
   Smooth height transition logic:
   - We transition max-height from 0 to something larger than the content will ever be.
   - We also transition padding and opacity.
*/
.faq-answer-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s ease,
        padding 0.4s ease;
    padding: 0 32px;
}

.faq-answer {
    padding-bottom: 24px;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 400px;
    /* Adjust if content is very long */
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Gallery responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-gallery-section {
        padding: 80px 24px;
    }

    .founders-grid {
        gap: 24px;
    }
}

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

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

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

/* ============================================
   CONVERSION IMPROVEMENTS
   ============================================ */

/* --- Urgency Banner --- */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.urgency-banner.hidden {
    transform: translateY(-100%);
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.urgency-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 4px 8px;
}

.urgency-close:hover {
    color: #ffffff;
}

/* Adjust header position when banner is visible */
body:has(.urgency-banner:not(.hidden)) .header {
    top: 60px;
}

/* --- Guarantee Badge --- */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    margin-top: 16px;
    letter-spacing: 0.3px;
}

.guarantee-badge svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* --- Sticky CTA Bar --- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease;
}

.sticky-cta-bar.active {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    font-size: 15px;
}

.sticky-cta-price {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.sticky-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.sticky-guarantee svg {
    color: #22c55e;
}

.sticky-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 120px 5%;
    background: #000000;
    text-align: center;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.8s ease, border-color 0.8s ease;
}

.comparison-table-wrapper.glow-active {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.comparison-table tbody td {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.highlight-col {
    background: rgba(34, 197, 94, 0.06) !important;
    color: #ffffff !important;
    position: relative;
}

.comparison-table thead .highlight-col {
    color: #22c55e !important;
    font-weight: 700;
}

.comparison-table thead .highlight-col::before {
    content: '★ ';
    color: #22c55e;
}

.check {
    color: #22c55e;
    font-weight: 600;
}

.cross {
    color: rgba(255, 255, 255, 0.35);
}

/* --- Email Capture Section --- */
.email-capture-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.04) 0%, transparent 60%);
    position: relative;
}

.email-capture-container {
    max-width: 700px;
    margin: 0 auto;
}

.email-capture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.email-capture-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.email-capture-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.email-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.email-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.email-input-group input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.email-submit-btn {
    padding: 16px 28px;
    white-space: nowrap;
    animation: none;
}

.email-privacy {
    display: block;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.email-toast {
    margin-top: 24px;
    padding: 14px 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}

.email-toast.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Hamburger Navigation --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        justify-self: end;
        order: -1;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav.mobile-open {
        display: flex !important;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    /* Sticky CTA responsive */
    .sticky-cta-info strong {
        display: none;
    }

    .sticky-guarantee {
        display: none;
    }

    /* Email capture responsive */
    .email-input-group {
        flex-direction: column;
    }

    .email-capture-card {
        padding: 40px 24px;
    }

    .email-capture-card h2 {
        font-size: 28px;
    }

    /* Comparison responsive */
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body:has(.urgency-banner:not(.hidden)) .hero-content {
        padding-top: 32px;
    }

    .urgency-banner {
        font-size: 12px;
        padding: 8px 16px;
    }

    .urgency-close {
        right: 8px;
    }

    /* Hero mobile fixes */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 11px;
        letter-spacing: 0.5px;
        padding: 8px 16px;
        gap: 6px;
        text-align: center;
        max-width: 220px;
        white-space: normal;
        line-height: 1.5;
        justify-content: center;
        margin-top: 20px;
    }

    .badge-dash {
        display: none;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* Feature cards — fix layout for mobile */
    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon-box {
        position: static;
        margin-top: 16px;
        width: 48px;
        height: 48px;
    }

    .feature-icon-box img {
        width: 24px;
        height: 24px;
    }

    /* Comparison table */
    .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 500px;
    }

    /* Product Elite card */
    .product-elite-card {
        padding: 32px 20px;
    }

    /* Founders */
    .founder-card {
        padding: 32px 20px;
    }

    .founder-image-wrapper {
        width: 120px;
        height: 120px;
    }

    /* FAQ */
    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    /* Sticky CTA mobile */
    .sticky-cta-bar {
        padding: 10px 16px;
    }

    .sticky-cta-content {
        gap: 12px;
    }

    .sticky-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* --- Exit-Intent Popup --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.popup-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 255, 255, 0.03);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.popup-overlay.active .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

.popup-visual {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.popup-product-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.popup-text {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.popup-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.popup-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0;
}

.popup-highlight {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.popup-form input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.popup-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.popup-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    animation: none;
    background: #ffffff;
    color: #000000;
    border: none;
}

.popup-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.popup-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

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

    .popup-visual {
        display: none;
    }

    .popup-text {
        padding: 40px 24px;
    }

    .popup-text h2 {
        font-size: 26px;
    }
}


/* ============================================
   Elite Gallery Styling
   ============================================ */

.elite-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
}

.elite-main-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, rgba(16, 20, 24, 0.8) 0%, rgba(4, 6, 8, 0.4) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.elite-main-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

.elite-main-img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.elite-main-image-container:hover .elite-main-img {
    transform: translateY(-8px) scale(1.05);
}

/* Thumbnails */
.elite-thumbnails {
    display: flex;
    flex-wrap: wrap;       /* Allow wrapping if too many items */
    justify-content: center; /* Center them nicely */
    gap: 10px;
    width: 100%;
}

.elite-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    padding: 6px;
}

.elite-thumb:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.08);
}

.elite-thumb.active {
    opacity: 1;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .elite-thumb {
        width: 48px;
        height: 48px;
        padding: 4px;
        border-radius: 10px;
    }
}

.footer-policy-links {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 28px;
}

.footer-policy-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}
.footer-policy-links {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 28px;
}

.footer-policy-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

/* Contact Us Popup */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-overlay.active {
    opacity: 1;
    visibility: visible;
}
.contact-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    overflow: hidden;
}
.contact-overlay.active .contact-card {
    transform: translateY(0);
    opacity: 1;
}
.contact-content-split {
    display: flex;
    flex-direction: row;
}
.contact-info-panel, .contact-form-panel {
    padding: 28px 30px;
    flex: 1;
}
.contact-info-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border-right: 1px solid rgba(255,255,255,0.05);
}
.contact-info-panel h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
.contact-info-panel p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-icon {
    font-size: 20px;
}
.contact-method strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.9);
}
.contact-method a {
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.contact-method a:hover {
    color: white;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
    .contact-content-split {
        flex-direction: column;
    }
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 30px 24px;
    }
    .contact-form-panel {
        padding: 30px 24px;
    }
}


/* Contact Popup - Banner & Team */
.contact-card {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.contact-card::-webkit-scrollbar {
    display: none;
}
.contact-banner {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
.contact-team {
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}
.contact-team h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
}
.contact-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-team-member {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    width: 100%;
    min-height: 100px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.contact-team-member:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.contact-team-member img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-team-member:hover img {
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.contact-team-member strong {
    display: block;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
}
.contact-team-member span {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.contact-team-member a {
    display: block;
    font-size: 14px;
    color: var(--primary-accent);
    text-decoration: none;
    white-space: nowrap;
}
.contact-team-member a:hover {
    color: white;
}
.contact-dept {
    margin-top: 16px;
}
.contact-form-panel h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}
.contact-info-panel span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .contact-banner {
        height: 120px;
    }
    .contact-team-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        width: 95%;
    }
}

/* Contact Page Specific Styles */
.contact-page-section {
    padding: 120px 20px 80px;
    background: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-page-section .contact-card {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ═══════════════════════════════════════
   GUARDIAN CARE PLAN SECTION
═══════════════════════════════════════ */
.care-plan-section {
    padding: 100px 5%;
    background: #050505;
    position: relative;
    overflow: hidden;
}
.care-plan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.care-plan-container {
    max-width: 900px;
    margin: 0 auto;
}
.care-plan-header {
    text-align: center;
    margin-bottom: 56px;
}
.care-plan-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.care-plan-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
}
.care-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.care-plan-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color 0.3s ease;
}
.care-plan-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.care-plan-premium {
    background: rgba(0, 230, 118, 0.06);
    border-color: rgba(0, 230, 118, 0.25);
}
.care-plan-premium:hover {
    border-color: rgba(0, 230, 118, 0.45);
}
.care-plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.free-badge {
    background: rgba(0,230,118,0.12);
    color: #00E676;
    border: 1px solid rgba(0,230,118,0.3);
}
.premium-badge {
    background: rgba(0, 230, 118, 0.15);
    color: #00E676;
    border: 1px solid rgba(0, 230, 118, 0.35);
}
.care-plan-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.care-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.price-period {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.care-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.care-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.feat-icon.yes {
    color: #00E676;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}
.feat-icon.no {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}
.care-plan-not-covered {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}
.not-covered-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.care-plan-not-covered ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.care-plan-not-covered li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.care-plan-cta {
    display: block;
    text-align: center;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    margin-top: auto;
}
.care-plan-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.care-plan-tagline {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .care-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   MOBILE OPTIMIZATION FIXES
═══════════════════════════════════════ */

/* Fix 1: Sticky CTA overlap — prevent content from being hidden */
html {
    scroll-padding-bottom: 70px;
}
body {
    padding-bottom: 70px;
}
.footer {
    padding-bottom: 20px !important;
}

/* Fix 2: Urgency banner close button — bigger touch target */
.urgency-close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

@media (max-width: 480px) {
    /* Fix 3: Hero typography — more breathing room on small screens */
    .hero h1,
    .hero-content h1 {
        font-size: clamp(28px, 8vw, 40px) !important;
        padding: 0 8px;
    }

    /* Fix 4: Comparison table — scroll hint */
    .comparison-table-wrapper {
        position: relative;
    }
    .comparison-table-wrapper::after {
        content: 'Swipe to compare →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: rgba(255,255,255,0.35);
        padding: 10px 0 0;
        letter-spacing: 0.5px;
    }

    /* Fix 5: Footer links — stack vertically */
    .footer-links {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center;
    }
    .footer-policy-links {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center;
    }

    /* Fix 6: Review card spacing */
    .review-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    /* Fix 7: Care Plan section — extra bottom margin for sticky CTA */
    .care-plan-section {
        padding-bottom: 100px;
    }

    /* Fix 8: Social icons — larger for mobile tapping */
    .footer-socials a {
        width: 48px;
        height: 48px;
    }
    .footer-socials svg {
        width: 22px;
        height: 22px;
    }
}

/* ═══════════════════════════════════════
   PLAN SELECTOR TOGGLE
═══════════════════════════════════════ */
.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}
.plan-option {
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    transition: all 0.25s ease;
    position: relative;
}
.plan-option:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}
.plan-option.active {
    border-color: #00E676;
    background: rgba(0,230,118,0.06);
}
.plan-option input[type="radio"] {
    display: none;
}
.plan-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.plan-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.plan-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}
.plan-option.active .plan-radio {
    border-color: #00E676;
}
.plan-option.active .plan-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00E676;
}
.plan-option-left strong {
    font-size: 14px;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}
.plan-includes {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: block;
}
.plan-price {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .plan-option {
        padding: 14px 16px;
    }
    .plan-option-left strong {
        font-size: 13px;
    }
    .plan-price {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════
   MOBILE CALLOUTS — DESIGNED FOR YOU
═══════════════════════════════════════ */
@media (max-width: 768px) {
    /* Allow callouts to be visible outside the container */
    .product-showcase {
        overflow: visible !important;
        min-height: auto !important;
        padding-bottom: 4vh !important;
    }
    .zoom-bg-container,
    .zoom-image-wrapper {
        overflow: visible !important;
    }

    /* Override the hide rule — show callouts on mobile */
    .callout {
        display: flex !important;
    }

    /* Shrink the device image */
    .zoom-bg-image {
        width: 28vh !important;
    }

    /* Smaller callout points */
    .callout-point {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
    }

    /* Hide complex connector lines on mobile — use short stubs instead */
    .callout-1.active .callout-line { width: 20px; }
    .callout-2.active .callout-line { width: 20px; }
    .callout-3.active .callout-line { width: 8px; }
    .callout-4.active .callout-line { width: 20px; }

    /* Adjust text margins to sit right after the short line */
    .callout-1 .callout-text { margin-right: 28px; }
    .callout-2 .callout-text { margin-left: 28px; }
    .callout-3 .callout-text { margin-left: 14px; }
    .callout-4 .callout-text { margin-right: 28px; }

    /* Smaller callout text — allow wrapping to 2 lines */
    .callout-text {
        font-size: 9px !important;
        padding: 3px 7px !important;
        white-space: normal;
        max-width: 80px;
        line-height: 1.3;
        text-align: center;
    }

    /* Push callout positions outside the device edge */
    .callout-1 { right: 86%; top: 10%; }
    .callout-2 { left: 88%; top: 2%; }
    .callout-3 { left: 93%; top: 38%; }
    .callout-4 { right: 85%; top: 60%; }
}

@media (max-width: 400px) {
    .zoom-bg-image {
        width: 24vh !important;
    }
    .callout-1.active .callout-line,
    .callout-2.active .callout-line,
    .callout-4.active .callout-line { width: 14px; }
    .callout-3.active .callout-line { width: 6px; }

    .callout-1 .callout-text { margin-right: 22px; }
    .callout-2 .callout-text { margin-left: 22px; }
    .callout-3 .callout-text { margin-left: 10px; }
    .callout-4 .callout-text { margin-right: 22px; }

    .callout-text {
        font-size: 8px !important;
        padding: 2px 6px !important;
    }

    .callout-1 { right: 80%; top: 10%; }
    .callout-2 { left: 85%; top: 2%; }
    .callout-3 { left: 90%; top: 38%; }
    .callout-4 { right: 80%; top: 60%; }
}

/* ═══════════════════════════════════════
   BULK ORDER TOAST
═══════════════════════════════════════ */
.bulk-toast {
    position: fixed;
    bottom: 90px;
    left: 24px;
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 340px;
    padding: 18px 20px;
    background: rgba(15, 20, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 230, 118, 0.08);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
}

.bulk-toast.visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.bulk-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}
.bulk-toast-close:hover {
    color: #fff;
}

.bulk-toast-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bulk-toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bulk-toast-content strong {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    padding-right: 16px;
}
.bulk-toast-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.bulk-toast-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    color: #00E676;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}
.bulk-toast-btn:hover {
    color: #69F0AE;
    gap: 8px;
}

@media (max-width: 768px) {
    .bulk-toast {
        left: 12px;
        right: 12px;
        bottom: 80px;
        max-width: none;
    }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 2px 12px rgba(0, 0, 0, 0.25); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

