﻿/* -------------------------------------------------------------------------- */
/*                                CORE ENGINE                                 */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --color-obsidian: #000000;
    --color-white: #ffffff;
    --color-neon-green: #22c55e;
    --color-gray-100: #f5f5f5;
    --color-gray-400: #a3a3a3;
    --color-gray-600: #666666;
    --color-gray-800: #1a1a1a;
    --font-primary: 'Inter', sans-serif;
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    font-size: clamp(6.25px, calc(100vw / 1440 * 10), 16px);
    background-color: var(--color-obsidian);
    color: var(--color-white);
    overflow-x: hidden;
    min-height: 100dvh;
}

@media (max-width: 768px) {
    html {
        font-size: calc(100vw / 390 * 10);
    }
}

body {
    font-family: var(--font-primary);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #0a0a0a;
    color: #ffffff;
}

/* -------------------------------------------------------------------------- */
/*                                VISUAL LUXURY                               */
/* -------------------------------------------------------------------------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Particle Effects */
.particle-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: particleFloat linear forwards;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift, 0));
        opacity: 0;
    }
}

.case-visual {
    position: relative;
    height: 22rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.05);
}

.revenue-chart {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.chart-visual {
    width: 100%;
    height: 100%;
}

/* FOMO Notification */
.fomo-notification {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(15rem);
    opacity: 0;
    transition: all 0.5s var(--ease-smooth);
}

.fomo-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.fomo-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fomo-text {
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 500;
}

.fomo-time {
    font-size: 1.1rem;
    color: var(--color-gray-600);
}

/* Cursor Enhancements */
.cursor-spotlight {
    position: fixed;
    width: 100rem;
    height: 100rem;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

.cursor-trail {
    position: fixed;
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(34, 197, 94, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    box-shadow: 0 0 1rem rgba(34, 197, 94, 0.8);
}

.mesh-background {
    position: absolute;
    inset: 0;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12rem);
    opacity: 0.35;
}

.orb-1 {
    top: -15%;
    left: -15%;
    width: 90rem;
    height: 90rem;
    background: radial-gradient(circle, #1a1a1a, transparent);
    animation: float 12s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: -20%;
    right: -20%;
    width: 100rem;
    height: 100rem;
    background: radial-gradient(circle, #0f172a, transparent);
    animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    to {
        transform: translate(6rem, 6rem);
    }
}

/* -------------------------------------------------------------------------- */
/*                                TRUST BAR                                   */
/* -------------------------------------------------------------------------- */
.trust-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(1rem);
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.container-fluid {
    max-width: 136rem;
    margin: 0 auto;
    padding: 0 5rem;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge,
.trust-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--color-gray-400);
}

.trust-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-left: -6rem;
}

.trust-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex: 1;
}

.trust-badge svg {
    flex-shrink: 0;
}

.urgency-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--color-neon-green);
    font-weight: 600;
}

.countdown-timer {
    margin-left: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(34, 197, 94, 0.1);
    border: 0.1rem solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

.urgency-dot {
    width: 0.6rem;
    height: 0.6rem;
    background: var(--color-neon-green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.4;
    }
}

/* -------------------------------------------------------------------------- */
/*                                HERO LAYOUT                                 */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 8rem;
    overflow: visible;
    background: transparent;
}

.container {
    width: 100%;
    max-width: 136rem;
    margin: 0 auto;
    padding: 0 5rem;
    z-index: 10;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8rem;
    align-items: center;
}

/* -------------------------------------------------------------------------- */
/*                                LEFT COLUMN                                 */
/* -------------------------------------------------------------------------- */
.col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Staggered Entrance Animations */
[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(3rem);
    animation: fadeUp 0.8s var(--ease-smooth) forwards;
}

[data-delay="100"] {
    animation-delay: 0.1s;
}

[data-delay="200"] {
    animation-delay: 0.2s;
}

[data-delay="300"] {
    animation-delay: 0.3s;
}

[data-delay="400"] {
    animation-delay: 0.4s;
}

[data-delay="500"] {
    animation-delay: 0.5s;
}

