/* V2 Home Page Theme */
:root {
    --v2-red: #FF4134;
    --v2-red-dark: #cc342a;
    --v2-red-light: #ff6b5f;
    --v2-bg: #000000;
    --v2-black: #000000;
    --v2-text-light: #ffffff;
    --v2-text-muted: #999999;
    --v2-border: rgba(255, 255, 255, 0.05);
    --v2-glass: rgba(255, 255, 255, 0.05);
}

@font-face {
    font-family: 'TragicGrotesk';
    src: url('../fonts2/TragicGrotesk-Regular-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body.v2-theme {
    background-color: var(--v2-bg);
    color: var(--v2-text-light);
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    padding: 0;
    /* 'clip' hides horizontal overflow but DOES NOT break position: sticky like 'hidden' does! */
    overflow-x: clip;
}

/* Base Typography */
.v2-theme h1,
.v2-theme h2,
.v2-theme h3 {
    font-family: 'TragicGrotesk', sans-serif;
    text-transform: none;
    /* Changed based on standard use of Grotesk fonts */
    margin: 0;
    line-height: 1.1;
}

/* Header V2 */
.v2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
}

.v2-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.v2-logo img {
    height: 30px;
    mix-blend-mode: difference;
}

.v2-nav-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(21, 21, 21, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.v2-nav-pill a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.v2-nav-pill a:hover,
.v2-nav-pill a.active {
    color: #ffffff;
}

.v2-cta-btn {
    font-family: 'Satoshi', sans-serif;
    background: #FF4134;
    color: #5d0600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 65, 52, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-cta-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 65, 52, 0.5);
}

.v2-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    mix-blend-mode: difference;
}

.v2-mobile-toggle span {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .v2-mobile-toggle {
        display: flex;
    }

    .v2-mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .v2-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .v2-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .v2-nav-menu {
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        width: 360px;
        max-width: 92vw;
        height: auto;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 999;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -10px);
        transform-origin: top center;
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
        padding: 24px;
        gap: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .v2-nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
    }

    /* Override Desktop Pill */
    .v2-nav-menu .v2-nav-pill {
        position: relative;
        left: 0;
        transform: none;
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        align-items: stretch;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 2px;
        padding: 0;
    }

    .v2-nav-menu .v2-nav-pill a {
        font-size: 17px;
        padding: 12px 15px;
        transition: all 0.2s ease;
        text-align: left;
        color: #444444;
        border-radius: 10px;
    }

    .v2-nav-menu .v2-nav-pill a:hover,
    .v2-nav-menu .v2-nav-pill a.active {
        color: #000000;
        background: rgba(0, 0, 0, 0.04);
        font-weight: 600;
    }

    .v2-nav-menu .v2-cta-btn {
        margin-top: 5px;
        font-size: 15px;
        padding: 14px;
        width: 100%;
        text-align: center;
    }
}


/* Section Common Container */
.v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.v2-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
    position: relative;
    background: transparent;
    z-index: 1;
    /* Establishes stacking context */
    overflow: visible;
}



/* Ensure all hero text/buttons stay on top of the radar rings/beam */
.v2-hero>h1,
.v2-hero>p,
.v2-hero>div {
    position: relative;
    z-index: 2;
}

.v2-radar-container {
    z-index: 0 !important;
    /* Forces radar below the text/buttons */
}

