/* ============================================
   DBX GLOBAL — ULTRA PREMIUM LANDING PAGE CSS
   Paleta: #30C5B1 / #159987 / #0D1B2A / #dcfdf7
   Efeitos: MagicUI + Aceternity + shadcn + Mantine
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --green-primary: #30C5B1;
    --green-dark: #159987;
    --green-light: #5DD9C8;
    --green-ultra-light: #e8fef8;
    --meta-blue: #0668E1;
    --meta-blue-light: rgba(6, 104, 225, 0.1);
    --green-whatsapp: #25D366;
    --green-glow: rgba(48,197,177,0.4);
    --coral: #30C5B1;
    --coral-hover: #159987;
    --coral-glow: rgba(48,197,177,0.3);
    --yellow: #dcfdf7;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --gray-950: #09090B;
    --dark: #1E1E1E;
    --navy: #0D1B2A;
    --navy-light: #1B2D45;
    --chat-bg: #ECE5DD;
    --chat-user: #DCF8C6;
    --chat-header: #075E54;
    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --shadow-glow-green: 0 0 40px rgba(48,197,177,0.15), 0 0 80px rgba(48,197,177,0.05);
    --shadow-glow-coral: 0 0 40px rgba(48,197,177,0.15);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --container: 1200px;
    --section-gap: 140px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Ocultar barra de rolagem para Chrome, Safari e Opera */
::-webkit-scrollbar {
    display: none !important;
}

/* Desktop zoom: simula o "zoom out 75%" do navegador para melhor visualização em telas padrão */
@media screen and (min-width: 1024px) {
    html { zoom: 0.75; }
}
html.lenis, html.lenis body { height: auto; }
body { font-family: var(--font-primary); color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
::selection { background: var(--green-primary); color: var(--white); }

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(48,197,177,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
    will-change: transform;
}
body:hover .cursor-glow { opacity: 1; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--green-glow);
}

/* ============================================
   GLOBAL BACKGROUND EFFECTS
   ============================================ */
.bg-dot-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.25;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.bg-gradient-blur {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.bg-gradient-blur::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(48,197,177,0.08), transparent 70%);
    border-radius: 50%;
    animation: bgFloat 20s ease-in-out infinite;
}
.bg-gradient-blur::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 20%;
    left: -100px;
    background: radial-gradient(circle, rgba(21,153,135,0.06), transparent 70%);
    border-radius: 50%;
    animation: bgFloat 25s ease-in-out infinite reverse;
}

.bg-noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-aurora {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(48,197,177,0.08), transparent 60%);
}
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.loader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-dbx {
    width: 67px;
    height: 67px;
    object-fit: contain;
    display: block;
}
.loader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gray-200);
    border-top-color: var(--green-primary);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }
.loader-text {
    font-size: 14px;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 99px;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    animation: loaderFill 1.2s ease-in-out forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ============================================
   GLASS UTILITIES
   ============================================ */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-card);
}
.glass-pill {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(48,197,177,0.15);
    border-radius: var(--radius-full);
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 101;
}
.brand-logo-img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}
.footer-logo .brand-logo-img {
    height: 88px;
    filter: brightness(1.35) saturate(1.12) contrast(1.08);
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-icon span {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.logo-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
    animation: logoGlowShift 3s ease-in-out infinite;
}
@keyframes logoGlowShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}
.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav CTA Button */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(48,197,177,0.2);
}
.btn-nav-cta:hover {
    box-shadow: 0 4px 20px rgba(48,197,177,0.35);
    transform: translateY(-1px);
}
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s ease;
    border-radius: 99px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 0 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fffe 0%, var(--white) 50%, var(--gray-50) 100%);
}
.hero-aurora {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(48,197,177,0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(21,153,135,0.06), transparent),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(93,217,200,0.04), transparent);
    animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
    0% { opacity: 1; filter: hue-rotate(0deg); }
    100% { opacity: 0.7; filter: hue-rotate(15deg); }
}