[data-delay="600"] {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metallic-headline {
    font-size: 6.5rem;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;

    background-image: linear-gradient(120deg, #b0b0b0 0%, #ffffff 50%, #909090 100%);
    background-size: 120%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.metallic-headline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.9) 0%, transparent 35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.metallic-headline:hover::after {
    opacity: 1;
}

.signature-container {
    width: 18rem;
    margin-bottom: 1.8rem;
}

.signature-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawSig 2.5s var(--ease-smooth) forwards 0.5s;
}

@keyframes drawSig {
    to {
        stroke-dashoffset: 0;
    }
}

.subheadline {
    font-size: 1.7rem;
    line-height: 1.45;
    color: var(--color-gray-400);
    max-width: 52rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

/* Social Proof Mini */
.social-proof-mini {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    backdrop-filter: blur(1rem);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 0.2rem solid var(--color-obsidian);
    margin-left: -1rem;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 0.2rem solid var(--color-obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: -1rem;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rating {
    font-size: 1.4rem;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-count {
    color: var(--color-white);
    font-weight: 600;
}

.proof-subtext {
    font-size: 1.2rem;
    color: var(--color-gray-600);
    font-style: italic;
}

/* CTA Group */
.cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-magnetic-wrapper {
    display: inline-block;
    position: relative;
}

.cta-primary {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.cta-border-wrapper {
    position: relative;
    padding: 0.2rem;
    border-radius: 10rem;
    background: var(--color-obsidian);
    overflow: hidden;
}

.conic-border {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0deg 70deg, var(--color-white) 80deg 100deg, transparent 110deg 360deg);
    animation: rotateConic 3s linear infinite;
    will-change: transform;
}

@keyframes rotateConic {
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    background: var(--color-white);
    color: var(--color-obsidian);
    padding: 2rem 4rem;
    border-radius: 10rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s var(--ease-elastic);
}

.cta-primary:hover .cta-content {
    transform: scale(1.05);
    box-shadow: 0 0 3rem rgba(255, 255, 255, 0.3);
}

.cta-primary:active .cta-content {
    transform: scale(0.98);
}

.cta-text {
    font-size: 1.6rem;
    font-weight: 700;
}

.cta-subtext {
    font-size: 1.1rem;
    opacity: 0.6;
}

.cta-primary:hover .cta-content {
    transform: scale(1.05);
    transition: transform 0.3s var(--ease-elastic);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 10rem;
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-secondary:hover::before {
    transform: translateX(100%);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.2rem);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Client Logos */
.client-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logos-label {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.logos-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: translateY(-0.2rem);
}

/* -------------------------------------------------------------------------- */
/*                                RIGHT COLUMN                                */
/*                       TRANSFORMATION PORTAL - PSYCHOLOGY                   */
/* -------------------------------------------------------------------------- */
.col-right {
    height: 55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    position: relative;
}

/* ==================== TRANSFORMATION PORTAL ==================== */
.transformation-portal {
    position: relative;
    width: 50rem;
    height: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------- CHAOS ZONE (Pain State) -------------------- */
.chaos-zone {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15rem;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chaos-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%);
    box-shadow:
        0 0 1.5rem rgba(239, 68, 68, 0.6),
        0 0 3rem rgba(239, 68, 68, 0.3);
    opacity: 0.8;
}

.cp-1 {
    width: 1.2rem;
    height: 1.2rem;
    animation: chaosFloat1 3s ease-in-out infinite;
}

.cp-2 {
    width: 0.8rem;
    height: 0.8rem;
    animation: chaosFloat2 2.5s ease-in-out infinite 0.3s;
}

.cp-3 {
    width: 1rem;
    height: 1rem;
    animation: chaosFloat3 3.2s ease-in-out infinite 0.6s;
}

.cp-4 {
    width: 0.6rem;
    height: 0.6rem;
    animation: chaosFloat4 2.8s ease-in-out infinite 0.2s;
}

.cp-5 {
    width: 1.4rem;
    height: 1.4rem;
    animation: chaosFloat5 3.5s ease-in-out infinite 0.4s;
}

.cp-6 {
    width: 0.5rem;
    height: 0.5rem;
    animation: chaosFloat6 2.2s ease-in-out infinite 0.7s;
}

.cp-7 {
    width: 0.9rem;
    height: 0.9rem;
    animation: chaosFloat7 2.9s ease-in-out infinite 0.5s;
}

.cp-8 {
    width: 0.7rem;
    height: 0.7rem;
    animation: chaosFloat8 3.1s ease-in-out infinite 0.1s;
}

/* Chaotic floating animations - erratic, stressed movement */
@keyframes chaosFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-2rem, -3rem) scale(0.8);
    }

    50% {
        transform: translate(1.5rem, 2rem) scale(1.1);
    }

    75% {
        transform: translate(-1rem, -1rem) scale(0.9);
    }
}

@keyframes chaosFloat2 {

    0%,
    100% {
        transform: translate(-1rem, 2rem) scale(1);
    }

    25% {
        transform: translate(2rem, -1rem) scale(1.2);
    }

    50% {
        transform: translate(-2rem, -3rem) scale(0.7);
    }

    75% {
        transform: translate(1rem, 1rem) scale(1);
    }
}

@keyframes chaosFloat3 {

    0%,
    100% {
        transform: translate(1rem, -2rem) scale(0.9);
    }

    33% {
        transform: translate(-1.5rem, 3rem) scale(1.1);
    }

    66% {
        transform: translate(2rem, -1rem) scale(0.8);
    }
}

@keyframes chaosFloat4 {

    0%,
    100% {
        transform: translate(2rem, 1rem) scale(1);
    }

    50% {
        transform: translate(-3rem, -2rem) scale(0.6);
    }
}

@keyframes chaosFloat5 {

    0%,
    100% {
        transform: translate(-2rem, -4rem) scale(1);
    }

    25% {
        transform: translate(1rem, 2rem) scale(0.8);
    }

    50% {
        transform: translate(-1rem, 3rem) scale(1.2);
    }

    75% {
        transform: translate(2rem, -1rem) scale(0.9);
    }
}

@keyframes chaosFloat6 {

    0%,
    100% {
        transform: translate(3rem, 2rem) scale(0.8);
    }

    50% {
        transform: translate(-2rem, -3rem) scale(1.1);
    }
}

@keyframes chaosFloat7 {

    0%,
    100% {
        transform: translate(-1rem, 4rem) scale(1);
    }

    33% {
        transform: translate(2rem, -2rem) scale(0.7);
    }

    66% {
        transform: translate(-2rem, 1rem) scale(1.2);
    }
}

@keyframes chaosFloat8 {

    0%,
    100% {
        transform: translate(1rem, -3rem) scale(0.9);
    }

    50% {
        transform: translate(-1rem, 2rem) scale(1);
    }
}

.pain-label {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: rgba(239, 68, 68, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* -------------------- TRANSFORMATION CORE (Catalyst) -------------------- */
.transformation-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18rem;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringRotate 8s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(34, 197, 94, 0.2);
    animation-duration: 12s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(34, 197, 94, 0.35);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(34, 197, 94, 0.5);
    animation-duration: 5s;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.core-center {
    position: relative;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0) 70%);
    animation: corePulse 2s ease-in-out infinite;
}

.core-glow {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    box-shadow:
        0 0 2rem rgba(34, 197, 94, 0.8),
        0 0 4rem rgba(34, 197, 94, 0.5),
        0 0 6rem rgba(34, 197, 94, 0.3),
        inset 0 0 1rem rgba(255, 255, 255, 0.3);
    animation: glowBreath 3s ease-in-out infinite;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

@keyframes glowBreath {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 2rem rgba(34, 197, 94, 0.8), 0 0 4rem rgba(34, 197, 94, 0.5), 0 0 6rem rgba(34, 197, 94, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 3rem rgba(34, 197, 94, 1), 0 0 5rem rgba(34, 197, 94, 0.7), 0 0 8rem rgba(34, 197, 94, 0.4);
    }
}

/* Energy streams flowing through the core */
.energy-stream {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(239, 68, 68, 0.8) 0%,
            rgba(234, 179, 8, 0.8) 30%,
            rgba(34, 197, 94, 0.8) 70%,
            rgba(34, 197, 94, 0) 100%);
    transform-origin: left center;
    animation: streamFlow 3s ease-in-out infinite;
}

.es-1 {
    width: 25rem;
    left: -12rem;
    top: calc(50% - 2rem);
    animation-delay: 0s;
}

.es-2 {
    width: 25rem;
    left: -12rem;
    top: 50%;
    animation-delay: 1s;
}

.es-3 {
    width: 25rem;
    left: -12rem;
    top: calc(50% + 2rem);
    animation-delay: 2s;
}

@keyframes streamFlow {
    0% {
        opacity: 0;
        transform: translateX(-5rem) scaleX(0.3);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(15rem) scaleX(1.2);
    }
}

/* -------------------- GROWTH ZONE (Gain State) -------------------- */
.growth-zone {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15rem;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-stream {
    position: absolute;
    width: 3px;
    background: linear-gradient(0deg,
            rgba(34, 197, 94, 0) 0%,
            rgba(34, 197, 94, 0.6) 30%,
            rgba(34, 197, 94, 1) 50%,
            rgba(34, 197, 94, 0.6) 70%,
            rgba(34, 197, 94, 0) 100%);
    border-radius: 2px;
    animation: growthRise 2.5s ease-out infinite;
}

.gs-1 {
    height: 12rem;
    left: 2rem;
    animation-delay: 0s;
}

.gs-2 {
    height: 15rem;
    left: 4.5rem;
    animation-delay: 0.3s;
}

.gs-3 {
    height: 18rem;
    left: 7rem;
    animation-delay: 0.6s;
}

.gs-4 {
    height: 14rem;
    left: 9.5rem;
    animation-delay: 0.4s;
}

.gs-5 {
    height: 10rem;
    left: 12rem;
    animation-delay: 0.7s;
}

@keyframes growthRise {
    0% {
        transform: translateY(8rem) scaleY(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-15rem) scaleY(1);
        opacity: 0;
    }
}

.growth-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow:
        0 0 1rem rgba(34, 197, 94, 0.8),
        0 0 2rem rgba(34, 197, 94, 0.4);
    animation: growthFloat 4s ease-in-out infinite;
}

.gp-1 {
    width: 1rem;
    height: 1rem;
    left: 3rem;
    animation-delay: 0s;
}

.gp-2 {
    width: 0.6rem;
    height: 0.6rem;
    left: 8rem;
    animation-delay: 1.3s;
}

.gp-3 {
    width: 0.8rem;
    height: 0.8rem;
    left: 11rem;
    animation-delay: 2.6s;
}

@keyframes growthFloat {
    0% {
        transform: translateY(10rem);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-12rem);
        opacity: 0;
    }
}

.gain-label {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: rgba(34, 197, 94, 0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: gainLabelGlow 2s ease-in-out infinite;
}

@keyframes gainLabelGlow {

    0%,
    100% {
        opacity: 0.6;
        text-shadow: 0 0 0.5rem rgba(34, 197, 94, 0.3);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 1rem rgba(34, 197, 94, 0.6);
    }
}

/* -------------------- AMBIENT EFFECTS -------------------- */
.portal-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6rem);
    opacity: 0.25;
}

.ao-1 {
    width: 30rem;
    height: 30rem;
    left: -5rem;
    top: 5rem;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
    animation: ambientDrift 8s ease-in-out infinite alternate;
}

.ao-2 {
    width: 35rem;
    height: 35rem;
    right: -8rem;
    bottom: 2rem;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.5) 0%, transparent 70%);
    animation: ambientDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(2rem, 2rem);
    }
}

/* -------------------- WHISPER TEXT (Psychological Anchor) -------------------- */
.portal-whisper {
    position: absolute;
    bottom: -6rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.whisper-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    letter-spacing: 0.1em;
    animation: whisperFade 4s ease-in-out infinite;
}

@keyframes whisperFade {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
    .transformation-portal {
        width: 40rem;
        height: 40rem;
    }

    .chaos-zone,
    .growth-zone {
        width: 12rem;
        height: 24rem;
    }

    .transformation-core {
        width: 14rem;
        height: 14rem;
    }
}