.v2-hero-badge {
    background: #000000;
    color: #888888;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-hero h1 {
    font-size: clamp(3.0rem, 6vw, 4.6rem);
    /* Increased minimum bound for mobile */
    margin-bottom: 22px;
    line-height: 0.988;
    letter-spacing: -4px;
    /* Apply full block gradient */
    background: linear-gradient(180deg, #ffffff 0%, #3f3f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.v2-hero p {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(16px, 4vw, 22px);
    /* Decreased minimum bound for mobile */
    /* Slightly smaller to match thin styling request if needed, but going with Satoshi explicitly */
    color: #999999;
    max-width: 600px;
    margin: 0 auto 30px;
    margin-top: -10px;
    line-height: 1.2;
}

.v2-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.v2-btn-white {
    font-family: 'Satoshi', sans-serif;
    background: #fff;
    color: #000;
    padding: 12px 26px;
    /* Smaller padding */
    border-radius: 6px;
    font-weight: 400;
    /* Normal weight */
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-btn-white:hover {
    background: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.v2-btn-outline {
    font-family: 'Satoshi', sans-serif;
    background: rgba(255, 255, 255, 0.03);
    color: #888888;
    padding: 12px 26px;
    /* Matching size */
    border-radius: 6px;
    font-weight: 400;
    /* Normal weight */
    text-decoration: none;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-btn-outline:hover {
    color: #ffffff;
    background: rgba(255, 65, 52, 0.08);
    /* Glows with theme red */
    border-color: rgba(255, 65, 52, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 65, 52, 0.15);
}

/* Radar Graphic */
.v2-radar-container {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    z-index: 0;
    /* Guarantee radar renders underneath */
}

.v2-radar-center {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 35% 35%, #333 0%, #000 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

.v2-radar-beam-wrapper {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 1;
    animation: radar-rotate 8s infinite linear;
    filter: drop-shadow(0 0 20px rgba(255, 65, 52, 0.6));
}

.v2-radar-beam {
    position: absolute;
    top: 0;
    left: -300px;
    width: 600px;
    height: 400px;
    /* Reduced from 600px so it's not too long */
    clip-path: polygon(42.5% 0%, 57.5% 0%, 95% 100%, 5% 100%);
    background: linear-gradient(180deg, rgba(255, 65, 52, 1) 0%, rgba(230, 45, 32, 0.6) 20%, rgba(153, 39, 31, 0) 100%);

    transform-origin: 50% 0%;
    pointer-events: none;
}

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

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

/* Radar rings */
.v2-radar-rings {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 0;
}

.v2-ring-static {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Radar Leads (Pinging dots) */
.v2-lead-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: -3px;
    background: #ffffff;
    border-radius: 50%;
    transform: rotate(var(--angle)) translateY(var(--dist));
    opacity: 0;
    box-shadow: 0 0 15px 5px rgba(255, 65, 52, 0.9);
    animation: lead-ping 8s infinite linear;
    animation-delay: var(--delay);
    z-index: 3;
}

@keyframes lead-ping {
    0% {
        opacity: 0;
        box-shadow: 0 0 0px 0px rgba(255, 65, 52, 0);
    }

    2% {
        opacity: 1;
        box-shadow: 0 0 20px 8px rgba(255, 65, 52, 1);
    }

    15% {
        opacity: 0.5;
        box-shadow: 0 0 10px 4px rgba(255, 65, 52, 0.5);
    }

    30% {
        opacity: 0;
        box-shadow: 0 0 0px 0px rgba(255, 65, 52, 0);
    }

    100% {
        opacity: 0;
    }
}

/* Client Logos Banner */
.v2-client-banner {
    padding: 0 40px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.v2-banner-box {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 0;
    overflow: hidden;
    position: relative;
    /* Add blur as requested */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* Sides very light, center one highlighted */
    -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
    mask: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
}

.v2-scroller {
    display: flex;
    width: max-content;
}

.v2-scroller-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    padding-left: 80px;
    animation: scroll-logos 40s infinite linear;
}

.v2-scroller:hover .v2-scroller-inner {
    animation-play-state: paused;
}

.v2-scroller-inner img {
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.v2-scroller-inner img:hover {
    filter: brightness(0) invert(1) opacity(0.9);
    transform: scale(1.05);
}

@keyframes scroll-logos {
    to {
        transform: translateX(-100%);
    }
}

/* Pain Points Scroll Reveal Section */
.v2-pain-points {
    position: relative;
    padding: 120px 0;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    /* Prevent horizontal scroll from large coins */
}

.v2-pain-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.v2-coin-left {
    position: absolute;
    top: 15%;
    left: clamp(20px, 4vw, 80px);
    width: clamp(180px, 20vw, 250px);
    /* Prevent layout shifts: browser can compute height from the image aspect ratio */
    aspect-ratio: 267 / 274;
    height: auto;
    filter: blur(12px);
    opacity: 0.85;
    transform: rotate(-15deg);
}

.v2-coin-right {
    position: absolute;
    bottom: 20%;
    right: clamp(20px, 4vw, 70px);
    width: clamp(150px, 15vw, 200px);
    /* coin2.webp is square */
    aspect-ratio: 383 / 383;
    height: auto;
    filter: blur(4px);
    /* Sharper than the left one to match design */
    opacity: 0.95;
    transform: rotate(20deg);
}

/* Extra coin — top right, smaller */
.v2-coin-extra {
    position: absolute;
    height: auto;
    pointer-events: none;
}

.v2-coin-extra-tr {
    top: 5%;
    right: clamp(120px, 14vw, 220px);
    width: clamp(90px, 10vw, 140px);
    aspect-ratio: 267 / 274;
    filter: blur(6px);
    opacity: 0.7;
    transform: rotate(12deg);
}

/* Extra coin — bottom left, larger & very blurred */
.v2-coin-extra-bl {
    bottom: 5%;
    left: clamp(100px, 13vw, 200px);
    width: clamp(130px, 16vw, 200px);
    aspect-ratio: 383 / 383;
    filter: blur(18px);
    opacity: 0.6;
    transform: rotate(-25deg);
}

.v2-pain-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.v2-reveal-text {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1;
    margin-bottom: 60px;
    color: #ffffff;
    opacity: 1;
    /* Reset to 1, as words individually handle opacity now */
    letter-spacing: -0.02em;
}

.v2-reveal-word {
    opacity: 0.15;
    /* Base default dark gray look */
    will-change: opacity;
    transition: opacity 0.1s linear;
    /* Smooth micro-transitions from scroll listener */
}

.v2-reveal-text:last-child {
    margin-bottom: 0;
}

/* Appointment Engine Section */
.v2-engine {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 5;
}

.v2-engine-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v2-engine-header {
    text-align: left;
    width: 100%;
}

.v2-engine-badge {
    display: inline-block;
    background: #FF4134;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.v2-engine-title {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 1100px;
}

.v2-engine-subtitle {
    font-size: clamp(18px, 1.5vw, 22px);
    color: #888888;
    line-height: 1.4;
    max-width: 800px;
    margin-bottom: 80px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
}

/* Overlapping Stats Showcase */
.v2-engine-stats {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 60px;
    height: 550px;
    justify-content: center;
}

.v2-engine-card {
    width: clamp(280px, 35vw, 380px);
    height: clamp(280px, 35vw, 380px);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;

    /* DEFAULT DIM/DARK STARTING STATE */
    background: #000000;
    border: 1px solid rgba(255, 65, 52, 0.05);
    /* Hidden faint red border */
    box-shadow: inset 0 0 50px rgba(255, 65, 52, 0.05);
    /* Faint dark red core */
    opacity: 0.2;
    /* Very dim initially waiting for scroll */
    transform: perspective(1000px) translateY(80px) rotateX(0deg) rotateY(0deg) scale(1);
    /* Lower starting position for slide up reveal, 3D setup */
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-engine-card.light {
    left: 15%;
    top: 0;
    z-index: 2;
}

.v2-engine-card.dark {
    right: 20%;
    top: 150px;
    z-index: 1;
}

/* --- THE 'BECOME WHITE' MAGIC ON REACH --- */
.v2-engine-card.is-active {
    opacity: 1;
    /* Track 3D Holographic CSS Variables continuously mapped from JS */
    transform: perspective(1000px) translateY(0) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) scale(var(--tilt-s, 1));

    /* Ignite into a brilliant animated shimmering glass */
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 35%, #e0e0e0 50%, #ffffff 65%, #ffffff 100%);
    background-size: 200% 200%;
    animation: box-shimmer 3s infinite linear;
    box-shadow: 0 0 60px rgba(255, 65, 52, 0.15), inset 0 0 30px rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes box-shimmer {
    0% {
        background-position: 100% 100%;
    }

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

/* Explosion Pulse Effect behind element when ignited! */
.v2-engine-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.v2-engine-card.is-active::after {
    animation: boom-pulse 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes boom-pulse {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.6;
        box-shadow: 0 0 80px 40px rgba(255, 65, 52, 0.6);
    }

    100% {
        width: 1000px;
        height: 1000px;
        opacity: 0;
        box-shadow: 0 0 10px 0px rgba(255, 65, 52, 0);
    }
}

.v2-engine-card.is-active:hover {
    background: #FF4134 !important;
    background-size: unset !important;
    animation: none !important;
    box-shadow: 0 20px 80px rgba(255, 65, 52, 0.5), 0 0 60px rgba(255, 65, 52, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    /* Transform scaling is taken over dynamically via the mousemove JS! */
}

.v2-engine-card.is-active:hover .v2-engine-number {
    background: #ffffff !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.v2-engine-card.is-active:hover .v2-engine-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.v2-engine-number {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    color: #4a2825;
    background: #4a2825;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.8s ease;
}

.v2-engine-card.is-active .v2-engine-number {
    opacity: 1;
    background: linear-gradient(180deg, #555555 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-engine-label {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -0.01em;
    color: #552722;
    transition: color 0.8s ease;
}

.v2-engine-card.is-active .v2-engine-label {
    color: #555555;
    opacity: 1;
}

/* Mobile responsive fallback */
@media (max-width: 900px) {
    .v2-engine-stats {
        height: auto;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin-top: 40px;
    }

    .v2-engine-card {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        width: 100%;
        max-width: 400px;
    }
}

/* Black breathing gap between consecutive video sections */
.v2-video-gap {
    width: 100%;
    height: clamp(80px, 12vh, 180px);
    background: #000000;
    position: relative;
    z-index: 2;
}

/* Cinematic Video Reveal Section */
.v2-video-reveal {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    background: #000000;
    /* Starts dark until video fades in */
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.v2-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Full-fill the frame perfectly */
    object-position: center center;
    opacity: 0;
    /* JS will drive from 0 to 1 on scroll */
    transform: scale(1.05);
    /* Reduced scale for faster initial render */
    will-change: opacity, transform;
    transition: opacity 0.15s linear, transform 0.15s linear;
}

/* Dark gradient overlay on top of video for legibility */
.v2-video-overlay {
    position: absolute;
    inset: 0;
    background:
        /* Top & bottom fade to black */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.7) 100%),
        /* Radial vignette: black edges, transparent center */
        radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Text sits above video and overlay */
.v2-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.v2-video-text {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(36px, 6vw, 80px);
    line-height: -0.1;
    font-weight: 400;
    letter-spacing: -0.06em;
    color: #ffffff;
    opacity: 0;
    /* JS-driven fade matches video */
    transform: translateY(40px);
    will-change: opacity, transform;
    transition: opacity 0.1s linear, transform 0.1s linear;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* Mobile: keep video headline on one line (no <br> line breaks) */
@media (max-width: 768px) {
    .v2-video-text br {
        display: none;
    }

    /* No scale on mobile – pure opacity for smooth GPU compositing */
    .v2-video-bg {
        transform: scale(1) !important;
        transition: opacity 0.2s linear !important;
    }
}

/* Spotlight Section - Circular Image masks */
.v2-spotlight {
    padding: 120px 0;
    position: relative;
}

.v2-spotlight-item {
    position: relative;
    width: 600px;
    height: 400px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-spotlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.v2-spotlight-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.v2-spotlight-text h2 {
    font-size: 40px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    max-width: 400px;
}

/* How We Help / Process Section (Sticky Layout) */
.v2-process-new {
    padding: 140px 0;
    position: relative;
    background: transparent;
}

.v2-process-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE - STICKY */
.v2-process-left-new {
    flex: 1;
    position: -webkit-sticky;
    position: sticky;
    /* Physically lock the center of this box perfectly to the center of the monitor viewport */
    top: max(20vh, calc(50vh - 120px));
    max-width: 450px;
}

.v2-process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF4134;
    color: #000000;
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    line-height: 1;
}

.v2-process-left-new h2 {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 20px;
    /* Gradient text from white to dark grey */
    background: linear-gradient(180deg, #ffffff 0%, #a4a4a4 60%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-process-left-new h2 span.highlight {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.v2-process-left-new p {
    font-size: clamp(16px, 1.2vw, 18px);
    color: #888888;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
    max-width: 400px;
}

/* RIGHT SIDE - SCROLLING CARDS */
.v2-process-right-new {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 30vh;
    /* Extra scroll space to let the last card pass center cleanly */
}

/* Base Card State */
.v2-process-card-new {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.96) translateX(20px);
    position: relative;
    overflow: hidden;
}

/* Active Card State (Glowing) */
.v2-process-card-new.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 65, 52, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 50px rgba(255, 65, 52, 0.08);
}

.v2-process-card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.v2-process-num-new {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 65, 52, 0.6);
    margin-bottom: 20px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.v2-process-card-new.is-active .v2-process-num-new {
    color: #FF4134;
    text-shadow: 0 0 15px rgba(255, 65, 52, 0.4);
}

.v2-process-title-new {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
    letter-spacing: -1px;
    transition: color 0.5s ease;
}

.v2-process-card-new.is-active .v2-process-title-new {
    color: #ffffff;
}

.v2-process-desc-new {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    transition: color 0.5s ease;
    max-width: 95%;
}

.v2-process-card-new.is-active .v2-process-desc-new {
    color: rgba(255, 255, 255, 0.7);
}

.v2-process-icon-new {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    flex-shrink: 0;
}

.v2-process-icon-new svg {
    width: 32px;
    height: 32px;
    transition: all 0.5s ease;
}

.v2-process-icon-new svg,
.v2-process-icon-new svg path,
.v2-process-icon-new svg circle,
.v2-process-icon-new svg ellipse {
    stroke: rgba(255, 255, 255, 0.5) !important;
}

.v2-process-card-new.is-active .v2-process-icon-new {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(255, 65, 52, 0.15);
    border: 1px solid rgba(255, 65, 52, 0.3);
    box-shadow: 0 0 20px rgba(255, 65, 52, 0.2);
}

.v2-process-card-new.is-active .v2-process-icon-new svg,
.v2-process-card-new.is-active .v2-process-icon-new svg path,
.v2-process-card-new.is-active .v2-process-icon-new svg circle,
.v2-process-card-new.is-active .v2-process-icon-new svg ellipse {
    stroke: #FF4134 !important;
}

@media (max-width: 900px) {
    .v2-process-container-new {
        flex-direction: column;
        gap: 40px;
    }

    .v2-process-left-new {
        position: relative;
        top: 0;
    }

    .v2-process-right-new {
        padding-bottom: 0px;
    }

    .v2-process-card-new {
        padding: 30px 20px;
        flex-direction: column-reverse;
        gap: 20px;
        transform: scale(1) translateX(0);
    }

    .v2-process-num-new {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .v2-process-icon-new {
        align-self: flex-start;
    }
}

/* ─── System Visual Hero ──────────────────────────────────────────── */
.v2-sysviz {
    padding: 100px 0 180px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.v2-sysviz-title-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 64px;
    padding: 0 20px;
}

.v2-sysviz-heading {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(38px, 5.5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-sysviz-heading span {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.v2-sysviz-desc {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* Stage / Diagram container */
.v2-sysviz-stage {
    position: relative;
    width: 540px;
    height: 540px;
    left: 50%;
    transform: translateX(-50%);
}

/* Deep red radial glow behind the center */
.v2-sysviz-bg-glow {
    position: absolute;
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 40, 20, 0.45) 0%, rgba(180, 20, 8, 0.25) 35%, rgba(140, 10, 0, 0.10) 60%, transparent 78%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: sysviz-glow-pulse 4s ease-in-out infinite;
}

@keyframes sysviz-glow-pulse {

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

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

/* Concentric dashed rings */
.v2-sysviz-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-sysviz.is-active .v2-sysviz-ring {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.sysviz-ring-xl {
    width: 640px;
    height: 640px;
    border: 1px solid rgba(255, 65, 52, 0.08);
}

.v2-sysviz.is-active .sysviz-ring-xl {
    transition-delay: 0.1s;
}

.sysviz-ring-lg {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 65, 52, 0.12);
}

.v2-sysviz.is-active .sysviz-ring-lg {
    transition-delay: 0.2s;
}

.sysviz-ring-md {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 65, 52, 0.25);
}

.v2-sysviz.is-active .sysviz-ring-md {
    transition-delay: 0.3s;
}

.sysviz-ring-sm {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 65, 52, 0.20);
}

.v2-sysviz.is-active .sysviz-ring-sm {
    transition-delay: 0.4s;
}

/* Cardinal icon nodes — placed on inner ring (radius = 160px) */
.v2-sysviz-node {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 65, 52, 0.35);
    background: rgba(20, 5, 4, 0.70);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.60);
    cursor: default;
    z-index: 3;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.v2-sysviz.is-active .v2-sysviz-node {
    opacity: 1;
    transform: scale(1);
}

.v2-sysviz-node:hover {
    border-color: rgba(255, 65, 52, 0.75);
    background: rgba(255, 65, 52, 0.16);
    color: #ffffff;
    box-shadow: 0 0 22px rgba(255, 65, 52, 0.40);
}

.v2-sysviz.is-active .v2-sysviz-node:hover {
    transform: scale(1.15);
}

/* node half-size = 24px; radius = 160px */
.sysviz-node-top {
    top: calc(50% - 160px - 24px);
    left: calc(50% - 24px);
}

.sysviz-node-right {
    top: calc(50% - 24px);
    left: calc(50% + 160px - 24px);
}

.sysviz-node-bottom {
    top: calc(50% + 160px - 24px);
    left: calc(50% - 24px);
}

.sysviz-node-left {
    top: calc(50% - 24px);
    left: calc(50% - 160px - 24px);
}

.v2-sysviz.is-active .sysviz-node-top {
    transition-delay: 0.4s;
}

.v2-sysviz.is-active .sysviz-node-right {
    transition-delay: 0.5s;
}

.v2-sysviz.is-active .sysviz-node-bottom {
    transition-delay: 0.6s;
}

.v2-sysviz.is-active .sysviz-node-left {
    transition-delay: 0.7s;
}

/* Horizontal Beam connecting left to right */
.v2-sysviz-beam-horizontal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 65, 52, 0.8) 18%, rgba(255, 65, 52, 1) 32%, rgba(255, 65, 52, 0) 43%, rgba(255, 65, 52, 0) 57%, rgba(255, 65, 52, 1) 68%, rgba(255, 65, 52, 0.8) 82%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 65, 52, 0.6);
    z-index: 2;
    transform: translate(-50%, -50%) scaleX(0);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1s, opacity 1s ease 1s;
}

.v2-sysviz.is-active .v2-sysviz-beam-horizontal {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 1;
}

/* Diamond stack container — centered absolutely */
.v2-sysviz-diamonds {
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    width: 0;
    height: 0;
    z-index: 20;
    animation: sysviz-float 3.8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 1.2s ease 1.2s;
}

.v2-sysviz.is-active .v2-sysviz-diamonds {
    opacity: 1;
}

@keyframes sysviz-float {

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

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

/* Each diamond: 90x90 square rotated 45deg and tilted to appear isometric */
.v2-sysviz-diamond {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid rgba(255, 65, 52, 0.4);
    transform: rotateX(60deg) rotateZ(45deg);
    top: -45px;
    left: -45px;
    opacity: 0;
    transition: opacity 0.8s, margin-top 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-sysviz.is-active .v2-sysviz-diamond {
    opacity: 1;
}

/* d1 = top/front (brightest), d5 = back/bottom (darkest).
   Adjusting margin-top to create the vertical stacking depth */
.v2-sysviz-d1 {
    margin-top: -48px;
    z-index: 5;
    background: rgba(255, 65, 52, 0.35);
    border: 1.5px solid rgba(255, 65, 52, 0.9);
    box-shadow: 0 0 30px rgba(255, 65, 52, 0.6), inset 0 0 15px rgba(255, 65, 52, 0.5);
    backdrop-filter: blur(2px);
}

.v2-sysviz.is-active .v2-sysviz-d1 {
    margin-top: -24px;
    transition-delay: 1.6s, 1.6s;
}

.v2-sysviz-d2 {
    margin-top: -36px;
    z-index: 4;
    background: rgba(200, 40, 30, 0.2);
    border-color: rgba(255, 65, 52, 0.6);
    box-shadow: 0 0 15px rgba(255, 65, 52, 0.3);
}

.v2-sysviz.is-active .v2-sysviz-d2 {
    margin-top: -12px;
    transition-delay: 1.5s, 1.5s;
}

.v2-sysviz-d3 {
    margin-top: -24px;
    z-index: 3;
    background: rgba(140, 20, 15, 0.15);
    border-color: rgba(255, 65, 52, 0.3);
}

.v2-sysviz.is-active .v2-sysviz-d3 {
    margin-top: 0px;
    transition-delay: 1.4s, 1.4s;
}

.v2-sysviz-d4 {
    margin-top: -12px;
    z-index: 2;
    background: rgba(80, 10, 5, 0.1);
    border-color: rgba(255, 65, 52, 0.15);
}

.v2-sysviz.is-active .v2-sysviz-d4 {
    margin-top: 12px;
    transition-delay: 1.3s, 1.3s;
}

.v2-sysviz-d5 {
    margin-top: 0px;
    z-index: 1;
    background: rgba(30, 5, 5, 0.05);
    border-color: transparent;
}

.v2-sysviz.is-active .v2-sysviz-d5 {
    margin-top: 24px;
    transition-delay: 1.2s, 1.2s;
}

/* Responsive: scale the stage on small screens */
@media (max-width: 600px) {
    .v2-sysviz-stage {
        transform: translateX(-50%) scale(0.8);
        margin: -80px 0;
    }
}

/* System Breakdown */
.v2-system-new {
    display: grid;
    /* Shrink the center main cards to a smaller, tight max-width, forcing the 1fr side boxes to stretch widely */
    grid-template-columns: 1fr minmax(260px, 360px) minmax(260px, 360px) minmax(260px, 360px) 1fr;
    grid-auto-rows: minmax(320px, auto);
    gap: 20px;
    padding: 100px 0 40px;
    text-align: center;
    background: transparent;
    position: relative;
    /* Stretch container larger than the screen and shift left, literally forcing the side boxes' borders to be rendered off-screen (cut off) */
    width: calc(100% + 60px);
    transform: translateX(-30px);
    margin-bottom: 0;
    overflow: hidden;
}

.v2-system-intro {
    grid-column: 2 / 5;
    grid-row: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.v2-system-headline {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(38px, 5.5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-system-headline span.highlight {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.v2-system-sub {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* Background grid items (empty boxes) */
.v2-bento-bg-box {
    background: rgba(14, 14, 14, 0.051);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.064);
    z-index: 1;
}

.v2-bento-card {
    background: #0000003f;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.129);
    box-shadow: 0 0 30px rgba(255, 65, 52, 0.05);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s, border-color 0.4s;
}

.v2-system-new.is-active .v2-bento-card {
    opacity: 1;
    transform: translateY(0);
}

.v2-system-new.is-active .v2-bento-card:hover {
    box-shadow: 0 0 50px rgba(255, 65, 52, 0.15);
    border-color: rgba(255, 65, 52, 0.5);
    transform: translateY(-5px);
    transition-delay: 0s, 0s, 0s, 0s;
}

.v2-bento-icon img {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-system-new.is-active .v2-bento-icon img {
    opacity: 1;
    transform: scale(1);
}

.v2-system-new.is-active .v2-bento-card-1 {
    transition-delay: 0.1s, 0.1s, 0s, 0s;
}

.v2-system-new.is-active .v2-bento-card-2 {
    transition-delay: 0.2s, 0.2s, 0s, 0s;
}

.v2-system-new.is-active .v2-bento-card-3 {
    transition-delay: 0.3s, 0.3s, 0s, 0s;
}

.v2-system-new.is-active .v2-bento-card-1 .v2-bento-icon img {
    transition-delay: 0.4s, 0.4s;
}

.v2-system-new.is-active .v2-bento-card-2 .v2-bento-icon img {
    transition-delay: 0.5s, 0.5s;
}

.v2-system-new.is-active .v2-bento-card-3 .v2-bento-icon img {
    transition-delay: 0.6s, 0.6s;
}

.v2-bento-card-title {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;

}

.v2-bento-card-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.1;

}

/* Specific card placements across 5 columns */
.v2-bento-card-1 {
    grid-column: 2;
    grid-row: 2;
    z-index: 2;
}

.v2-bento-card-2 {
    grid-column: 3;
    grid-row: 2;
    z-index: 2;
}

.v2-bento-card-3 {
    grid-column: 4;
    grid-row: 2;
    z-index: 2;
}

/* The background boxes placements */
.bg-box-1 {
    grid-column: 1;
    grid-row: 1;
}

.bg-box-2 {
    grid-column: 2;
    grid-row: 1;
}

.bg-box-3 {
    grid-column: 3;
    grid-row: 1;
}

.bg-box-4 {
    grid-column: 4;
    grid-row: 1;
}

.bg-box-5 {
    grid-column: 5;
    grid-row: 1;
}

.bg-box-6 {
    grid-column: 1;
    grid-row: 2;
}

.bg-box-7 {
    grid-column: 5;
    grid-row: 2;
}

.bg-box-8 {
    grid-column: 1;
    grid-row: 3;
}

.bg-box-9 {
    grid-column: 2;
    grid-row: 3;
}

.bg-box-10 {
    grid-column: 3;
    grid-row: 3;
}

.bg-box-11 {
    grid-column: 4;
    grid-row: 3;
}

.bg-box-12 {
    grid-column: 5;
    grid-row: 3;
}

/* ─── Per-box directional fades ─────────────────────────────────────
   Each box only fades on its outward-facing edge(s):
   • Top row    → fades out at the top
   • Bottom row → fades out at the bottom
   • Left col   → fades out at the left
   • Right col  → fades out at the right
   • Corners    → radial-gradient from the corner (no arc artifact)
   ──────────────────────────────────────────────────────────────── */

/* Top row – middle boxes: fade top edge only */
.bg-box-2,
.bg-box-3,
.bg-box-4 {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 65%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 65%);
}

/* Bottom row – middle boxes: fade bottom edge only */
.bg-box-9,
.bg-box-10,
.bg-box-11 {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 65%);
    mask-image: linear-gradient(to top, transparent 0%, black 65%);
}

/* Middle row – left box: fade left edge only */
.bg-box-6 {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 65%);
    mask-image: linear-gradient(to right, transparent 0%, black 65%);
}

/* Middle row – right box: fade right edge only */
.bg-box-7 {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 65%);
    mask-image: linear-gradient(to left, transparent 0%, black 65%);
}

/* CORNER boxes – two linear gradients per corner with intersect composite
   Top+Left fades intersect → corner is fully transparent, inner area is visible */

/* Top-left: fade from top AND from left */
.bg-box-1 {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 65%),
        linear-gradient(to right, transparent 0%, black 65%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 65%),
        linear-gradient(to right, transparent 0%, black 65%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}

/* Top-right: fade from top AND from right */
.bg-box-5 {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 65%),
        linear-gradient(to left, transparent 0%, black 65%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 65%),
        linear-gradient(to left, transparent 0%, black 65%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}

/* Bottom-left: fade from bottom AND from left */
.bg-box-8 {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 65%),
        linear-gradient(to right, transparent 0%, black 65%);
    mask-image: linear-gradient(to top, transparent 0%, black 65%),
        linear-gradient(to right, transparent 0%, black 65%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}

/* Bottom-right: fade from bottom AND from right */
.bg-box-12 {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 65%),
        linear-gradient(to left, transparent 0%, black 65%);
    mask-image: linear-gradient(to top, transparent 0%, black 65%),
        linear-gradient(to left, transparent 0%, black 65%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}

/* Icons Area */
.v2-bento-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    min-height: 140px;
}

.v2-bento-icon.left-align {
    align-items: flex-start;
    justify-content: flex-start;
}

/* Card 1: Dot Grid */
.bento-dot-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin: 0 auto;
}

.bento-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.bento-dot.active {
    background: var(--v2-red);
    box-shadow: 0 0 15px var(--v2-red);
}

/* Card 2: Chat/Pills */
.bento-pills {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.bento-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.bento-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v2-red);
    box-shadow: 0 0 8px var(--v2-red);
}

.bento-pill.right {
    align-self: flex-end;
    opacity: 0.5;
}

/* Card 3: Dashboard */
.bento-dash {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bento-dash-header {
    margin-bottom: 12px;
}

.bento-dash-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bento-dash-value {
    font-size: 44px;
    color: #fff;
    font-family: 'TragicGrotesk', sans-serif;
    display: block;
    line-height: 1.1;
    margin-top: 5px;
}

.bento-dash-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 5px;
}

.bento-dash-chart {
    width: 100%;
    height: 60px;
    margin-top: 15px;
}

.bento-dash-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

@media (max-width: 1200px) {
    .v2-system-new {
        grid-template-columns: repeat(3, 1fr);
        padding: 100px 20px;
        width: 100%;
        transform: none;
        /* Remove mask on tablet — no overflowing side boxes to hide */
        -webkit-mask-image: none;
        mask-image: none;
    }

    .v2-system-intro {
        grid-column: 1 / 4;
    }

    .bg-box-1,
    .bg-box-5,
    .bg-box-6,
    .bg-box-7,
    .bg-box-8,
    .bg-box-12,
    .bg-box-text-bg-left,
    .bg-box-text-bg-right {
        display: none;
    }

    .v2-bento-card-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .v2-bento-card-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .v2-bento-card-3 {
        grid-column: 3;
        grid-row: 2;
    }

    .bg-box-2 {
        grid-column: 1;
    }

    .bg-box-3 {
        grid-column: 2;
    }

    .bg-box-4 {
        grid-column: 3;
    }

    .bg-box-9 {
        grid-column: 1;
    }

    .bg-box-10 {
        grid-column: 2;
    }

    .bg-box-11 {
        grid-column: 3;
    }
}

@media (max-width: 900px) {
    .v2-system-new {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        width: 100%;
        transform: none;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .v2-system-intro {
        grid-column: 1;
    }

    .v2-bento-bg-box {
        display: none;
    }

    .v2-bento-card-1,
    .v2-bento-card-2,
    .v2-bento-card-3 {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Real Growth */
.v2-growth {
    padding: 100px 0;
    border-top: none;
}

.v2-growth-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2-growth-text h2 {
    /* font-size controlled by .v2-growth-heading */
    max-width: none;
}

.v2-growth-img {
    height: 300px;
    /* Placeholder for the coins image */
}

.v2-roi {
    padding: 180px 0 100px;
    text-align: center;
}

.v2-roi-heading-wrap {
    margin-bottom: 60px;
}

.v2-roi-heading-wrap h2 {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(38px, 5.5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a4a4a4 60%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-roi-heading-wrap h2 span {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.v2-roi-heading-wrap p {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    max-width: 520px;
    margin: 0 auto;
    margin-top: -10px;
    letter-spacing: -0.01em;
}

.v2-roi-card {
    background: #fff;
    border-radius: 12px;
    display: flex;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    color: #000;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.08);
}

.v2-roi-left,
.v2-roi-right {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.v2-roi-right {
    background: #FF4134;
    color: #fff;
    border-radius: 0 12px 12px 0;
}

.v2-roi-left {
    border-radius: 12px 0 0 12px;
}

.v2-roi-label {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 6px;
    line-height: 1;
}

.v2-roi-sublabel {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 35px;
    font-weight: 500;
}

.v2-roi-right .v2-roi-label {
    color: #fff;
}

.v2-roi-right .v2-roi-sublabel {
    color: rgba(255, 255, 255, 0.7);
}

.v2-roi-control-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin-bottom: 25px;
    height: 100px;
}

.v2-roi-btn-minus,
.v2-roi-btn-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #ffe9e8;
    color: #FF4134;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding-bottom: 2px;
    /* optical center */
}

.v2-roi-btn-minus:hover,
.v2-roi-btn-plus:hover {
    background: #ffd5d1;
}

.v2-roi-left .v2-roi-val {
    font-size: clamp(70px, 15vw, 120px);
    font-weight: 700;
    color: #111;
    line-height: 1;
    letter-spacing: -3px;
    font-family: 'TragicGrotesk', sans-serif;
    display: flex;
    align-items: center;
}

.v2-roi-right .v2-roi-val {
    font-size: clamp(56px, 13vw, 100px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'TragicGrotesk', sans-serif;
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

/* Custom UI Range Slider */
.v2-roi-slider-wrap {
    width: 70%;
    position: relative;
    height: 55px;
    display: flex;
    align-items: center;
}

.v2-roi-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffe3e0;
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.v2-roi-slider-fill {
    height: 100%;
    background: #ffb1ab;
    border-radius: 2px;
}

/* The actual native input is hidden but functional on top! */
#roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    background: transparent;
    position: relative;
    z-index: 5;
    margin: 0;
    cursor: pointer;
}

#roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF4134;
    box-shadow: 0 0 25px rgba(255, 65, 52, 0.9);
    border: medium none;
}

/* Equals Divider perfectly in center */
.v2-roi-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.v2-roi-equals {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 4px;
}

/* Toggle Switch */
.v2-roi-toggle-wrap {
    height: 55px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.v2-roi-toggle {
    background: #111111;
    border-radius: 40px;
    padding: 6px;
    display: flex;
    gap: 4px;
}

.v2-roi-toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 12px 32px;
    font-size: 15px;
    font-family: 'Satoshi', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v2-roi-toggle-btn.active {
    background: #FF4134;
    color: #fff;
}

/* Growth Section (Gold Coins) */
.v2-growth {
    padding: 40px 0 100px;
    position: relative;
    background: transparent;
    overflow: visible;
}

.v2-growth-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.v2-growth-text {
    flex: 1.5;
    position: relative;
    z-index: 2;
}

.v2-growth-heading {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(44px, 10vw, 96px);
    /* Balanced size for mobile */
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
    margin: 0;
}

.v2-gw-word {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Single massive gradient stitched across 3 rows */
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 100% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-gw-word.revealed {
    opacity: 1;
    transform: translateY(0);
}

.v2-gw-w1 {
    transition-delay: 0s;
    background-position: center 0%;
}

.v2-gw-w2 {
    transition-delay: 0.12s;
    background-position: center 50%;
    margin-top: -0.12em;
}

.v2-gw-w3 {
    transition-delay: 0.24s;
    background-position: center 100%;
    margin-top: -0.12em;
}

.v2-growth-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.v2-goldcoins-rotator {
    width: 950px;
    max-width: none;
    height: auto;
    transform-origin: center center;
    will-change: transform;
    /* Soften the edges and add depth */
    filter: drop-shadow(-40px 20px 60px rgba(0, 0, 0, 0.9));
    /* Pull heavily rightwards to crop identically to original image */
    margin-right: -500px;
}

/* Testimonials Section */
.v2-testimonial {
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.v2-test-heading-wrap h2 {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(38px, 5.5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a4a4a4 60%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-test-heading-wrap h2 span {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.v2-test-heading-wrap p {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.v2-test-slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 60px auto 0;
    /* Adding gap between heading paragraph and cards */
}

/* Card Stack container */
.v2-test-cards {
    position: relative;
    width: 620px;
    height: 360px;
    max-width: 90vw;
    margin: 0 auto;
    perspective: 1400px;
    /* Prevent text highlight on drag at the container level too */
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.v2-test-cards:active {
    cursor: grabbing;
}

/* Base card styles */
.v2-test-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 45px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Snappy spring — was 0.65s, now 0.45s with tighter cubic */
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
    /* Prevent text selection during drag on any card state */
    user-select: none;
    -webkit-user-select: none;
}

/* FRONT - active card */
.v2-test-card-active {
    z-index: 3;
    transform: scale(1) translateX(0) translateY(0) rotate(0deg);
    opacity: 1;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    filter: blur(0px);
}

/* MIDDLE - card peeking behind */
.v2-test-card-back {
    z-index: 2;
    transform: scale(0.93) translateX(-88px) translateY(32px) rotate(-2.5deg);
    opacity: 0.55;
    background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    filter: blur(2px);
}

/* FAR BACK - card furthest behind */
.v2-test-card-back-far {
    z-index: 1;
    transform: scale(0.86) translateX(-96px) translateY(44px) rotate(-5deg);
    opacity: 0.25;
    background: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    filter: blur(4px);
}

/* Quote text */
.v2-test-card-body h3 {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.v2-test-card-body p {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* Footer: avatar + name */
.v2-test-card-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 0;

    /* Stretch top border fully across the card bounds */
    margin-left: -45px;
    margin-right: -45px;
    padding-left: 45px;
    padding-right: 45px;

    /* Pull the footer closer to the absolute bottom edge */
    margin-bottom: -28px;
}

.v2-test-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    /* Smoother corner matching screenshot */
    background-color: #333;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.v2-test-author {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-test-author h4 {
    font-family: 'Satoshi', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 2px 0;
    line-height: 1.1;
}

.v2-test-author span {
    font-family: 'Satoshi', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.1;
}

/* Dot indicators */
.v2-test-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}

.v2-test-indicator {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.v2-test-indicator.active {
    width: 60px;
    background: #FF4134;
}

@media (max-width: 768px) {
    .v2-test-cards {
        height: 440px;
    }

    .v2-test-card {
        padding: 30px 25px;
    }

    .v2-test-card-back {
        transform: scale(0.95) translateX(-15px) translateY(20px) rotate(-2deg);
    }

    .v2-test-card-back-far {
        transform: scale(0.90) translateX(-30px) translateY(40px) rotate(-4deg);
    }

    .v2-test-card-footer {
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: -10px;
    }

    .v2-test-card-body h3 br,
    .v2-test-card-body p br {
        display: none;
        /* Remove forced breaks on narrow screens */
    }
}

/* Final CTA Section */
.v2-final-cta {
    padding: 80px 20px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* The dark rounded card with red border */
.v2-cta-card {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-height: 340px;
    background: #000;
    border: 1px solid rgba(180, 30, 20, 0.45);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Keep all original inner shadows */
    box-shadow:
        inset 0 0 40px rgba(255, 66, 52, 0.596),
        inset 60px 0 100px rgba(0, 0, 0, 0.6),
        inset -60px 0 100px rgba(0, 0, 0, 0.6),
        inset 0 -3px 0 rgba(255, 65, 52, 0.35),
        inset 0 3px 0 rgba(255, 65, 52, 0.12);
}

/*
 * Smooth animated glow: the blob MOVES (transform only — GPU composited)
 * Browsers CANNOT smoothly interpolate between gradient positions,
 * so we move a large fixed blob via translate instead.
 */
.v2-cta-card::before {
    content: '';
    position: absolute;
    width: 160%;
    height: 260%;
    top: -80%;
    left: -30%;
    z-index: 0;
    pointer-events: none;
    /* Single fixed radial gradient — center of blob is always at 50% 50% of the element */
    background: radial-gradient(ellipse 50% 40% at 50% 50%,
            rgba(235, 38, 12, 0.75) 0%,
            rgba(160, 20, 8, 0.4) 38%,
            transparent 68%);
    filter: blur(32px);
    will-change: transform;
    animation: cta-blob-drift 12s ease-in-out infinite;
}

@keyframes cta-blob-drift {
    0% {
        transform: translate(0%, 28%);
    }

    16% {
        transform: translate(18%, 10%);
    }

    33% {
        transform: translate(28%, 38%);
    }

    50% {
        transform: translate(8%, 52%);
    }

    66% {
        transform: translate(-16%, 38%);
    }

    83% {
        transform: translate(-18%, 12%);
    }

    100% {
        transform: translate(0%, 28%);
    }
}

/* Breathing bloom at the bottom — also pure transform */
.v2-cta-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 700px;
    height: 340px;
    background: radial-gradient(ellipse at center top,
            rgba(210, 32, 15, 0.78) 0%,
            rgba(140, 20, 10, 0.35) 50%,
            transparent 75%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    animation: cta-glow-breathe 7s ease-in-out infinite;
}

@keyframes cta-glow-breathe {
    0% {
        transform: translateX(-50%) scale(1) translateY(0px);
        opacity: 0.72;
    }

    50% {
        transform: translateX(-50%) scale(1.22) translateY(-18px);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(1) translateY(0px);
        opacity: 0.72;
    }
}

/* Content on top of the glow */
.v2-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
}

.v2-cta-headline {
    font-family: 'TragicGrotesk', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #ffffff47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-cta-sub {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
    line-height: 1.5;
}

/* Button row */
.v2-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* White solid button */
.v2-cta-btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 26px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.v2-cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* Ghost / outline button */
.v2-cta-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.v2-cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.v2-footer {
    background: #000000;
    /* Maintain spacing around footer so it doesn't touch screen edges */
    padding: 0 40px 40px;
}

/* White card body — fully rounded with its own red glow */
.v2-footer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 64px 80px 56px;
    color: #000000;
    position: relative;
    z-index: 2;
    /* The soft red/pink glow surrounding the card */
    box-shadow: 0 0 40px rgba(255, 65, 52, 0.2);
    /* Animation base */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.v2-footer.is-active .v2-footer-card {
    opacity: 1;
    transform: translateY(0);
}

/* ─── TOP ROW: logo left | tagline right ─── */
.v2-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Large vertical gap below before the divider */
    margin-bottom: 64px;
}

/* Logo icon + "Leads Edge" text */
.v2-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.v2-footer-logo-full {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Bold tagline — left-aligned text, pushed to the right half */
.v2-footer-tagline {
    font-family: 'Satoshi', sans-serif;
    /* Increased per user request */
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.4;
    color: #000000;
    text-align: left;
    max-width: 600px;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ─── DIVIDER ─── */
.v2-footer-divider {
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 52px;
}

/* ─── BOTTOM ROW: contact left | cols pushed right ─── */
.v2-footer-bottom {
    display: flex;
    align-items: flex-start;
    /* Contact stays left, cols group is pushed far right */
    justify-content: space-between;
}

/* Contact block (left side) */
.v2-footer-contact {
    flex-shrink: 0;
}

.v2-footer-contact h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.v2-footer-contact p {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.65;
    margin: 0 0 10px;
}

.v2-footer-contact p:last-child {
    margin-bottom: 0;
}

/* ─── 3-COLUMN LINKS GROUP (right side) ─── */
.v2-footer-cols {
    display: flex;
    /* Columns are spread across the right half */
    gap: 70px;
}

.v2-footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Bold column header */
.v2-footer-col h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

/* Column links */
.v2-footer-col a {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}

.v2-footer-col a:hover {
    color: #FF4134;
}

/* ─── RED COPYRIGHT BAR ─── */
.v2-footer-bar {
    background: #FF4134;
    text-align: center;
    padding: 30px 40px 15px;
    /* Fully rounded at the bottom */
    border-radius: 0 0 20px 20px;
    /* Push it up underneath the white card */
    margin-top: -20px;
    /* Make it narrower than the card width by 24px on each side */
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
    z-index: 1;
}

.v2-footer-bar span {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0;
}

.v2-footer-bar {
    /* Animation base */
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

.v2-footer.is-active .v2-footer-bar {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .v2-footer-card {
        padding: 52px 48px 44px;
    }

    .v2-footer-cols {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .v2-footer {
        padding: 0 16px 24px;
    }

    .v2-footer-card {
        padding: 44px 28px 36px;
    }

    .v2-footer-bar {
        padding: 16px 20px 10px;
        margin-left: 16px;
        margin-right: 16px;
        margin-top: -10px;
    }

    .v2-footer-top {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 40px;
    }

    .v2-footer-tagline {
        max-width: 100%;
        font-size: 20px;
    }

    .v2-footer-bottom {
        flex-direction: column;
        gap: 40px;
    }

    .v2-footer-cols {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

    .v2-footer-col {
        flex: 1;
        min-width: 0;
    }

    .v2-footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .v2-footer-col a {
        font-size: 13px;
        line-height: 1.4;
    }

    .v2-testimonial {
        padding: 60px 0 40px;
    }

    .v2-final-cta {
        padding: 40px 20px 80px;
    }
}

@media (max-width: 900px) {
    .v2-trusted-inner {
        flex-direction: column;
        gap: 40px;
    }

    .v2-process-container {
        grid-template-columns: 1fr;
    }

    .v2-roi-card {
        flex-direction: column;
    }

    .v2-roi-left {
        border-radius: 12px 12px 0 0;
        padding: 40px 20px 60px;
    }

    .v2-roi-right {
        border-radius: 0 0 12px 12px;
        padding: 60px 20px 40px;
    }

    .v2-roi-control-group,
    .v2-roi-slider-wrap {
        width: 100%;
        max-width: 320px;
    }

    .v2-metrics-bar {
        grid-template-columns: 1fr;
    }

    .v2-growth {
        padding-bottom: 20px;
    }

    .v2-growth-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
        padding: 0 30px;
    }

    .v2-growth-img {
        justify-content: center;
        height: 250px;
        /* Restrict DOM height so it doesn't push ROI down */
        align-items: flex-start;
    }

    .v2-goldcoins-rotator {
        margin-right: 0;
        width: 500px;
        /* Scale down the giant image footprint for mobile */
    }

    .v2-roi {
        padding-top: 60px;
    }
}

/* --- SECTION REVEAL ANIMATIONS (Engine, ROI, Testimonials, CTA) --- */
.v2-engine .v2-engine-badge,
.v2-engine .v2-engine-title,
.v2-engine .v2-engine-subtitle,
.v2-roi .v2-roi-heading-wrap,
.v2-roi .v2-roi-card,
.v2-testimonial .v2-test-heading-wrap,
.v2-testimonial .v2-test-slider-wrap,
.v2-final-cta .v2-cta-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Staggered delays for child elements to create smooth waterfall effect */
.v2-engine .v2-engine-title {
    transition-delay: 0.15s;
}

.v2-engine .v2-engine-subtitle {
    transition-delay: 0.3s;
}

.v2-roi .v2-roi-card {
    transition-delay: 0.15s;
}

.v2-testimonial .v2-test-slider-wrap {
    transition-delay: 0.15s;
}

/* Active / Revealed states */
.v2-engine.is-active .v2-engine-badge,
.v2-engine.is-active .v2-engine-title,
.v2-engine.is-active .v2-engine-subtitle,
.v2-roi.is-active .v2-roi-heading-wrap,
.v2-roi.is-active .v2-roi-card,
.v2-testimonial.is-active .v2-test-heading-wrap,
.v2-testimonial.is-active .v2-test-slider-wrap,
.v2-final-cta.is-active .v2-cta-card {
    opacity: 1;
    transform: translateY(0);
}

/* Unique enhancement for Final CTA glow upon reveal */
.v2-final-cta .v2-cta-glow {
    opacity: 0;
    transform: translateX(-50%) scale(0.8) translateY(20px);
    transition: opacity 1.5s ease 0.4s, transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.v2-final-cta.is-active .v2-cta-glow {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* --- HEADER & HERO LOAD ANIMATIONS --- */
/* Initial Hidden States */
.v2-header .v2-logo,
.v2-nav-pill a,
.v2-header .v2-cta-btn,
.v2-mobile-toggle,
.v2-hero-badge,
.hero-title,
.v2-hero p,
.v2-hero-buttons .v2-btn-white,
.v2-hero-buttons .v2-btn-outline,
.v2-radar-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-header .v2-logo,
.v2-nav-pill a,
.v2-header .v2-cta-btn,
.v2-mobile-toggle {
    transform: translateY(-15px);
    /* Header elements slide down */
}

/* Page Loaded - Header Stagger */
body.page-loaded .v2-header .v2-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

body.page-loaded .v2-nav-pill a:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

body.page-loaded .v2-nav-pill a:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.20s;
}

body.page-loaded .v2-nav-pill a:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

body.page-loaded .v2-nav-pill a:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.30s;
}

body.page-loaded .v2-nav-pill a:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

body.page-loaded .v2-nav-pill a:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.40s;
}

body.page-loaded .v2-nav-pill a:nth-child(7) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

body.page-loaded .v2-header .v2-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.50s;
}

body.page-loaded .v2-mobile-toggle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.20s;
}

/* Page Loaded - Hero Stagger */
body.page-loaded .v2-hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

body.page-loaded .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

body.page-loaded .v2-hero p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

body.page-loaded .v2-hero-buttons .v2-btn-white {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

body.page-loaded .v2-hero-buttons .v2-btn-outline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

body.page-loaded .v2-radar-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* --- V2 POPUP REDESIGN --- */
.v2-popup-overlay {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
}

.v2-popup-container {
    background: linear-gradient(145deg, #181818 0%, #111111 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    position: relative;
    max-width: 680px !important;
    width: 90% !important;
    padding: 45px 50px 35px !important;
    overflow: visible !important;
}

/* Subtle red glow behind the popup container to match the image */
.v2-popup-container::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(200, 30, 20, 0.4), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.v2-popup-close {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    background: rgba(255, 65, 52, 0.2) !important;
    border: none !important;
    color: #FF4134 !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.v2-popup-close:hover {
    background: rgba(255, 65, 52, 0.4) !important;
}

.v2-popup-close svg {
    width: 12px;
    height: 12px;
}

.v2-popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.v2-popup-title {
    font-family: 'TragicGrotesk', sans-serif !important;
    font-size: 38px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.04em !important;
    text-shadow: none !important;
}

.v2-popup-subtitle {
    font-family: 'Satoshi', sans-serif !important;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.v2-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.v2-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.v2-form-group label {
    font-family: 'Satoshi', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.v2-form-group input {
    background: #2a2a2a !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-family: 'Satoshi', sans-serif !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    width: 100%;
}

.v2-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.v2-form-group input:focus {
    border-color: rgba(255, 255, 255, 0.15) !important;
    outline: none !important;
}

/* Custom Form Dropdown */
.v2-custom-select {
    position: relative;
    width: 100%;
}

.v2-select-selected {
    background: #2a2a2a !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    padding-right: 40px !important;
    color: #ffffff !important;
    font-family: 'Satoshi', sans-serif !important;
    font-size: 14px !important;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease !important;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff' stroke-opacity='0.4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.v2-select-selected:hover,
.v2-select-selected.select-arrow-active {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.v2-select-selected.select-arrow-active {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 1L9 5' stroke='%23ffffff' stroke-opacity='0.4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.v2-select-items {
    position: absolute;
    background-color: #1f1f1f;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.v2-select-hide {
    display: none;
}

.v2-select-items div {
    color: #ffffff;
    padding: 12px 16px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v2-select-items div:hover {
    background-color: rgba(255, 65, 52, 0.1);
    color: #ffffff;
}

.v2-select-items .same-as-selected {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FF4134;
}

/* Phone input */
.v2-phone-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Checkbox styling */
.v2-consent-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.v2-consent-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.v2-consent-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.v2-consent-label {
    font-family: 'Satoshi', sans-serif !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-align: left;
}

/* Submit Button */
.v2-popup-submit {
    background: #ffffff !important;
    color: #5c0f0f !important;
    /* Extremely dark red matching image */
    font-family: 'Satoshi', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 34px !important;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.v2-popup-submit:hover {
    background: #f0f0f0 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 600px) {
    .v2-popup-container {
        padding: 30px 20px 25px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .v2-popup-container::-webkit-scrollbar {
        width: 4px;
    }

    .v2-popup-container::-webkit-scrollbar-thumb {
        background: rgba(255, 65, 52, 0.3);
        border-radius: 4px;
    }

    .v2-popup-header {
        margin-bottom: 16px;
    }

    .v2-popup-title {
        font-size: 32px !important;
        margin-bottom: 4px !important;
    }

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

    .v2-popup-form {
        gap: 8px;
    }

    .v2-form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .v2-form-group {
        gap: 4px;
    }

    .v2-form-group input,
    .v2-select-selected {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    .v2-select-selected {
        padding-right: 36px !important;
    }

    .v2-select-items div {
        padding: 10px 14px;
        font-size: 13px;
    }

    .v2-consent-wrap {
        margin-top: 4px;
        gap: 8px;
    }

    .v2-consent-label {
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .v2-popup-submit {
        margin-top: 10px;
        padding: 12px 24px !important;
        width: 100% !important;
    }

    .v2-footer-tagline br {
        display: none;
    }
}