.hero-mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 0% 0%, rgba(48,197,177,0.04) 0%, transparent 50%),
        radial-gradient(at 100% 0%, rgba(21,153,135,0.03) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(48,197,177,0.02) 0%, transparent 50%),
        radial-gradient(at 0% 100%, rgba(220,253,247,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-beam {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(48,197,177,0.15), transparent);
    animation: beamFall linear infinite;
    pointer-events: none;
}
.hero-beam-1 { left: 20%; height: 300px; animation-duration: 6s; animation-delay: 0s; top: -300px; }
.hero-beam-2 { left: 50%; height: 200px; animation-duration: 8s; animation-delay: 2s; top: -200px; }
.hero-beam-3 { left: 80%; height: 250px; animation-duration: 7s; animation-delay: 4s; top: -250px; }
@keyframes beamFall {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100%)); opacity: 0; }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(48,197,177,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48,197,177,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-radial-fade {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

/* Parallax Orbs */
.parallax-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.orb-1 { width: 400px; height: 400px; top: -10%; left: -5%; background: radial-gradient(circle, rgba(48,197,177,0.07), transparent 70%); }
.orb-2 { width: 300px; height: 300px; top: 20%; right: -5%; background: radial-gradient(circle, rgba(21,153,135,0.06), transparent 70%); }
.orb-3 { width: 250px; height: 250px; bottom: 10%; left: 30%; background: radial-gradient(circle, rgba(93,217,200,0.05), transparent 70%); }
.orb-4 { width: 200px; height: 200px; top: 50%; right: 20%; background: radial-gradient(circle, rgba(48,197,177,0.04), transparent 70%); }

/* Particle Canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Layout */
.hero-container {
    max-width: var(--container);
    width: 100%;
    margin: auto auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-dark);
    width: fit-content;
    position: relative;
    overflow: hidden;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    position: relative;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(48,197,177,0.1), transparent);
    animation: shimmer 4s infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.title-line {
    display: block;
}
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.word {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.word-wrap.revealed .word {
    transform: translateY(0);
}

.title-underline-svg {
    display: block;
    width: 100%;
    max-width: 520px;
    height: 12px;
    margin-top: 4px;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1s ease;
}
.title-underline-svg.drawn { stroke-dashoffset: 0; }

/* Hero Subtitle */
.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 520px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-cta {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-size: 15px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(48,197,177,0.25);
}
.btn-primary-cta:hover {
    box-shadow: 0 8px 28px rgba(48,197,177,0.4);
    transform: translateY(-2px);
}
.btn-primary-cta .btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: var(--radius-full);
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary-cta:hover .btn-glow { opacity: 0.4; }

.btn-secondary-cta {
    padding: 14px 32px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 15px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(48,197,177,0.3);
    box-shadow: var(--shadow-card);
}
.btn-secondary-cta:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}
.trust-avatars {
    display: flex;
}
.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-ultra-light), var(--white));
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(var(--i, 0) * -1px - 8px);
    position: relative;
    z-index: calc(5 - var(--i, 0));
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar i { font-size: 12px; color: var(--green-primary); }
.trust-info { font-size: 13px; color: var(--gray-600); }
.trust-stars { color: #FBBF24; font-size: 12px; margin-bottom: 2px; }
.trust-info strong { color: var(--gray-900); }

/* ============================================
   HERO VISUAL / DASHBOARD MOCKUP
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-container {
    position: relative;
    perspective: 1000px;
}
.phone-glow-ring {
    position: absolute;
    inset: -30px;
    border-radius: var(--radius-2xl);
    background: radial-gradient(circle at 50% 50%, rgba(48,197,177,0.08), transparent 60%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.dashboard-mockup {
    width: 480px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        0 4px 16px rgba(0,0,0,0.06),
        0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dash-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-url {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--gray-500);
    background: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    flex: 1;
    text-align: center;
}

.dash-content {
    display: flex;
    min-height: 320px;
}
.dash-sidebar {
    width: 52px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}
.dash-nav-item {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
}
.dash-nav-item[data-slide-idx="0"].active,
.dash-nav-item[data-slide-idx="1"].active {
    background: rgba(48,197,177,0.2);
    color: var(--green-primary);
}
.dash-nav-item[data-slide-idx="2"].active {
    background: rgba(0, 183, 199, 0.2);
    color: #00b7c7; /* Cyan (Tracker) */
}
.dash-nav-item[data-slide-idx="3"].active {
    background: rgba(37,211,102,0.2);
    color: var(--green-whatsapp, #25D366); /* Verde WhatsApp (Disparos) */
}
.dash-nav-item[data-slide-idx="4"].active {
    background: rgba(245,158,11,0.2);
    color: #F59E0B; /* Laranja (Central de Voz) */
}
.dash-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dash-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-greeting {
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
}
.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
}
.status-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-primary);
    box-shadow: 0 0 6px var(--green-glow);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.dash-stat {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    border: 1px solid var(--gray-100);
}
.dash-stat-num {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--green-primary);
    display: block;
}
.dash-stat-label {
    font-size: 10px;
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}