@media (max-width: 768px) {
    .transformation-portal {
        width: 32rem;
        height: 32rem;
    }

    .chaos-zone,
    .growth-zone {
        width: 10rem;
        height: 20rem;
    }

    .transformation-core {
        width: 10rem;
        height: 10rem;
    }

    .pain-label,
    .gain-label {
        font-size: 0.9rem;
    }

    .portal-whisper {
        bottom: -4rem;
    }

    .whisper-text {
        font-size: 1.1rem;
    }
}

/* ============================================================================ */
/*                          THE CLARITY ENGINE - GOD TIER                       */
/*           Premium Interactive Visualization with Parallax & Animation        */
/* ============================================================================ */

.clarity-engine {
    position: relative;
    width: 52rem;
    height: 52rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

/* Parallax Depth Layers */
.engine-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.layer-back {
    z-index: 1;
}

.layer-mid {
    z-index: 2;
}

.layer-front {
    z-index: 3;
}

/* -------------------- GRADIENT MESH BACKGROUND -------------------- */
.gradient-mesh {
    position: absolute;
    inset: -10%;
    overflow: hidden;
    filter: blur(8rem);
    opacity: 0.4;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    animation: meshMorph 12s ease-in-out infinite;
}

.blob-1 {
    width: 25rem;
    height: 25rem;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.5) 0%, transparent 70%);
    animation-delay: 0s;
}

.blob-2 {
    width: 30rem;
    height: 30rem;
    bottom: 5%;
    right: 0%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, transparent 70%);
    animation-delay: -4s;
}

.blob-3 {
    width: 20rem;
    height: 20rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.4) 0%, transparent 70%);
    animation-delay: -8s;
}

@keyframes meshMorph {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(2rem, -2rem) scale(1.1);
    }

    50% {
        transform: translate(-1rem, 2rem) scale(0.95);
    }

    75% {
        transform: translate(1rem, 1rem) scale(1.05);
    }
}

/* -------------------- ORBITAL RING SYSTEM -------------------- */
.orbital-system {
    position: absolute;
    width: 38rem;
    height: 38rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.08);
    animation: orbitSpin 40s linear infinite;
}

.ring-middle {
    width: 75%;
    height: 75%;
    border-color: rgba(34, 197, 94, 0.15);
    animation: orbitSpin 25s linear infinite reverse;
}

.ring-inner {
    width: 50%;
    height: 50%;
    border-color: rgba(34, 197, 94, 0.25);
    animation: orbitSpin 15s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbital Dots */
.orbit-dot {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    box-shadow: 0 0 1.5rem rgba(34, 197, 94, 0.8), 0 0 3rem rgba(34, 197, 94, 0.4);
}

.ring-outer .od-1 {
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
}

.ring-outer .od-2 {
    bottom: 20%;
    right: -0.4rem;
}

.ring-outer .od-3 {
    bottom: -0.4rem;
    left: 30%;
}

.ring-middle .od-4 {
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    box-shadow: 0 0 1.5rem rgba(234, 179, 8, 0.8);
}

.ring-middle .od-5 {
    bottom: 15%;
    left: 0;
}

/* -------------------- FLOATING WORDS -------------------- */
.floating-words {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-word {
    position: absolute;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Pain Words - Fading Out */
.pain-words .float-word {
    color: rgba(239, 68, 68, 0.6);
    animation: painWordFade 8s ease-in-out infinite;
}

.fw-chaos {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.fw-waste {
    top: 25%;
    right: 2%;
    font-size: 1rem;
    animation-delay: -2s;
}

.fw-guess {
    bottom: 30%;
    left: 0;
    animation-delay: -4s;
}

.fw-stress {
    bottom: 10%;
    right: 8%;
    animation-delay: -6s;
}

@keyframes painWordFade {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }

    25% {
        opacity: 0.3;
        transform: translateY(-0.5rem);
    }

    50% {
        opacity: 0.6;
        transform: translateY(0.3rem);
    }

    75% {
        opacity: 0.2;
        transform: translateY(-0.3rem);
    }
}

/* Gain Words - Fading In */
.gain-words .float-word {
    color: rgba(34, 197, 94, 0.8);
    animation: gainWordReveal 8s ease-in-out infinite;
    text-shadow: 0 0 2rem rgba(34, 197, 94, 0.4);
}

.fw-clarity {
    top: 12%;
    right: 5%;
    animation-delay: -1s;
}

.fw-profit {
    top: 35%;
    left: 2%;
    animation-delay: -3s;
}

.fw-data {
    bottom: 25%;
    right: 0;
    font-size: 1rem;
    animation-delay: -5s;
}

.fw-growth {
    bottom: 8%;
    left: 10%;
    animation-delay: -7s;
}

@keyframes gainWordReveal {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-0.3rem) scale(1.02);
        text-shadow: 0 0 3rem rgba(34, 197, 94, 0.6);
    }
}

/* -------------------- CLARITY CORE (Central Orb) -------------------- */
.clarity-core {
    position: absolute;
    width: 16rem;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: coreRingSpin 20s linear infinite;
}

.core-mid-ring {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    animation: coreRingSpin 12s linear infinite reverse;
}

.core-inner-glow {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    animation: coreInnerPulse 3s ease-in-out infinite;
}

@keyframes coreRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes coreInnerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

/* The Central Orb */
.core-center-orb {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 40%, #15803d 100%);
    box-shadow:
        0 0 3rem rgba(34, 197, 94, 1),
        0 0 6rem rgba(34, 197, 94, 0.7),
        0 0 10rem rgba(34, 197, 94, 0.4),
        inset 0 -1rem 2rem rgba(0, 0, 0, 0.3),
        inset 0 1rem 2rem rgba(255, 255, 255, 0.2);
    animation: orbBreathe 4s ease-in-out infinite;
}

.orb-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 45%,
            transparent 50%,
            transparent 100%);
    animation: shimmerRotate 3s linear infinite;
}

@keyframes orbBreathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 3rem rgba(34, 197, 94, 1), 0 0 6rem rgba(34, 197, 94, 0.7), 0 0 10rem rgba(34, 197, 94, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 4rem rgba(34, 197, 94, 1), 0 0 8rem rgba(34, 197, 94, 0.8), 0 0 14rem rgba(34, 197, 94, 0.5);
    }
}

@keyframes shimmerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Pulse Waves */
.core-pulse-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.6);
    animation: pulseWaveExpand 3s ease-out infinite;
}

.pw-1 {
    animation-delay: 0s;
}

.pw-2 {
    animation-delay: 1s;
}

.pw-3 {
    animation-delay: 2s;
}

@keyframes pulseWaveExpand {
    0% {
        transform: scale(0.35);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* -------------------- DATA FLOW SVG PATHS -------------------- */
.data-flow-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-path {
    fill: none;
    stroke: url(#flowGradient1);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 20;
    animation: flowDash 4s linear infinite;
    opacity: 0.7;
}

.fp-1 {
    animation-delay: 0s;
    stroke-dasharray: 8 25;
}

.fp-2 {
    animation-delay: -1.5s;
    stroke-dasharray: 12 18;
}

.fp-3 {
    animation-delay: -3s;
    stroke-dasharray: 6 22;
}

@keyframes flowDash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -100;
    }
}

/* -------------------- PROGRESS INDICATOR -------------------- */
.engine-progress {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 32rem;
}

.progress-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.8) 0%, rgba(234, 179, 8, 0.8) 50%, rgba(34, 197, 94, 1) 100%);
    border-radius: 2px;
    animation: progressGrow 6s ease-out infinite;
}

@keyframes progressGrow {
    0% {
        width: 0%;
    }

    80% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
}

.progress-labels span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pl-start {
    color: rgba(239, 68, 68, 0.7);
}

.pl-end {
    color: rgba(34, 197, 94, 0.9);
}

/* -------------------- METRIC BADGES -------------------- */
.metric-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.metric-badge {
    position: absolute;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    animation: badgeReveal 8s ease-in-out infinite;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.badge-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 1.5rem rgba(34, 197, 94, 0.5);
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mb-roas {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.mb-leads {
    bottom: 25%;
    left: 3%;
    animation-delay: -2.5s;
}

.mb-cost {
    top: 35%;
    right: 0;
    animation-delay: -5s;
}

.mb-cost .badge-value {
    color: #22c55e;
}

@keyframes badgeReveal {

    0%,
    15% {
        opacity: 0;
        transform: translateY(1rem) scale(0.95);
    }

    20%,
    45% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50%,
    100% {
        opacity: 0;
        transform: translateY(-0.5rem) scale(0.98);
    }
}

/* -------------------- CLARITY ENGINE RESPONSIVE -------------------- */
@media (max-width: 1200px) {
    .clarity-engine {
        width: 45rem;
        height: 45rem;
    }

    .orbital-system {
        width: 32rem;
        height: 32rem;
    }

    .clarity-core {
        width: 14rem;
        height: 14rem;
    }
}

@media (max-width: 1024px) {
    .clarity-engine {
        width: 38rem;
        height: 38rem;
    }

    .orbital-system {
        width: 26rem;
        height: 26rem;
    }

    .clarity-core {
        width: 12rem;
        height: 12rem;
    }

    .core-center-orb {
        width: 4rem;
        height: 4rem;
    }

    .float-word {
        font-size: 0.9rem;
    }

    .metric-badge {
        padding: 1rem 1.4rem;
    }

    .badge-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .clarity-engine {
        width: 30rem;
        height: 30rem;
    }

    .orbital-system {
        width: 22rem;
        height: 22rem;
    }

    .float-word {
        display: none;
    }

    .metric-badges {
        display: none;
    }

    .engine-progress {
        width: 90%;
    }
}

.perspective-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-stack {
    position: relative;
    width: 45rem;
    height: 48rem;
    transform-style: preserve-3d;
    will-change: transform;
    transform: rotateY(-10deg) rotateX(5deg) scale(0.95);
}

/* Performance Panel */
.performance-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(2.5rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.7);
    border-radius: 2rem;
    padding: 2.5rem;
    transform: translateZ(0);
    z-index: 2;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.panel-title {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    color: var(--color-neon-green);
    font-weight: 700;
}

.live-dot {
    width: 0.6rem;
    height: 0.6rem;
    background: var(--color-neon-green);
    border-radius: 50%;
    box-shadow: 0 0 0.8rem var(--color-neon-green);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.perf-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-neon-green);
    font-family: monospace;
}

.perf-label {
    font-size: 1.1rem;
    color: #666;
}

.mini-graph {
    height: 6rem;
    width: 100%;
}

.graph-svg {
    width: 100%;
    height: 100%;
}

.graph-path {
    filter: drop-shadow(0 0 0.5rem rgba(34, 197, 94, 0.5));
}

/* Case Study Card */
.case-card {
    position: absolute;
    top: 32rem;
    left: -4rem;
    width: 28rem;
    background: rgba(25, 25, 25, 0.9);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.6);
    border-radius: 2rem;
    padding: 2rem;
    transform: translateZ(8rem) rotateY(5deg);
    z-index: 3;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-neon-green);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.case-brand {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
}

.case-result {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.case-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

.case-period {
    font-size: 1.2rem;
    color: #666;
}

.case-details {
    font-size: 1.3rem;
    color: var(--color-gray-400);
    line-height: 1.4;
}

/* Testimonial Card */
.testimonial-card {
    position: absolute;
    top: 8rem;
    right: -6rem;
    width: 26rem;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.6);
    border-radius: 2rem;
    padding: 2rem;
    transform: translateZ(5rem) rotateY(-8deg);
    z-index: 4;
}

.author-title {
    font-size: 1.1rem;
    color: #666;
}

/* -------------------------------------------------------------------------- */
/*              AUTHENTIC DATA: Real Analytics Dashboard Style                */
/* -------------------------------------------------------------------------- */

.analytics-container {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
    max-width: 48rem;
}

/* Analytics Card - Like Google Analytics/Stripe Dashboard */
.analytics-card {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 2.2rem;
    transition: border-color 0.2s ease;
}

.analytics-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Card Header */
.card-header-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title-simple {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e5e5e5;
}

.data-timestamp {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Courier New', monospace;
}

/* Key Metric */
.key-metric-row {
    margin-bottom: 2.4rem;
}

.metric-main-number {
    font-size: 5.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.6rem;
    font-variant-numeric: tabular-nums;
}

.metric-main-label {
    font-size: 1.25rem;
    color: #888;
    font-weight: 500;
}

/* Data Grid - Like Real Dashboards */
.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.data-cell {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.8rem;
}

.data-value {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
    font-variant-numeric: tabular-nums;
}

.data-label {
    font-size: 1.1rem;
    color: #777;
    font-weight: 400;
}

/* Case Data Row */
.case-data-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.case-primary {
    flex: 1;
}

.case-number {
    font-size: 4.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.case-label {
    font-size: 1.3rem;
    color: #888;
}

.case-stats-mini {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.8rem;
    min-width: 16rem;
}

.mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.mini-label {
    color: #777;
    font-weight: 400;
}

.mini-value {
    color: #fff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Quote Card */
.quote-card {
    background: rgba(20, 20, 20, 0.5);
    border-color: rgba(255, 255, 255, 0.06);
}

.quote-text-real {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 1.6rem;
}

.quote-author-real {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar-real {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.author-info-real {
    flex: 1;
}

.author-name-real {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-company-real {
    font-size: 1.15rem;
    color: #777;
}

/* Responsive */
@media (max-width: 968px) {
    .analytics-container {
        margin-top: 4rem;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .case-data-row {
        flex-direction: column;
    }

    .case-stats-mini {
        width: 100%;
    }
}


/* -------------------------------------------------------------------------- */
/*                                SCROLL INDICATOR                            */
/* -------------------------------------------------------------------------- */
.scroll-indicator {
    display: none;

}

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVE                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

    .container,
    .container-fluid {
        padding: 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .col-left {
        align-items: center;
        text-align: center;
    }

    .subheadline {
        margin: 0 auto 3rem auto;
    }

    .social-proof-mini {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .client-logos {
        align-items: center;
    }

    .dashboard-stack {
        transform: scale(0.85);
    }

    .case-card {
        left: 0;
    }

    .testimonial-card {
        right: 0;
    }
}

/* -------------------------------------------------------------------------- */
/*                          RESULTS SHOWCASE SECTION                          */
/* -------------------------------------------------------------------------- */
.results-section {
    position: relative;
    padding: 12rem 0;
    background: var(--color-obsidian);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 8rem auto;
}

.section-badge {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: rgba(34, 197, 94, 0.1);
    border: 0.1rem solid rgba(34, 197, 94, 0.3);
    border-radius: 10rem;
    color: var(--color-neon-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background-image: linear-gradient(120deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-gray-400);
}

/* Industry Filter Tabs */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1.2rem 2.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 10rem;
    color: var(--color-gray-400);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.tab-btn.active {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
    margin-bottom: 10rem;
}

.case-study-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.case-study-card:hover {
    transform: translateY(-1rem);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5), 0 0 2rem rgba(34, 197, 94, 0.15);
}

.case-visual {
    position: relative;
    height: 35rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: hidden;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.05);
}

.revenue-chart {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.chart-visual {
    width: 100%;
    height: 100%;
}

.case-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(34, 197, 94, 0.15);
    border: 0.1rem solid rgba(34, 197, 94, 0.3);
    border-radius: 0.8rem;
    color: var(--color-neon-green);
    font-size: 1.1rem;
    font-weight: 600;
}

.case-content {
    padding: 2.5rem;
}

.case-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: monospace;
}

.metric-value.highlight {
    color: var(--color-neon-green);
    text-shadow: 0 0 1rem rgba(34, 197, 94, 0.3);
}

.metric-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.case-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-gray-400);
}

/* Video Testimonials */
.testimonials-container {
    margin-bottom: 10rem;
}

.testimonials-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
    color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 4rem;
}

.video-testimonial-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    position: relative;
    height: 20rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.play-button {
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--ease-elastic);
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.15);
}

.testimonial-info {
    padding: 2.5rem;
}