.dash-chart {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--gray-100);
}
.dash-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}
.dcb {
    flex: 1;
    height: 0;
    background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.6;
}
.dcb.animate { height: var(--h); }
.dcb.active { opacity: 1; box-shadow: 0 0 10px rgba(48,197,177,0.3); }

.dash-conversations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dash-convo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}
.convo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--green-primary);
    flex-shrink: 0;
}
.convo-avatar.bot { background: var(--navy); color: var(--green-primary); }
.convo-text { flex: 1; min-width: 0; }
.convo-text strong { font-size: 12px; display: block; color: var(--gray-900); }
.convo-text span { font-size: 11px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.convo-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    background: var(--green-primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}
.convo-time { font-size: 10px; color: var(--gray-400); white-space: nowrap; }

/* Floating badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    white-space: nowrap;
}
.badge-active { top: 15%; left: -20%; }
.badge-instant { bottom: 30%; right: -15%; }
.badge-ai { bottom: 8%; left: -10%; }
.badge-icon-pulse {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ============================================
   DASHBOARD CAROUSEL — SLIDE SYSTEM
   ============================================ */
.float-badge-set {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform: scale(0.95);
    z-index: 20;
}
.float-badge-set.active {
    opacity: 1;
    transform: scale(1);
}
.float-badge-set .float-badge {
    pointer-events: auto;
}
.dash-main {
    position: relative;
    overflow: hidden;
}
.dash-slide {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.dash-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.dash-slide.active > * {
    animation: slideChildIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.dash-slide.active > *:nth-child(1) { animation-delay: 0.05s; }
.dash-slide.active > *:nth-child(2) { animation-delay: 0.12s; }
.dash-slide.active > *:nth-child(3) { animation-delay: 0.2s; }
.dash-slide.active > *:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideChildIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FLOATING BADGE SETS
   ============================================ */
.float-badge-set {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}
.float-badge-set .float-badge {
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.float-badge-set:not(.active) .float-badge {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
}

/* Badge positions (top-left, bottom-right, bottom-left) */
.badge-pos-tl { top: 15%; left: -20%; }
.badge-pos-br { bottom: 30%; right: -15%; }
.badge-pos-bl { bottom: 8%; left: -10%; }

/* ============================================
   KANBAN & FLOW SCREENS
   ============================================ */
.dash-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
}
.dk-col {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 6px;
}
.dk-header {
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gray-200);
}
.dk-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    padding: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dk-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-900);
}
.dk-tag {
    font-size: 8px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    align-self: flex-start;
}
.dk-tag.novo { background: var(--green-ultra-light); color: var(--green-dark); }
.dk-tag.atend { background: #fef08a; color: #854d0e; }
.dk-tag.fim { background: #bbf7d0; color: #166534; }

@keyframes kanbanMoveTask {
    0%, 15% { transform: translate(0, 0) scale(1) rotate(0); box-shadow: 0 1px 2px rgba(0,0,0,0.05); z-index: 50; }
    25% { transform: translate(0, -6px) scale(1.05) rotate(4deg); box-shadow: 0 6px 12px rgba(0,0,0,0.1); z-index: 50; }
    50% { transform: translate(calc(100% + 14px), -6px) scale(1.05) rotate(4deg); box-shadow: 0 6px 12px rgba(0,0,0,0.1); z-index: 50; }
    60%, 100% { transform: translate(calc(100% + 14px), 25px) scale(1) rotate(0); box-shadow: 0 1px 2px rgba(0,0,0,0.05); z-index: 10; }
}
.dash-slide.active .card-mover {
    animation: kanbanMoveTask 4.5s ease-in-out forwards;
    animation-delay: 1s;
    position: relative;
    z-index: 50;
}

.dash-flow {
    position: relative;
    flex: 1;
    min-height: 160px;
    width: 100%;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.flow-path {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 2;
    stroke-dasharray: 4;
}
.dash-slide.active .flow-path.anim {
    stroke: var(--slide-color, var(--green-primary));
    animation: flowDash 15s linear infinite;
}
@keyframes flowDash {
    to { stroke-dashoffset: -100; }
}
.flow-node {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 2;
}
.flow-node i { color: var(--slide-color, var(--green-primary)); }
.flow-node.fn-active {
    border-color: var(--slide-color, var(--green-primary));
    box-shadow: 0 0 0 2px rgba(48,197,177,0.2);
}

/* ============================================
   PROGRESS DOTS
   ============================================ */
.dash-carousel-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 8px;
    position: relative;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.dash-dot:hover {
    background: var(--green-light);
    transform: scale(1.3);
}
.dash-dot.active {
    background: var(--green-primary);
    box-shadow: 0 0 8px var(--green-glow);
    width: 24px;
    border-radius: 99px;
}
.dash-dot-progress {
    display: none;
}

/* ============================================
   CHART VARIANTS — PROGRESS BARS (Bot)
   ============================================ */
.dash-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dash-pbar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-pbar-label {
    font-size: 10px;
    color: var(--gray-500);
    width: 72px;
    flex-shrink: 0;
    text-align: right;
}
.dash-pbar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 99px;
    overflow: hidden;
}
.dash-pbar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dash-slide.active .dash-pbar-fill {
    width: var(--w);
}

/* ============================================
   CHART VARIANTS — SPARKLINE (Tracker)
   ============================================ */
.dash-sparkline {
    height: 60px;
}
.dash-sparkline svg {
    width: 100%;
    height: 100%;
}
.spark-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.2s ease;
}
.spark-area {
    opacity: 0;
    transition: opacity 0.8s ease 0.4s;
}
.dash-slide.active .spark-line {
    stroke-dashoffset: 0;
}
.dash-slide.active .spark-area {
    opacity: 1;
}
.spark-dot {
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}
.dash-slide.active .spark-dot {
    opacity: 1;
}

/* ============================================
   CHART VARIANTS — DONUTS (Send)
   ============================================ */
.dash-donuts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.dash-donut-item {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.donut-ring {
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.dash-slide.active .donut-ring {
    stroke-dashoffset: 25;
}
.dash-donut-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-700);
}
.dash-donut-legends {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}
.dash-donut-legends span {
    font-size: 9px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}
.dash-donut-legends i {
    font-size: 5px;
}

/* ============================================
   CHART VARIANTS — WAVEFORM (Voice)
   ============================================ */
.dash-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60px;
}
.wave-bar {
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dash-slide.active .wave-bar {
    height: var(--h);
    animation: wavePulse 1.5s ease-in-out infinite alternate;
}
.dash-slide.active .wave-bar:nth-child(odd) { animation-delay: 0.1s; }
.dash-slide.active .wave-bar:nth-child(even) { animation-delay: 0.3s; }
.dash-slide.active .wave-bar:nth-child(3n) { animation-delay: 0.5s; }

@keyframes wavePulse {
    0%   { transform: scaleY(1); }
    100% { transform: scaleY(0.6); }
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 99px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
.scroll-indicator span {
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   SECTION HEADER COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-primary);
    display: block;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ============================================
   AGENT CARDS
   ============================================ */
.agents-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.agents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.agent-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--gray-200);
    /* Default variables if none specified */
    --card-accent: var(--green-primary);
    --card-accent-2: var(--green-dark);
    --card-accent-rgb: 48, 197, 177;
}