.testimonial-quote {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar-sm {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-name-sm {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.author-company {
    font-size: 1.2rem;
    color: #666;
}

/* ROI Calculator */
.roi-calculator {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(3rem);
    border: 0.1rem solid rgba(34, 197, 94, 0.2);
    border-radius: 2.5rem;
    padding: 5rem;
    max-width: 110rem;
    margin: 0 auto;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
}

.calculator-header {
    text-align: center;
    margin-bottom: 5rem;
}

.calculator-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.calculator-desc {
    font-size: 1.6rem;
    color: var(--color-gray-400);
}

.calculator-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.input-group label {
    display: block;
    font-size: 1.3rem;
    color: var(--color-gray-400);
    margin-bottom: 1rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix,
.input-suffix {
    position: absolute;
    font-size: 1.6rem;
    color: #666;
    font-weight: 600;
}

.input-prefix {
    left: 1.5rem;
}

.input-suffix {
    right: 1.5rem;
}

.input-wrapper input {
    width: 100%;
    padding: 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-neon-green);
    background: rgba(34, 197, 94, 0.05);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.5rem);
}

.result-card.highlight-card {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.result-label {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    font-family: monospace;
}

.highlight-card .result-value {
    color: var(--color-neon-green);
    text-shadow: 0 0 2rem rgba(34, 197, 94, 0.3);
}

.result-change {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .results-section {
        padding: 8rem 0;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .calculator-body {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .roi-calculator {
        padding: 3rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                          WHY CHOOSE ME SECTION                             */
/* -------------------------------------------------------------------------- */
.why-section {
    padding: 12rem 0;
    background: var(--color-obsidian);
}

.comparison-table {
    max-width: 90rem;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.header-row {
    background: rgba(0, 0, 0, 0.5);
}

.comparison-cell {
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-cell {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gray-400);
}

.highlight-col {
    background: rgba(34, 197, 94, 0.05);
    border-left: 0.2rem solid var(--color-neon-green);
}

.col-badge {
    padding: 0.8rem 1.6rem;
    background: rgba(34, 197, 94, 0.15);
    border: 0.1rem solid var(--color-neon-green);
    border-radius: 10rem;
    color: var(--color-neon-green);
    font-size: 1.3rem;
    font-weight: 700;
}

.col-label {
    font-size: 1.4rem;
    color: #888;
    font-weight: 500;
}

.check-icon,
.x-icon {
    flex-shrink: 0;
}

.comparison-cell span {
    font-size: 1.5rem;
    color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/*                          GUARANTEE SECTION                                 */
/* -------------------------------------------------------------------------- */
.guarantee-section {
    padding: 12rem 0;
    background: var(--color-obsidian);
}

.guarantee-card {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(3rem);
    border: 0.1rem solid rgba(34, 197, 94, 0.2);
    border-radius: 2.5rem;
    padding: 6rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
}

.guarantee-icon {
    margin: 0 auto 3rem auto;
}

.guarantee-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.guarantee-desc {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-gray-400);
    margin-bottom: 4rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/*                              FAQ SECTION                                   */
/* -------------------------------------------------------------------------- */
.faq-section {
    padding: 12rem 0;
    background: var(--color-obsidian);
}

.faq-grid {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(2rem);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-neon-green);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 30rem;
    padding: 0 3rem 2.5rem 3rem;
}

.faq-answer p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray-400);
}

/* -------------------------------------------------------------------------- */
/*                          EXIT INTENT POPUP                                 */
/* -------------------------------------------------------------------------- */
.exit-intent-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-content {
    position: relative;
    max-width: 60rem;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(3rem);
    border: 0.1rem solid rgba(34, 197, 94, 0.3);
    border-radius: 2.5rem;
    padding: 5rem;
    box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.8);
    transform: scale(0.8);
    transition: transform 0.3s var(--ease-elastic);
}

.exit-intent-popup.show .exit-popup-content {
    transform: scale(1);
}

.exit-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.exit-header {
    text-align: center;
    margin-bottom: 3rem;
}

.exit-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.exit-subtitle {
    font-size: 2rem;
    color: var(--color-neon-green);
    font-weight: 600;
}

.exit-body {
    text-align: center;
}

.exit-desc {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray-400);
    margin-bottom: 3rem;
}

.exit-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.exit-input {
    flex: 1;
    padding: 1.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--color-white);
    font-size: 1.6rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.exit-input:focus {
    outline: none;
    border-color: var(--color-neon-green);
    background: rgba(34, 197, 94, 0.05);
}

.exit-submit {
    padding: 1.8rem 3.5rem;
    background: var(--color-neon-green);
    border: none;
    border-radius: 1rem;
    color: var(--color-obsidian);
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-elastic);
}

.exit-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 2rem rgba(34, 197, 94, 0.3);
}

.exit-privacy {
    font-size: 1.3rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        justify-content: flex-start;
    }

    .highlight-col {
        border-left: none;
        border-top: 0.2rem solid var(--color-neon-green);
    }

    .guarantee-card {
        padding: 4rem 3rem;
    }

    .exit-popup-content {
        margin: 2rem;
        padding: 3rem;
    }

    .exit-form {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
/*                          FINAL CTA SECTION                                 */
/* -------------------------------------------------------------------------- */
.final-cta-section {
    padding: 12rem 0;
    background: var(--color-obsidian);
}

.final-cta-card {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(3rem);
    border: 0.2rem solid rgba(34, 197, 94, 0.3);
    border-radius: 3rem;
    padding: 6rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6), 0 0 6rem rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.15), transparent 70%);
    pointer-events: none;
}

.final-cta-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(34, 197, 94, 0.2);
    border: 0.1rem solid var(--color-neon-green);
    border-radius: 10rem;
    color: var(--color-neon-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.final-cta-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-white);
    position: relative;
}

.final-cta-desc {
    font-size: 1.9rem;
    line-height: 1.6;
    color: var(--color-gray-400);
    margin-bottom: 4rem;
    position: relative;
}

.final-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.final-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.final-stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-neon-green);
    font-family: monospace;
}

.final-stat-label {
    font-size: 1.3rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 5rem;
    background: var(--color-neon-green);
    border: none;
    border-radius: 10rem;
    color: var(--color-obsidian);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-elastic);
    box-shadow: 0 1rem 3rem rgba(34, 197, 94, 0.3);
    position: relative;
}

.final-cta-button:hover {
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: 0 2rem 4rem rgba(34, 197, 94, 0.5);
}

.final-cta-button:active {
    transform: translateY(0) scale(0.98);
}

.final-cta-arrow {
    transition: transform 0.3s ease;
}

.final-cta-button:hover .final-cta-arrow {
    transform: translateX(0.5rem);
}

.final-cta-guarantee {
    margin-top: 2.5rem;
    font-size: 1.4rem;
    color: #666;
    position: relative;
}

@media (max-width: 768px) {
    .final-cta-stats {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .final-cta-card {
        padding: 4rem 3rem;
    }

    .final-cta-title {
        font-size: 3rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                     UNIVERSAL RESPONSIVENESS SYSTEM                        */
/* -------------------------------------------------------------------------- */

/* 
 * Device Range Coverage:
 * - Apple Watch: 272px - 312px
 * - Mobile: 320px - 767px
 * - Tablet: 768px - 1024px
 * - Desktop: 1024px - 1920px
 * - Large Desktop: 1920px - 3840px
 * - 4K/8K: 3840px+
 */

/* BASE: Constrained Scaling System */
html {
    font-size: clamp(6.25px, calc(100vw / 1440 * 10), 16px);
    min-height: 100dvh;
}

/* -------------------------------------------------------------------------- */
/*                         DEVICE-SPECIFIC BREAKPOINTS                        */
/* -------------------------------------------------------------------------- */

/* Apple Watch & Ultra-Small Devices (< 320px) */
@media (max-width: 319px) {
    html {
        font-size: 6px !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 12rem 0 4rem 0 !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .col-right {
        display: none !important;
    }

    .metallic-headline {
        font-size: 3rem !important;
    }

    .cta-primary {
        padding: 1.2rem 2rem !important;
        font-size: 1.2rem !important;
    }

    .trust-bar {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    .final-cta-stats {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Mobile Phones (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    html {
        font-size: 7px;
    }

    .hero-section {
        padding: 14rem 0 4rem 0;
        min-height: auto;
    }

    .container {
        padding: 0 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .col-right {
        display: none;
    }

    .metallic-headline {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .social-proof-mini {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .client-logos .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 1.5rem 2rem;
    }

    .final-cta-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .calculator-body {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }
}

/* Large Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    html {
        font-size: 8px;
    }

    .hero-section {
        padding: 14rem 0 4rem 0;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .col-right {
        max-width: 50rem;
        margin: 0 auto;
    }

    .dashboard-stack {
        scale: 0.85;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    html {
        font-size: 9px;
    }

    .trust-name {
        margin-left: 0;
        font-size: 1.2rem;
    }

    .trust-right {
        gap: 2rem;
    }

    .trust-badge,
    .trust-stat {
        font-size: 1.1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .dashboard-stack {
        scale: 0.9;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-row {
        grid-template-columns: 1.5fr 2fr 2fr;
    }

    .final-cta-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (1025px - 1440px) - Optimal */
@media (min-width: 1025px) and (max-width: 1440px) {
    html {
        font-size: calc(100vw / 1440 * 10);
    }
}

/* Large Desktop (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    html {
        font-size: 11px;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* 2K Monitors (1921px - 2560px) */
@media (min-width: 1921px) and (max-width: 2560px) {
    html {
        font-size: 12px;
    }

    .container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .hero-grid {
        gap: 8rem;
    }

    .dashboard-stack {
        scale: 1.1;
    }
}

/* 4K Monitors (2561px - 3840px) */
@media (min-width: 2561px) and (max-width: 3840px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: 1800px;
        margin: 0 auto;
    }

    .metallic-headline {
        font-size: 11rem;
    }

    .dashboard-stack {
        scale: 1.2;
    }

    .section-title {
        font-size: 6.5rem;
    }
}

/* 8K & Ultra-Wide (3841px+) */
@media (min-width: 3841px) {
    html {
        font-size: 16px !important;
    }

    body {
        display: flex;
        justify-content: center;
    }

    .hero-section,
    section {
        max-width: 2400px;
        margin: 0 auto;
    }

    .container {
        max-width: 2000px;
    }

    .metallic-headline {
        font-size: 14rem;
    }

    .dashboard-stack {
        scale: 1.3;
    }
}

/* -------------------------------------------------------------------------- */
/*                         MOBILE-SPECIFIC OVERRIDES                          */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 12rem 0 4rem 0;
    }

    .trust-bar {
        padding: 1.5rem 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .container-fluid {
        padding: 0 2rem;
    }

    .trust-content {
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1.2rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .trust-name {
        font-size: 1.3rem;
        margin-left: 0;
        margin-right: 0;
        letter-spacing: 0.15em;
        font-weight: 700;
        width: 100%;
        text-align: center;
    }

    .trust-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }

    .trust-badge,
    .trust-stat {
        font-size: 1.1rem;
        gap: 0.6rem;
        justify-content: center;
        text-align: center;
    }

    .trust-badge svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    .urgency-tag {
        flex-wrap: wrap;
    }

    .metallic-headline {
        font-size: 4rem;
        line-height: 1.1;
    }

    .subheadline {
        font-size: 1.5rem;
    }

    .avatar-stack {
        scale: 0.9;
    }

    .cta-primary {
        font-size: 1.4rem;
        padding: 1.8rem 3rem;
    }

    .cta-secondary {
        font-size: 1.3rem;
    }

    .client-logos {
        margin-top: 3rem;
    }

    /* Results Section */
    .results-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .industry-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .tab-btn {
        padding: 1rem 1.8rem;
        font-size: 1.2rem;
    }

    .case-study-card {
        margin-bottom: 2rem;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .roi-calculator {
        padding: 3rem 2rem;
    }

    .calculator-title {
        font-size: 2.8rem;
    }

    .calculator-inputs {
        gap: 2rem;
    }

    .calculator-results {
        gap: 2rem;
    }

    /* Why Choose Me */
    .why-section {
        padding: 6rem 0;
    }

    .comparison-table {
        border-radius: 1rem;
    }

    .comparison-cell {
        font-size: 1.3rem;
    }

    .feature-cell {
        font-size: 1.4rem;
        font-weight: 700;
    }

    /* Guarantee */
    .guarantee-section {
        padding: 6rem 0;
    }

    .guarantee-card {
        padding: 4rem 2.5rem;
    }

    .guarantee-title {
        font-size: 2.8rem;
    }

    .guarantee-desc {
        font-size: 1.6rem;
    }

    /* FAQ */
    .faq-section {
        padding: 6rem 0;
    }

    .faq-question {
        font-size: 1.6rem;
        padding: 2rem 2rem;
    }

    .faq-answer p {
        font-size: 1.4rem;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 6rem 0;
    }

    .final-cta-card {
        padding: 4rem 2.5rem;
    }

    .final-cta-title {
        font-size: 3.2rem;
    }

    .final-cta-desc {
        font-size: 1.6rem;
    }

    .final-stat-value {
        font-size: 3rem;
    }

    .final-cta-button {
        padding: 2rem 3.5rem;
        font-size: 1.6rem;
    }

    /* Exit Popup */
    .exit-popup-content {
        margin: 2rem;
        padding: 3rem 2rem;
    }

    .exit-title {
        font-size: 2.8rem;
    }

    .exit-subtitle {
        font-size: 1.7rem;
    }

    .exit-form {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
/*                         LANDSCAPE MOBILE ADJUSTMENTS                       */
/* -------------------------------------------------------------------------- */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
    }

    .dashboard-stack {
        display: none;
    }

    .col-right {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                         PRINT OPTIMIZATION                                 */
/* -------------------------------------------------------------------------- */

@media print {

    .cursor-spotlight,
    .cursor-trail,
    .particle-container,
    .fomo-notification,
    .exit-intent-popup,
    .grain-overlay {
        display: none !important;
    }

    html {
        font-size: 10px;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section,
    section {
        page-break-inside: avoid;
    }
}

/* Stacked Section Title */
.section-title-stacked {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    line-height: 1.1;
}

/* ========================================================================== */
/*                         THE REVENUE CONSTELLATION                          */
/*           Floating 3D Bento Cards - Premium Dashboard Visualization        */
/* ========================================================================== */

.revenue-constellation {
    position: relative;
    width: 55rem;
    height: 55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

/* Ambient Glow Background */
.constellation-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8rem);
    opacity: 0.6;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

.glow-1 {
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.glow-2 {
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes ambientPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1) translate(1rem, -1rem);
        opacity: 0.7;
    }
}

/* Connection Lines SVG */
.constellation-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connect-line {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 8 12;
    animation: lineDash 20s linear infinite;
    opacity: 0.5;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 6s;
}

.line-3 {
    animation-delay: 12s;
}

@keyframes lineDash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

/* ========================================================================== */
/*                              BENTO CARDS                                   */
/* ========================================================================== */

.bento-card {
    position: absolute;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    will-change: transform;
    z-index: 10;
}

.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 2rem;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.15) 0%,
            transparent 40%,
            transparent 60%,
            rgba(34, 197, 94, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ========================================================================== */
/*                           PRIMARY CARD - ROAS                              */
/* ========================================================================== */

.card-primary {
    width: 24rem;
    height: 18rem;
    top: 5%;
    left: 50%;
    transform: translateX(-50%) translateZ(60px);
    z-index: 30;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: cardFloatPrimary 6s ease-in-out infinite;
}

.card-primary:hover {
    transform: translateX(-50%) translateZ(80px) rotateX(5deg);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 16px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(34, 197, 94, 0.25);
}

@keyframes cardFloatPrimary {

    0%,
    100% {
        transform: translateX(-50%) translateZ(60px) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateZ(60px) translateY(-0.8rem);
    }
}

.card-primary .card-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-neon-green);
    margin-bottom: 0.5rem;
}

.metric-icon svg {
    width: 100%;
    height: 100%;
}

.metric-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.value-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
}

.value-prefix,
.value-suffix {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-neon-green);
}

.metric-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 2rem;
    margin-top: 0.5rem;
}

.trend-arrow {
    color: var(--color-neon-green);
    font-size: 1.2rem;
}

.trend-text {
    font-size: 1rem;
    color: var(--color-neon-green);
    font-weight: 500;
}

/* ========================================================================== */
/*                        SECONDARY CARDS - Revenue & Leads                   */
/* ========================================================================== */

.card-secondary {
    width: 18rem;
    height: 14rem;
    z-index: 20;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card-secondary:hover {
    transform: translateZ(50px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 16px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(34, 197, 94, 0.2);
}

.card-revenue {
    left: 2%;
    top: 40%;
    transform: translateZ(30px) rotateY(8deg);
    animation: cardFloatLeft 7s ease-in-out infinite;
}

.card-revenue:hover {
    transform: translateZ(50px) rotateY(4deg) scale(1.02);
}

@keyframes cardFloatLeft {

    0%,
    100% {
        transform: translateZ(30px) rotateY(8deg) translateY(0);
    }

    50% {
        transform: translateZ(30px) rotateY(8deg) translateY(-1rem);
    }
}

.card-leads {
    right: 2%;
    top: 40%;
    transform: translateZ(30px) rotateY(-8deg);
    animation: cardFloatRight 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-leads:hover {
    transform: translateZ(50px) rotateY(-4deg) scale(1.02);
}

@keyframes cardFloatRight {

    0%,
    100% {
        transform: translateZ(30px) rotateY(-8deg) translateY(0);
    }

    50% {
        transform: translateZ(30px) rotateY(-8deg) translateY(-1rem);
    }
}

.card-secondary .card-content {
    justify-content: space-between;
}

.card-secondary .metric-value {
    justify-content: flex-start;
}

.card-secondary .value-number {
    font-size: 3.5rem;
}

.card-secondary .value-prefix,
.card-secondary .value-suffix {
    font-size: 2rem;
}

.card-secondary .metric-label {
    font-size: 1.1rem;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 4rem;
    margin-top: auto;
}

.chart-bar {
    flex: 1;
    height: var(--height, 50%);
    background: linear-gradient(to top, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.8));
    border-radius: 0.3rem 0.3rem 0 0;
    transition: height 0.5s ease;
    animation: barGrow 2s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.chart-bar:nth-child(1) {
    --i: 1;
}

.chart-bar:nth-child(2) {
    --i: 2;
}

.chart-bar:nth-child(3) {
    --i: 3;
}

.chart-bar:nth-child(4) {
    --i: 4;
}

.chart-bar:nth-child(5) {
    --i: 5;
}

.chart-bar:nth-child(6) {
    --i: 6;
}

@keyframes barGrow {
    from {
        height: 0;
    }

    to {
        height: var(--height, 50%);
    }
}

.metric-subtext {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-top: 0.3rem;
}

/* ========================================================================== */
/*                        TERTIARY CARD - Cost Reduction                      */
/* ========================================================================== */

.card-tertiary {
    width: 14rem;
    height: 10rem;
    z-index: 15;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card-cost {
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%) translateZ(15px);
    animation: cardFloatCenter 8s ease-in-out infinite;
    animation-delay: 2s;
}

.card-cost:hover {
    transform: translateX(-50%) translateZ(40px) scale(1.05);
}

@keyframes cardFloatCenter {

    0%,
    100% {
        transform: translateX(-50%) translateZ(15px) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateZ(15px) translateY(-0.5rem);
    }
}

.card-tertiary .card-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.card-tertiary .value-number {
    font-size: 3rem;
}

.card-tertiary .value-prefix,
.card-tertiary .value-suffix {
    font-size: 1.8rem;
}

.card-tertiary .metric-label {
    font-size: 1rem;
}

.cost-down .value-number,
.cost-down .value-prefix,
.cost-down .value-suffix {
    color: var(--color-neon-green);
}

/* ========================================================================== */
/*                           SOCIAL PROOF CARD                                */
/* ========================================================================== */

.card-proof {
    width: 22rem;
    height: auto;
    bottom: 2%;
    right: 8%;
    transform: translateZ(10px) rotateY(-5deg);
    z-index: 12;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2);
    animation: cardFloatProof 9s ease-in-out infinite;
    animation-delay: 3s;
}

.card-proof:hover {
    transform: translateZ(30px) rotateY(-2deg);
}

@keyframes cardFloatProof {

    0%,
    100% {
        transform: translateZ(10px) rotateY(-5deg) translateY(0);
    }

    50% {
        transform: translateZ(10px) rotateY(-5deg) translateY(-0.6rem);
    }
}

.card-proof .card-content {
    padding: 2rem;
    gap: 1.5rem;
}

.proof-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-gray-100);
    line-height: 1.5;
    position: relative;
}

.proof-quote::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--color-neon-green);
    opacity: 0.5;
    font-style: normal;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-neon-green), #16a34a);
    position: relative;
    overflow: hidden;
}

.author-avatar::after {
    content: 'S';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-obsidian);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

.author-title {
    font-size: 1rem;
    color: var(--color-gray-400);
}

/* ========================================================================== */
/*                           FLOATING PARTICLES                               */
/* ========================================================================== */

.constellation-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.constellation-particles .particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-neon-green);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleDrift 15s linear infinite;
}