/* Color Themes mapped to each product's branding */
.agent-card.theme-send {
    --card-accent: #3182ff;
    --card-accent-2: #6e6bff;
    --card-accent-rgb: 49, 130, 255;
}
.agent-card.theme-tracker {
    --card-accent: #00b7c7;
    --card-accent-2: #2f80ff;
    --card-accent-rgb: 0, 183, 199;
}
.agent-card.theme-bot {
    --card-accent: #10b981;
    --card-accent-2: #059669;
    --card-accent-rgb: 16, 185, 129;
}
.agent-card.theme-whats {
    --card-accent: #25d366;
    --card-accent-2: #00a884;
    --card-accent-rgb: 37, 211, 102;
}
.agent-card.theme-voice {
    --card-accent: #ff8a3d;
    --card-accent-2: #ff4d6d;
    --card-accent-rgb: 255, 138, 61;
}

.agent-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(var(--card-accent-rgb), 0.25);
}

/* Spotlight Effect (Aceternity) */
.card-spotlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--card-accent-rgb), 0.08), transparent 60%);
    pointer-events: none;
}
.spotlight-card:hover .card-spotlight { opacity: 1; }

/* Animated Border Glow (MagicUI) */
.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 70%, rgba(var(--card-accent-rgb), 0.4) 85%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
}
.spotlight-card:hover .card-border-glow { opacity: 1; }
.card-border-glow.active { opacity: 1; }
@keyframes borderRotate {
    to { --border-angle: 360deg; }
}
@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.card-content {
    padding: 28px 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.agent-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.1), rgba(var(--card-accent-rgb), 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--card-accent);
    transition: all 0.3s;
}