.p1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.p2 {
    top: 60%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.p3 {
    top: 80%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.p4 {
    top: 30%;
    left: 75%;
    animation-delay: 9s;
    animation-duration: 18s;
}

.p5 {
    top: 70%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 20s;
}

@keyframes particleDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(2rem, -3rem) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-1rem, -1rem) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(3rem, 2rem) scale(1.1);
        opacity: 0.5;
    }
}

/* ========================================================================== */
/*                           RESPONSIVE ADJUSTMENTS                           */
/* ========================================================================== */

@media (max-width: 1200px) {
    .revenue-constellation {
        width: 48rem;
        height: 48rem;
    }

    .card-primary {
        width: 20rem;
        height: 15rem;
    }

    .card-secondary {
        width: 15rem;
        height: 12rem;
    }

    .card-tertiary {
        width: 12rem;
        height: 9rem;
    }

    .card-proof {
        width: 18rem;
    }
}

@media (max-width: 992px) {
    .revenue-constellation {
        width: 42rem;
        height: 50rem;
    }

    .card-primary {
        top: 0%;
        width: 22rem;
    }

    .card-revenue {
        left: 5%;
        top: 35%;
    }

    .card-leads {
        right: 5%;
        top: 35%;
    }

    .card-cost {
        bottom: 22%;
    }

    .card-proof {
        bottom: 0%;
        right: 50%;
        transform: translateX(50%) translateZ(10px);
    }
}

@media (max-width: 768px) {
    .revenue-constellation {
        width: 36rem;
        height: 55rem;
        perspective: 800px;
    }

    .card-primary {
        width: 26rem;
        height: 16rem;
        top: 0%;
        transform: translateX(-50%) translateZ(30px);
    }

    .card-primary .value-number {
        font-size: 4.5rem;
    }

    .card-secondary {
        width: 16rem;
        height: 12rem;
    }

    .card-revenue {
        left: 0%;
        top: 30%;
        transform: translateZ(20px) rotateY(0);
    }

    .card-leads {
        right: 0%;
        top: 30%;
        transform: translateZ(20px) rotateY(0);
    }

    .card-tertiary {
        bottom: 18%;
    }

    .card-proof {
        width: 28rem;
        bottom: 0%;
    }

    .connect-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .revenue-constellation {
        width: 32rem;
        height: 60rem;
    }

    .card-primary {
        width: 28rem;
        height: 15rem;
    }

    .card-secondary {
        width: 13rem;
        height: 11rem;
    }

    .card-secondary .value-number {
        font-size: 2.8rem;
    }

    .card-revenue {
        left: 0%;
        top: 28%;
    }

    .card-leads {
        right: 0%;
        top: 28%;
    }

    .card-tertiary {
        width: 14rem;
        bottom: 15%;
    }

    .card-proof {
        width: 28rem;
        bottom: 0%;
    }

    .proof-quote {
        font-size: 1.2rem;
    }

    .ambient-glow {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .bento-card,
    .ambient-glow,
    .connect-line,
    .chart-bar,
    .particle {
        animation: none !important;
    }

    .bento-card {
        transition: box-shadow 0.3s ease;
    }
}

/* ============================================================================ */
/*                       PREMIUM STATS SHOWCASE                                  */
/* ============================================================================ */

.hero-stats-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
    max-width: 42rem;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    padding: 2rem 2.4rem;
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(24, 24, 24, 0.9);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

/* Primary Stat Card */
.stat-primary {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.12) 0%,
            rgba(18, 18, 18, 0.9) 100%);
    border-color: rgba(34, 197, 94, 0.2);
    padding: 2.4rem 2.8rem;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 1rem;
    color: var(--color-neon-green);
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Stat Value */
.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 0.8rem 0;
}