/* Smooth pop/spring animation when cards are loaded/revealed */
.agent-card.revealed .agent-icon {
    animation: iconPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconPop {
    0% { transform: scale(0.3) rotate(-15deg); opacity: 0; }
    50% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.agent-card:hover .agent-icon {
    background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(var(--card-accent-rgb), 0.3);
}

/* Micro-animations inside the icons on hover */
.agent-card.theme-send:hover .agent-icon i {
    animation: planeFly 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite alternate;
}
@keyframes planeFly {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4px, -4px) rotate(-8deg) scale(1.05); }
}

.agent-card.theme-tracker:hover .agent-icon i {
    animation: chartRise 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite alternate;
}
@keyframes chartRise {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-3px); }
}

.agent-card.theme-bot:hover .agent-icon i {
    animation: robotBob 0.8s ease-in-out infinite alternate;
}
@keyframes robotBob {
    0% { transform: rotate(-8deg) translateY(0); }
    100% { transform: rotate(8deg) translateY(-2px); }
}

.agent-card.theme-whats:hover .agent-icon i {
    animation: whatsWobble 0.6s ease-in-out infinite;
}
@keyframes whatsWobble {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-12deg) scale(1.05); }
    30% { transform: rotate(14deg) scale(1.05); }
    45% { transform: rotate(-10deg) scale(1.05); }
    60% { transform: rotate(10deg) scale(1.05); }
    75% { transform: rotate(-4deg) scale(1.05); }
    90% { transform: rotate(4deg) scale(1.05); }
}

.agent-card.theme-voice:hover .agent-icon i {
    animation: voicePulse 0.8s ease-in-out infinite alternate;
}
@keyframes voicePulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 138, 61, 0)); }
    100% { transform: scale(1.2) rotate(5deg); filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.4)); }
}
.agent-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}
.agent-desc {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   MARQUEE (REVAMPED)
   ============================================ */
.marquee-section {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 18px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(48, 197, 177, 0.12);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 -10px 40px rgba(0, 0, 0, 0.02);
}

/* Moving laser effect on top border */
.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(48, 197, 177, 0.05) 20%, 
        rgba(48, 197, 177, 0.5) 50%, 
        rgba(48, 197, 177, 0.05) 80%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: borderLaserFlow 8s linear infinite;
}

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

.marquee-wrapper { 
    position: relative; 
    overflow: hidden; 
    padding: 8px 0;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left { 
    left: 0; 
    background: linear-gradient(90deg, #ffffff 10%, rgba(255, 255, 255, 0.8) 30%, transparent 100%); 
}
.marquee-fade-right { 
    right: 0; 
    background: linear-gradient(270deg, #ffffff 10%, rgba(255, 255, 255, 0.8) 30%, transparent 100%); 
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

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

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    gap: 45px;
    padding: 0 22px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(48, 197, 177, 0.08);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.01),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Staggered float animation using --i variable defined in HTML */
    animation: logoFloat 5s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.25s);
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.logo-item img {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4) contrast(0.85);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(48, 197, 177, 0.35);
    box-shadow: 
        0 12px 28px rgba(48, 197, 177, 0.08), 
        0 2px 4px rgba(48, 197, 177, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px) scale(1.04) rotate(1deg);
    animation-play-state: paused;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(0.95) contrast(1) drop-shadow(0 4px 12px rgba(48, 197, 177, 0.15));
}

/* ============================================
   BENTO GRID
   ============================================ */
.who-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    position: relative;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(48,197,177,0.2);
}
.bento-large { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-content {
    padding: 32px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(48,197,177,0.1), rgba(21,153,135,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green-primary);
    margin-bottom: 16px;
}
.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.bento-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Mini Chart */
.bento-visual { margin-top: auto; padding-top: 24px; }
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}
.chart-bar {
    flex: 1;
    height: 0;
    background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.7;
}
.chart-bar.animate { height: var(--h); }

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.value-card {
    position: relative;
    background: linear-gradient(135deg, var(--green-ultra-light), #e8fef8);
    border-radius: var(--radius-2xl);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(48,197,177,0.15);
}
.value-gear-visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
}
.value-gear-image {
    width: min(420px, 96%);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 34px rgba(13,27,42,0.2));
    transform-origin: 50% 50%;
    will-change: transform;
}
.value-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(48,197,177,0.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.value-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 32px;
}
.value-content,
.value-visual {
    position: relative;
    z-index: 2;
}
.value-content {
    grid-column: 2;
    grid-row: 1;
    display: block;
}
.value-visual {
    display: none;
}
.value-content h2 strong {
    color: var(--green-dark);
}
.btn-dark {
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-dark:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Ecosystem Visual */
.value-ecosystem-visual {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
}
.eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(48,197,177,0.3);
}
.eco-center span {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 1px;
}
.eco-center-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(48,197,177,0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

.eco-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(48,197,177,0.2);
    border-radius: 50%;
}
.eco-orbit-1 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation: orbitSpin 40s linear infinite;
}
.eco-orbit-2 {
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    animation: orbitSpin 60s linear infinite reverse;
}
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.eco-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(48,197,177,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green-primary);
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle)));
    animation: counterSpin 40s linear infinite;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.eco-node-sm {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(48,197,177,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--green-dark);
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(150px) rotate(calc(-1 * var(--angle)));
    animation: counterSpinReverse 60s linear infinite;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@keyframes counterSpin { to { transform: rotate(calc(var(--angle) + 360deg)) translateX(100px) rotate(calc(-1 * var(--angle) - 360deg)); } }
@keyframes counterSpinReverse { to { transform: rotate(calc(var(--angle) - 360deg)) translateX(150px) rotate(calc(-1 * var(--angle) + 360deg)); } }

.eco-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
    background: var(--gray-50);
}

/* ============================================
   SOLUTIONS VIDEO PLAYER
   ============================================ */
.solutions-video-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 52px auto 0;
}
.solutions-video-glow {
    position: absolute;
    inset: -48px;
    border-radius: 48px;
    background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(48,197,177,0.20), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    animation: videoGlowPulse 4s ease-in-out infinite alternate;
    z-index: 0;
}
@keyframes videoGlowPulse {
    from { opacity: 0.6; transform: scale(0.96); }
    to   { opacity: 1;   transform: scale(1.03); }
}
.solutions-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(48,197,177,0.22);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 28px 72px rgba(0,0,0,0.20),
        0 8px 24px rgba(48,197,177,0.10);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
    z-index: 1;
}
.solutions-video-frame:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(48,197,177,0.32),
        0 36px 90px rgba(0,0,0,0.24),
        0 12px 34px rgba(48,197,177,0.18);
}
.solutions-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)), url('https://img.youtube.com/vi/ox3jdq7UL0k/maxresdefault.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.video-play-btn {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(48, 197, 177, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 0 0 rgba(48, 197, 177, 0.5), 0 12px 36px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
}
.video-play-btn i {
    margin-left: 6px;
}
.video-overlay-text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
    transition: transform 0.4s ease;
}
.video-overlay:hover .video-play-btn {
    transform: scale(1.15);
    background-color: #30c5b1;
    box-shadow: 0 0 0 16px rgba(48, 197, 177, 0), 0 18px 48px rgba(0, 0, 0, 0.45);
}
.video-overlay:hover .video-overlay-text {
    transform: translateY(2px);
}
.solutions-video-frame.playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@media (max-width: 768px) {
    .solutions-video-wrap { margin-top: 32px; }
    .solutions-video-frame { border-radius: 12px; }
    .video-play-btn { width: 66px; height: 66px; font-size: 20px; margin-bottom: 12px; }
    .video-overlay-text { font-size: 16px; }
}


.features-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    pointer-events: none;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(48,197,177,0.2);
}
.feature-card .card-content { padding: 32px; }
.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(48,197,177,0.1), rgba(21,153,135,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green-primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(48,197,177,0.25);
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.feature-tag {
    display: inline-flex;
    padding: 4px 12px;
    background: var(--green-ultra-light);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(48,197,177,0.15);
}

/* ============================================
   SOLUTIONS BENTO GRID (Creative Layout)
   ============================================ */
.solutions-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bento-card {
    position: relative;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(48,197,177,0.35);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    min-height: 240px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--green-primary);
}

.bento-hero {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(220,253,247,0.5));
}