.stat-prefix,
.stat-suffix {
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.stat-number {
    font-size: 5.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-primary);
}

.stat-primary .stat-number {
    font-size: 6.5rem;
}

.stat-primary .stat-suffix {
    font-size: 3rem;
    color: var(--color-neon-green);
}

/* Stat Badge */
.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    color: var(--color-neon-green);
    font-weight: 500;
    margin-top: 0.5rem;
}

.badge-dot {
    width: 0.6rem;
    height: 0.6rem;
    background: var(--color-neon-green);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== STATS ROW ===== */
.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

.stat-secondary {
    padding: 1.8rem 2rem;
}

.stat-secondary .stat-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat-secondary .stat-number {
    font-size: 3rem;
}

.stat-secondary .stat-prefix,
.stat-secondary .stat-suffix {
    font-size: 1.6rem;
}

.stat-green .stat-number,
.stat-green .stat-prefix,
.stat-green .stat-suffix {
    color: var(--color-neon-green);
}

.stat-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.4rem;
}

/* ===== PROOF BAR ===== */
.stat-proof {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    padding: 1.6rem 2rem;
    text-align: center;
}

.proof-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

.proof-author {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.6rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-stats-showcase {
        max-width: 38rem;
    }

    .stat-primary .stat-number {
        font-size: 5.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats-showcase {
        max-width: 100%;
        padding: 0 1rem;
    }

    .stat-card {
        padding: 1.6rem 1.8rem;
    }

    .stat-primary .stat-number {
        font-size: 4.5rem;
    }

    .stat-secondary .stat-number {
        font-size: 2.4rem;
    }

    .stats-row {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-primary .stat-number {
        font-size: 4rem;
    }

    .stat-card {
        border-radius: 1.2rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .badge-dot,
    .stat-card {
        animation: none !important;
        transition: none !important;
    }
}

/* Dashboard Panel Override */
.dashboard-panel {
    position: relative;
    width: 42rem;
    background: linear-gradient(135deg,
            rgba(18, 18, 18, 0.95) 0%,
            rgba(8, 8, 8, 0.9) 100%);
    backdrop-filter: blur(3rem);
    -webkit-backdrop-filter: blur(3rem);
    border-radius: 2.4rem;
    padding: 2.5rem;
    z-index: 10;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.15s ease-out,
        box-shadow 0.3s ease;
    animation: panelFloat 6s ease-in-out infinite;
    box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.5),
        0 0 8rem rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-panel:hover {
    box-shadow:
        0 3rem 6rem rgba(0, 0, 0, 0.6),
        0 0 10rem rgba(34, 197, 94, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes panelFloat {

    0%,
    100% {
        transform: translateY(0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    }

    50% {
        transform: translateY(-0.8rem) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    }
}

.panel-glow {
    position: absolute;
    inset: -1px;
    border-radius: 2.5rem;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.25) 0%,
            rgba(34, 197, 94, 0.05) 50%,
            rgba(34, 197, 94, 0.15) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Panel top shine */
.dashboard-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2.4rem;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 30%);
    pointer-events: none;
    z-index: 2;
}

/* Panel border */
.panel-border {
    position: absolute;
    inset: 0;
    border-radius: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 3;
}

/* ===== DASHBOARD HEADER ===== */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.indicator-dot {
    width: 0.8rem;
    height: 0.8rem;
    background: var(--color-neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 1rem rgba(34, 197, 94, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.indicator-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-badge {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== METRICS GRID ===== */
.metrics-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.metric-cell {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.6rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.metric-cell:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Primary Cell - ROAS */
.cell-primary {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.08) 0%,
            rgba(34, 197, 94, 0.02) 100%);
    border-color: rgba(34, 197, 94, 0.15);
}

.cell-primary .metric-glow {
    position: absolute;
    inset: 0;
    border-radius: 1.6rem;
    background: radial-gradient(circle at center,
            rgba(34, 197, 94, 0.15) 0%,
            transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.metric-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.metric-value {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.cell-primary .value-number {
    font-size: 6.5rem;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
}

.cell-primary .value-suffix {
    font-size: 3rem;
    color: var(--color-neon-green);
    font-weight: 500;
}

.cell-primary .metric-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.metric-trend.positive {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.25) 0%,
            rgba(34, 197, 94, 0.15) 100%);
    color: var(--color-neon-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 2rem rgba(34, 197, 94, 0.15);
    animation: trendPulse 3s ease-in-out infinite;
}

@keyframes trendPulse {

    0%,
    100% {
        box-shadow: 0 0 2rem rgba(34, 197, 94, 0.15);
    }

    50% {
        box-shadow: 0 0 3rem rgba(34, 197, 94, 0.25);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.trend-icon {
    width: 1.2rem;
    height: 1.2rem;
}

/* Secondary Cells */
.cell-revenue,
.cell-leads,
.cell-cost {
    padding: 1.5rem;
}

.cell-revenue .value-number,
.cell-leads .value-number,
.cell-cost .value-number {
    font-size: 2.4rem;
    line-height: 1.2;
}

.cell-revenue .value-prefix,
.cell-leads .value-prefix,
.cell-cost .value-prefix,
.cell-revenue .value-suffix,
.cell-leads .value-suffix,
.cell-cost .value-suffix {
    font-size: 1.6rem;
    opacity: 0.8;
}

.cell-revenue .metric-label,
.cell-leads .metric-label,
.cell-cost .metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Cost Saving - Green */
.cost-saving {
    color: var(--color-neon-green) !important;
}

.cost-saving .value-number,
.cost-saving .value-prefix,
.cost-saving .value-suffix {
    color: var(--color-neon-green);
}

/* Mini Sparkline */
.mini-sparkline {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    margin-top: 1rem;
    height: 2.5rem;
}

.spark {
    width: 0.5rem;
    background: linear-gradient(180deg, var(--color-neon-green) 0%, rgba(34, 197, 94, 0.3) 100%);
    border-radius: 0.3rem 0.3rem 0 0;
    animation: sparkGrow 2s ease-out forwards;
}

.s1 {
    height: 40%;
    animation-delay: 0s;
}

.s2 {
    height: 60%;
    animation-delay: 0.1s;
}

.s3 {
    height: 45%;
    animation-delay: 0.2s;
}

.s4 {
    height: 75%;
    animation-delay: 0.3s;
}

.s5 {
    height: 90%;
    animation-delay: 0.4s;
}

.s6 {
    height: 100%;
    animation-delay: 0.5s;
}

@keyframes sparkGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* ===== DASHBOARD FOOTER ===== */
.dashboard-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-quote {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-source {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .living-dashboard-wrapper {
        width: 45rem;
        height: 40rem;
    }

    .dashboard-panel {
        width: 38rem;
        padding: 2rem;
    }

    .cell-primary .value-number {
        font-size: 5rem;
    }

    .cell-primary .value-suffix {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .living-dashboard-wrapper {
        width: 100%;
        height: auto;
        padding: 2rem;
    }

    .dashboard-panel {
        width: 100%;
        padding: 1.8rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .cell-primary {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        padding: 2rem;
    }

    .cell-primary .value-number {
        font-size: 4.5rem;
    }

    .cell-revenue .value-number,
    .cell-leads .value-number,
    .cell-cost .value-number {
        font-size: 2rem;
    }

    .ambient-orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .dashboard-panel {
        padding: 1.5rem;
        border-radius: 1.8rem;
    }

    .cell-primary .value-number {
        font-size: 3.5rem;
    }

    .cell-primary .value-suffix {
        font-size: 2rem;
    }

    .metrics-grid {
        gap: 1rem;
    }
}

/* Reduced Motion for Dashboard */
@media (prefers-reduced-motion: reduce) {

    .dashboard-panel,
    .ambient-orb,
    .indicator-dot,
    .spark {
        animation: none !important;
    }
}