.bento-medium {
    grid-column: span 1;
}

.bento-small {
    grid-column: span 1;
}

.bento-card .card-content {
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
}

.bento-hero .card-content {
    padding: 34px 40px;
    justify-content: flex-start;
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-hero h3 {
    font-size: 28px;
    margin-bottom: 16px;
    max-width: 540px;
}

.feature-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--green-ultra-light);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1px solid rgba(48,197,177,0.15);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tag-meta {
    background: var(--meta-blue-light);
    color: var(--meta-blue);
    border-color: rgba(6, 104, 225, 0.2);
}

.tag-meta i {
    font-size: 14px;
}

.tag-meta img {
    height: 12px;
    width: auto;
}

.bento-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bento-hero p {
    font-size: 16px;
    max-width: 520px;
    color: var(--gray-600);
}

.bento-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 24px;
    overflow: hidden;
}

.meta-hero-icon {
    background: transparent;
    padding: 0;
    border: none;
    overflow: visible;
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.meta-hero-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    display: block;
}

/* Bento Grid Responsive Overrides */
@media (max-width: 1024px) {
    .solutions-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-hero {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .solutions-bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bento-hero, .bento-medium, .bento-small {
        grid-column: span 1;
    }
    .bento-hero .card-content {
        padding: 30px 24px;
    }
}

/* ============================================
   HOW IT WORKS — TIMELINE
   ============================================ */
.how-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    border-radius: 99px;
}
.timeline-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    transition: height 0.1s linear;
}
.timeline-step {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-step:last-child { margin-bottom: 0; }

.step-marker {
    position: absolute;
    left: -60px;
    top: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.step-num {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-400);
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}
.timeline-step.active .step-num { color: var(--green-primary); }

.marker-ring {
    position: absolute;
    inset: 6px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    transition: all 0.4s;
}
.timeline-step.active .marker-ring {
    border-color: var(--green-primary);
    box-shadow: 0 0 12px rgba(48,197,177,0.3);
}
.marker-pulse {
    position: absolute;
    inset: 6px;
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    opacity: 0;
    animation: markerPulse 2s ease-out infinite;
}
.timeline-step.active .marker-pulse { opacity: 1; }
@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.step-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.step-card .card-content { padding: 32px; }
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(48,197,177,0.1), rgba(21,153,135,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green-primary);
    margin-bottom: 16px;
}
.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 0;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.footer-meta-badge {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 320px;
}

/* ============================================
   STATS — DARK SECTION
   ============================================ */
.stats-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.stats-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 30% 50%, rgba(48,197,177,0.1), transparent),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(21,153,135,0.08), transparent);
    animation: auroraShift 10s ease-in-out infinite alternate;
    pointer-events: none;
}
.stats-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.stat-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.stat-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suffix {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 600;
    color: var(--green-primary);
}
.stat-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.stat-bar {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}
.stat-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    border-radius: 99px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-bar-fill.animate { width: var(--w); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.testimonials-swiper {
    padding-bottom: 48px;
}
.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.testimonial-quote {
    color: var(--green-primary);
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.6;
}
.testimonial-stars {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}
.testimonial-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-ultra-light), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green-primary);
    flex-shrink: 0;
}
.gradient-border {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--green-primary), var(--green-dark));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}
.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
}
.swiper-pagination-bullet {
    background: var(--gray-300);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active {
    background: var(--green-primary);
    width: 24px;
    border-radius: 99px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: var(--section-gap) 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pricing-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pricing-orb {
    position: absolute;
    border-radius: 50%;
}
.pricing-orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(48,197,177,0.04), transparent 70%);
}
.pricing-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(21,153,135,0.03), transparent 70%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.pricing-card.popular {
    border-color: rgba(48,197,177,0.3);
    box-shadow: 0 8px 32px rgba(48,197,177,0.12);
    transform: scale(1.03);
}
.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 12px 40px rgba(48,197,177,0.18);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
    white-space: nowrap;
    overflow: hidden;
    z-index: 2;
}
.popular-badge .badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(48,197,177,0.15), transparent);
    animation: shimmer 3s infinite;
}

.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.currency { font-size: 18px; font-weight: 600; color: var(--gray-500); }
.amount {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}
.custom-price { font-size: 24px; }
.period { font-size: 14px; color: var(--gray-500); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}
.pricing-features li i { font-size: 12px; color: var(--green-primary); }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--gray-400); }

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: var(--white);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(48,197,177,0.3);
    transition: all 0.3s;
}
.btn-pricing:hover {
    background: var(--green-ultra-light);
    border-color: var(--green-primary);
}
.btn-pricing-popular {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(48,197,177,0.25);
}
.btn-pricing-popular:hover {
    box-shadow: 0 8px 28px rgba(48,197,177,0.4);
    transform: translateY(-2px);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    box-shadow: var(--shadow-card-hover);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--green-primary); }
.faq-question i {
    font-size: 14px;
    color: var(--green-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-2xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.cta-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 80%, rgba(48,197,177,0.12), transparent),
        radial-gradient(ellipse 40% 40% at 70% 20%, rgba(21,153,135,0.08), transparent);
    animation: auroraShift 8s ease-in-out infinite alternate;
    pointer-events: none;
}
.cta-beams { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-beam {
    position: absolute;
    width: 1px;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(48,197,177,0.2), transparent);
    animation: beamFall 8s linear infinite;
}
.cta-beam:nth-child(1) { left: 25%; animation-delay: 0s; top: -150px; }
.cta-beam:nth-child(2) { left: 50%; animation-delay: 3s; top: -150px; }
.cta-beam:nth-child(3) { left: 75%; animation-delay: 6s; top: -150px; }

.cta-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-size: 15px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(48,197,177,0.3);
}
.btn-cta-primary:hover {
    box-shadow: 0 8px 32px rgba(48,197,177,0.5);
    transform: translateY(-2px);
}
.btn-cta-primary .btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: var(--radius-full);
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-cta-primary:hover .btn-glow { opacity: 0.5; }

.btn-cta-secondary {
    padding: 16px 36px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 15px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-950);
    padding: 80px 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.footer-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    transition: all 0.3s;
}
.social-btn:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48,197,177,0.3);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    padding: 4px 0;
    transition: all 0.2s;
}
.footer-col a:hover {
    color: var(--green-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.footer-logo .logo-text { color: var(--white); }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.wpp-ripple {
    position: absolute;
    inset: 0;
    border: 2px solid var(--green-whatsapp);
    border-radius: 50%;
    animation: wppRipple 2s ease-out infinite;
}
.wpp-ripple-2 { animation-delay: 1s; }
@keyframes wppRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 40px;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-subtitle { margin: 0 auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .dashboard-mockup { width: 420px; transform: none; }
    .dashboard-mockup:hover { transform: none; }
    .float-badge { display: none; }
    .agents-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-row: span 1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { grid-column: span 2; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .value-card { grid-template-columns: 1fr; padding: 48px; }
    .value-gear-visual {
        grid-column: 1;
        min-height: auto;
        margin-bottom: 12px;
    }
    .value-gear-image { width: min(340px, 80%); }
    .value-content { grid-column: 1; }
    .value-visual { grid-column: 1; }
    .value-ecosystem-visual { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
    :root { --section-gap: 80px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
    }
    .nav-links.active { right: 0; }
    .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--gray-100); font-size: 16px; }
    .brand-logo-img { height: 34px; }
    .hero {
        padding: 100px 0 60px;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .hero-title { font-size: clamp(32px, 7vw, 48px); }
    .dashboard-mockup { width: 100%; max-width: 380px; }
    .dashboard-mockup { display: none; }
    .hero-visual { display: none; }
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { grid-column: span 1; max-width: none; transform: none; }
    .pricing-card.popular:hover { transform: translateY(-6px); }
    .footer-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 48px; }
    .step-marker { left: -48px; }
    .value-card { padding: 32px; }
    .value-gear-visual { display: none; }
    .cta-card { padding: 48px 24px; }
    .cursor-glow { display: none; }
    
    /* Responsive marquee override */
    .marquee-section {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 50px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-top: 1px dashed rgba(48, 197, 177, 0.15);
        border-bottom: 1px dashed rgba(48, 197, 177, 0.15);
        box-shadow: none;
        padding: 20px 0;
    }
    .marquee-section::before {
        display: none;
    }
    .marquee-fade-left {
        background: linear-gradient(90deg, #f8fffe, transparent);
    }
    .marquee-fade-right {
        background: linear-gradient(270deg, #f8fffe, transparent);
    }
}

@media (max-width: 480px) {
    .agents-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 36px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================
   ANIMATIONS FOR [data-reveal]
   (Used by ScrollTrigger)
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
