/* ============================================
   Autovictus — ELITE DARK UI
   Ultra-Modern Glass + Emerald Theme
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #020617;
    --bg-midnight: #071029;
    --surface: #0f172a;
    --surface-card: #0E1722;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #AAB4C7;
    --brand-green: #25D366;
    --cta-green: #12B04A;
    --accent-teal: #0d9488;
    --warm-accent: #FFB857;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.06);
    --cta-gradient: linear-gradient(90deg, #25D366 0%, #00C2A8 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

html { scroll-behavior: smooth; font-size: 16px; }
*:focus-visible { outline: 2px solid var(--accent-teal); outline-offset: 2px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
}

.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes noise-shift {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
    100% { transform: translate(0, 0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   FLOATING PILL NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 850px;
    transition: top var(--transition);
}

.navbar.scrolled { top: 12px; }

.nav-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 8px 20px;
    background: rgba(14, 23, 34, 0.6);
    backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    margin-right: 6px;
}

.logo-icon { font-size: 1.15rem; }
.logo-text { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; }
.logo-highlight { color: var(--brand-green); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: var(--cta-gradient);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(18, 176, 74, 0.15);
}

.nav-cta:hover {
    box-shadow: 0 12px 28px rgba(18, 176, 74, 0.35), 0 0 30px rgba(16, 185, 129, 0.3);
    transform: translateY(-3px) scale(1.03) rotate(-0.5deg);
    filter: brightness(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO — Dark gradient with noise texture
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg-dark);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(13, 148, 136, 0.12) 0%, transparent 60%);
    z-index: 0;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: noise-shift 0.5s steps(10) infinite;
    pointer-events: none;
}

.orb { display: none; }

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.left-content { text-align: left; max-width: 540px; }
.left-content .hero-badge { margin-bottom: 24px; }
.left-content .hero-title { font-size: clamp(2.5rem, 4.5vw, 3.5rem); margin-bottom: 24px; }
.left-content .hero-subtitle { margin: 0 0 40px; }
.left-content .hero-ctas { justify-content: flex-start; }

/* === WHATSAPP MOCKUP 3D === */
.right-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mockup-container {
    width: 320px;
    background: #0B141A;
    border-radius: 30px;
    border: 8px solid #1f2937;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotateY(-12deg) rotateX(8deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-container:hover { transform: rotateY(-5deg) rotateX(3deg) translateY(-10px); }
.mockup-3d { transform: rotateY(-15deg) rotateX(10deg); }
.mockup-3d:hover { transform: rotateY(-8deg) rotateX(5deg) translateY(-15px); }

.mockup-reflection {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) rotateX(-60deg);
    width: 280px;
    height: 100px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    animation: reflection-pulse 3s ease-in-out infinite;
}

@keyframes reflection-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) rotateX(-60deg) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) rotateX(-60deg) scale(1.1); }
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(50px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.wa-header {
    background: #075E54;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wa-info { display: flex; flex-direction: column; }
.wa-name { font-size: 0.95rem; font-weight: 600; color: #fff; }
.wa-status { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); }

.wa-chat-area {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="%230B141A"/><path d="M10 10c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 2c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8zm20 30c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 2c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8zm30-20c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 2c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8zm-20 40c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 2c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8z" fill="%231e2b33" opacity="0.4"/></svg>');
    height: 420px;
}

.wa-message {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    max-width: 85%;
    position: relative;
    color: #fff;
    line-height: 1.4;
}

.wa-message p { margin: 0 0 4px; }
.wa-message.out { background: #005C4B; align-self: flex-end; border-top-right-radius: 0; }
.wa-message.in { background: #1F2C34; align-self: flex-start; border-top-left-radius: 0; }
.wa-time { display: block; font-size: 0.65rem; color: #AAB4C7; text-align: right; margin-top: 2px; }
.wa-ticks { color: #53bdeb; margin-left: 4px; font-weight: bold; }
.wa-action a { color: #53bdeb; text-decoration: underline; }

/* === COMPLIANCE STRIP === */
.compliance-strip {
    border-top: 1px solid var(--glass);
    border-bottom: 1px solid var(--glass);
    background: rgba(15, 23, 42, 0.4);
    padding: 24px 0;
    margin-top: 0;
}

.compliance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.compliance-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.compliance-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.logo-slot {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.3;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.logo-slot:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(37, 211, 102, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-green);
    letter-spacing: 2.5px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5.8vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero-title em { font-style: italic; }

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-ultra {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(18, 176, 74, 0.25), 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-glow 2s ease-in-out infinite, gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(18, 176, 74, 0.2), 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 12px 32px rgba(18, 176, 74, 0.35), 0 0 20px 4px rgba(16, 185, 129, 0.2); }
}

.btn-primary { 
    background: linear-gradient(135deg, #10b981 0%, #00c2a8 100%); 
    color: #FFFFFF; 
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25); 
    animation: pulse-glow 2s ease-in-out infinite; 
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4), 0 0 30px 6px rgba(16, 185, 129, 0.25), 0 0 60px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
    animation: none;
}

.btn-glass {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(234, 242, 255, 0.08);
    padding: 12px 24px;
}

.btn-glass:hover { border-color: rgba(234, 242, 255, 0.2); transform: translateY(-2px); }
.btn:disabled, .btn.disabled { opacity: 0.48; filter: grayscale(20%); cursor: not-allowed; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

.stat-number { display: block; font-size: 3rem; font-weight: 800; color: var(--text-primary); letter-spacing: -1.5px; margin-bottom: 4px; }
.stat-label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--brand-green); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.products { padding: 180px 0; position: relative; background: transparent; }
.features { 
    padding: 180px 0; 
    position: relative; 
    background-color: #020617;
    background-image: 
        radial-gradient(at var(--mouse-x) var(--mouse-y), hsla(161, 84%, 39%, 0.12) 0px, transparent 40%),
        radial-gradient(at 0% 0%, hsla(180, 100%, 38%, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(161, 84%, 39%, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, hsla(217, 91%, 60%, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
    transition: background 0.2s ease-out;
}
.products { border-top: 1px solid rgba(0, 0, 0, 0.08); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--brand-green);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PRODUCTS — STRATEGIC BENTO GRID
   ============================================ */


.dash-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.1) 50%, rgba(16, 185, 129, 0.3) 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;
    pointer-events: none;
}

.dash-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dash-card:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 
        0 0 40px rgba(16, 185, 129, 0.25),
        0 0 80px rgba(16, 185, 129, 0.1),
        inset 0 0 30px rgba(16, 185, 129, 0.05);
    transform: translateY(-4px);
}

.dash-card:hover::after {
    opacity: 1;
}

.dash-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.dash-card-header .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dash-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
}

.dash-card-body {
    position: relative;
    z-index: 1;
}

/* CRM Card */
.crm-card {
    grid-column: span 2;
}

.brand-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.brand-module {
    background: linear-gradient(180deg, #1a1d23 0%, #21252b 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.brand-module:hover {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(16, 185, 129, 0.1);
}

.brand-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Analytics Card */
.analytics-card {
    grid-column: span 2;
}

.gauge-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.radial-gauge {
    width: 100%;
    height: 100%;
}

.radial-gauge circle:nth-child(2) {
    stroke-width: 16;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    line-height: 1;
}

.gauge-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 4px;
}

.data-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.data-tile {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}

.tile-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
}

.tile-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #64748b;
    margin-top: 2px;
}

.sparkline-bg {
    height: 40px;
    opacity: 0.6;
}

.sparkline-bg svg {
    width: 100%;
    height: 100%;
}

/* Lead Card */
.lead-card {
    grid-column: span 1;
    grid-row: span 2;
}

.lead-profile-extracted {
    text-align: center;
    margin-bottom: 20px;
}

.lead-avatar-extracted {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.lead-avatar-extracted svg {
    width: 50px;
    height: 50px;
}

.lead-name-extracted {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
}

.platinum-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(234, 179, 8, 0.1) 100%);
    border: 1px solid rgba(234, 179, 8, 0.4);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lead-details-extracted {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    color: #10b981;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
}

.highlight-budget {
    color: #10b981;
    font-weight: 600;
}

.n8n-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.flow-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.flow-step span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #64748b;
}

.flow-arrow {
    display: flex;
    align-items: center;
}

.fiber-line {
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fiber-line svg {
    width: 100%;
    height: 100%;
}

/* Status Card */
.status-card {
    grid-column: span 2;
}

.status-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.4);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.4);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 6px rgba(16, 185, 129, 0.4), 0 0 10px rgba(16, 185, 129, 0.2);
    }
}

.status-dot.active {
    background: #10b981;
}

.status-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
    flex: 1;
}

.status-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

/* Actions Card */
.actions-card {
    grid-column: span 1;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .crm-card { grid-column: span 2; }
    .analytics-card { grid-column: span 1; }
    .lead-card { grid-column: span 1; grid-row: span 1; }
    .status-card { grid-column: span 2; }
    .actions-card { grid-column: span 1; }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .crm-card,
    .analytics-card,
    .lead-card,
    .status-card,
    .actions-card {
        grid-column: span 1;
    }
    .data-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

.strategic-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
}

.strategic-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 60px;
}

.strategic-bento .bento-card {
    background: linear-gradient(180deg, #020617 0%, #021025 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.strategic-bento .bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, transparent 60%);
    -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;
    pointer-events: none;
}

.strategic-bento .bento-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.strategic-bento .bento-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.strategic-bento .bento-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
}

.strategic-bento .bento-card-body {
    position: relative;
    z-index: 1;
}

.strategic-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Hero Card */
.strategic-hero {
    grid-column: span 1;
    grid-row: span 2;
}

.burj-neural-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-workflow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

.workflow-step .step-icon {
    font-size: 1.4rem;
}

.workflow-step.qualified {
    color: #10b981;
}

.workflow-step.qualified .step-icon {
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-arrow {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Lead Snapshot */
.lead-snapshot {
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 10, 37, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(8px);
}

.snapshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, 0.08);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.snapshot-sparkle {
    font-size: 1rem;
}

.snapshot-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.3px;
}

.snapshot-body {
    padding: 18px;
}

.lead-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.lead-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.lead-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
}

.lead-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.lead-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.detail-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 500;
}

.lead-action {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.action-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    animation: action-pulse 2s ease-in-out infinite;
}

@keyframes action-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.4); }
}

/* Funnel Icon */
.funnel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Composite Workflow */
.composite-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 20px;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.node-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wa-node {
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid #25d366;
    color: #25d366;
}

.brain-node {
    background: rgba(236, 72, 153, 0.15);
    border: 2px solid #ec4899;
    color: #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.check-node {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    color: #10b981;
}

.node-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.workflow-link {
    display: flex;
    align-items: center;
}

/* Calendar Icon */
.calendar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gear Icon */
.gear-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Speech Icon */
.speech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chart Icon */
.chart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CRM Detail Icons */
.crm-detail-icons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.crm-detail-box {
    padding: 12px 16px;
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deep CRM Integration Section */
.deep-crm-section .crm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.deep-crm-section .crm-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
    letter-spacing: 0.3px;
}

.crm-node-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, #064e3b 0%, #0d2922 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.node-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 40%, transparent 70%);
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.crm-bento-container {
    position: relative;
    padding: 20px 0;
}

.crm-connector-lines {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
}

.connector-svg {
    width: 100%;
    height: 100%;
}

.connector-line {
    stroke-dasharray: 6 3;
    animation: connectorFlow 2s linear infinite;
}

@keyframes connectorFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -9; }
}

.connector-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.crm-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.crm-glass-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 35, 44, 0.7) 0%, rgba(20, 24, 30, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(16, 185, 129, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 120px;
}

.crm-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(16, 185, 129, 0.1) 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;
    pointer-events: none;
}

.crm-glass-card:hover {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.crm-status-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
}

.crm-status-pill.connected-badge {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.crm-logo-wrapper {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-logo {
    width: 100px;
    height: auto;
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
}

.crm-glass-card:hover .crm-logo {
    opacity: 1;
    filter: saturate(0.5) brightness(1.15);
}

.crm-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Side Cards */
.strategic-side {
    min-height: 180px;
}

/* Glass Calendar */
.glass-calendar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cal-slot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.cal-slot.hnw {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.cal-slot .cal-time {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    min-width: 65px;
}

.cal-slot .cal-event {
    font-size: 0.85rem;
    color: #e2e8f0;
    flex: 1;
}

.cal-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CRM Logos */
.crm-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.crm-logo {
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #475569;
    transition: all 0.4s ease;
}

.crm-logo.ghost:hover {
    color: #f8fafc;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Bottom Cards */
.strategic-bottom {
    min-height: 160px;
}

.lang-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.lang-text {
    font-size: 0.95rem;
    padding: 10px 14px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.lang-text.arabic {
    font-family: 'Noto Naskh Arabic', serif;
    direction: rtl;
    color: #e2e8f0;
}

.lang-text.english {
    color: #94a3b8;
}

/* Growth Chart */
.growth-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.growth-curve {
    width: 100%;
    height: 60px;
}

.growth-stat {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .strategic-bento {
        grid-template-columns: 1fr 1fr;
    }
    .strategic-hero {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .strategic-bento {
        grid-template-columns: 1fr;
    }
    .strategic-hero {
        grid-column: span 1;
    }
}

/* ============================================
   PRODUCTS — Featured + Standard cards
   ============================================ */
/* === ALTERNATING FEATURES === */
.features-alternating {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
}

.bento-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, transparent 50%, rgba(13, 148, 136, 0.2) 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;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.1);
}

.bento-card.bento-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

/* PREMIUM CARD STYLES */
.bento-card.bento-large.bento-premium {
    background: linear-gradient(180deg, #020617 0%, #020b1a 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 0 40px rgba(16, 185, 129, 0.1),
        0 4px 24px rgba(0, 0, 0, 0.4);
}

.bento-card.bento-large.bento-premium::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.5) 0%, rgba(13, 148, 136, 0.3) 50%, rgba(16, 185, 129, 0.4) 100%);
}

.bento-card.bento-large.bento-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 0 60px rgba(16, 185, 129, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Premium AI Icon - Burj Khalifa Neural */
.premium-ai-icon {
    margin-bottom: 20px;
}

.premium-ai-icon svg {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.premium-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #f8fafc !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
}

.premium-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    width: fit-content;
}

.premium-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    letter-spacing: -1px;
}

.premium-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Glass Chat */
.glass-chat {
    background: rgba(30, 41, 59, 0.4) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-msg {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 90%;
    position: relative;
}

.glass-msg.lead-msg {
    background: rgba(51, 65, 85, 0.7);
    color: #e2e8f0;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.glass-msg.ai-msg {
    background: rgba(16, 185, 129, 0.2);
    color: #f0fdf4;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bento-content { position: relative; z-index: 1; }

.bento-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bento-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.bento-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

.bento-stats { display: flex; gap: 24px; }
.bento-stat { display: flex; flex-direction: column; }
.bento-stat .stat-num { font-size: 1.5rem; font-weight: 800; color: var(--brand-green); }
.bento-stat .stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.bento-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b141a;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.bento-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.mini-chat { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 260px; }
.mini-msg { padding: 10px 14px; border-radius: 12px; font-size: 0.75rem; line-height: 1.4; max-width: 90%; }
.mini-msg.out { background: #005C4B; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.mini-msg.in { background: #1F2C34; color: white; align-self: flex-start; border-bottom-left-radius: 4px; }

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.bento-large { grid-column: span 2; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.bento-large { grid-column: span 1; }
}

/* ============================================
   FEATURES GRID — Custom 3D Icons
   ============================================ */
.features { border-top: 1px solid rgba(255, 255, 255, 0.04); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-item {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: rgba(14, 23, 34, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), inset 0 0 20px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.feature-item:hover {
    border-color: rgba(0, 194, 168, 0.3);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 16px rgba(0, 194, 168, 0.15);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 18px;
}

.feature-icon-wrap.icon-3d {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrap.icon-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: icon-shine 3s ease-in-out infinite;
}

@keyframes icon-shine { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.feature-title { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* === ZIGZAG FEATURES === */
.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zigzag-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.zigzag-item:nth-child(even) {
    transition-delay: 0.2s;
}

.zigzag-flipped {
    direction: rtl;
}

.zigzag-flipped .zigzag-content {
    direction: ltr;
}

.zigzag-content {
    padding: 20px;
}

.zigzag-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.zigzag-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.zigzag-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.zigzag-stat {
    display: inline-flex;
    flex-direction: column;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.zigzag-stat-num {
    font-family: ui-monospace, 'Courier New', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.zigzag-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.zigzag-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 40px;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.zigzag-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.speed-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 200px;
}

.speed-bar {
    height: 12px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 6px;
    overflow: hidden;
}

.speed-fill {
    height: 100%;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.brain-demo {
    width: 100%;
    height: 100px;
}

.neural-net {
    width: 100%;
    height: 100%;
}

.integration-demo {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.integ-node {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    animation: nodeFloat 3s ease-in-out infinite;
}

.integ-node:nth-child(2) { animation-delay: 0.5s; }
.integ-node:nth-child(3) { animation-delay: 1s; }
.integ-node:nth-child(4) { animation-delay: 1.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.chart-demo {
    width: 100%;
    max-width: 250px;
}

.mini-chart {
    width: 100%;
    height: auto;
}

.shield-demo {
    color: #10b981;
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.6)); }
}

.support-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 240px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 90%;
}

.chat-message.user-message {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-message.ai-message {
    align-self: flex-start;
    align-items: flex-start;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
}

.ai-avatar {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.message-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.user-message .message-bubble {
    background: #1e293b;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.ai-message .message-bubble.ai-bubble {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #020617;
    border-bottom-left-radius: 4px;
    font-weight: 500;
}

.message-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 4px;
}

.ai-message .message-time {
    font-size: 0.65rem;
    color: rgba(16, 185, 129, 0.8);
    font-weight: 500;
}

@media (max-width: 768px) {
    .zigzag-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .zigzag-flipped {
        direction: ltr;
    }
    .zigzag-visual {
        min-height: 180px;
        padding: 24px;
    }
    .zigzag-title {
        font-size: 1.4rem;
    }
}

/* === ROI CALCULATOR === */
.roi-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at right, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.roi-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.roi-text .section-tag { margin-bottom: 16px; }
.roi-text .section-title { font-size: 2.5rem; margin-bottom: 24px; text-align: left; }
.roi-text .section-subtitle { text-align: left; max-width: 100%; }

.roi-calculator {
    background: #0b1120;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.roi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.roi-header h3 { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.roi-value { font-size: 3rem; font-weight: 800; color: var(--brand-green); line-height: 1; text-shadow: 0 0 20px rgba(16, 185, 129, 0.5); font-family: ui-monospace, 'Courier New', monospace; }

.roi-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    outline: none;
    margin-bottom: 40px;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 1), 0 0 60px rgba(16, 185, 129, 0.6);
}

.roi-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.roi-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 1), 0 0 60px rgba(16, 185, 129, 0.6);
}

.roi-results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.roi-result-item {
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.roi-result-item.box-dark { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.05); }
.roi-result-item.box-green { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); }

.result-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.box-green .result-label { color: var(--brand-green); }
.result-number { 
    font-size: 2rem; 
    font-weight: 700; 
    color: var(--text-primary); 
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    font-family: ui-monospace, 'SF Mono', 'Consolas', monospace;
}

.result-number.updating {
    transform: scale(1.05);
}

#hours-saved, #revenue-added {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#revenue-added {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

#revenue-added.highlight {
    text-shadow: 0 0 40px rgba(16, 185, 129, 1);
    transform: scale(1.05);
}

#revenue-added.slot-animating {
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .roi-results { grid-template-columns: 1fr; }
    .roi-result-item { flex-direction: row; justify-content: space-between; align-items: center; }
    .result-number { font-size: 1.5rem; }
    .roi-slider { height: 12px; }
    .roi-slider::-webkit-slider-thumb { width: 32px; height: 32px; }
}

/* === HUMAN VS AI COMPARISON === */
.efficiency-gap { padding: 120px 0; background: var(--bg-dark); }

.glass-table {
    background: linear-gradient(180deg, #020617 0%, #021019 100%) !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 0 40px rgba(16, 185, 129, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(16, 185, 129, 0.05); }

.comparison-cell {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
}

.header-cell { font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.metric-name { justify-content: flex-start; gap: 12px; color: var(--text-muted); font-weight: 500; }
.metric-name svg { color: var(--brand-green); flex-shrink: 0; }
.human-col { color: var(--text-secondary); border-left: 1px solid rgba(255, 255, 255, 0.05); }
.ai-col { 
    color: var(--text-primary); 
    border-left: 1px solid rgba(255, 255, 255, 0.05); 
    background: rgba(16, 185, 129, 0.05); 
}
.winner-badge {
    font-size: 0.9rem;
    animation: star-pulse 1.5s ease-in-out infinite;
}

.winner-badge svg {
    color: #fbbf24;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.8));
    animation: star-pulse 1.5s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.8));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(251, 191, 36, 1));
        transform: scale(1.1);
    }
}

.comparison-header .ai-col { flex-direction: column; gap: 8px; padding-top: 32px; background: transparent; }
.col-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.human-icon { background: rgba(148, 163, 184, 0.1); color: #94a3b8; }
.ai-icon { background: rgba(16, 185, 129, 0.15); color: var(--brand-green); }
.highlight-value { color: var(--brand-green); font-weight: 700; font-size: 1.05rem; }

@media (max-width: 768px) {
    .comparison-table { font-size: 0.9rem; }
    .comparison-cell { padding: 16px 12px; }
    .comparison-header, .comparison-row { grid-template-columns: 1fr 1fr; }
    .header-cell:first-child { display: none; }
    .comparison-header .human-col { display: none; }
    .comparison-row .human-col { display: none; }
    .metric-name { background: rgba(0, 0, 0, 0.2); border-radius: 8px 8px 0 0; grid-column: span 2; margin-bottom: 0; }
    .human-col, .ai-col { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .comparison-header .ai-col { grid-column: span 2; border-radius: 0 8px 8px 0; }
}

/* === SOCIAL PROOF / RESULTS === */
.social-proof { padding: 120px 0; background: var(--bg-dark); }
.social-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 60px; text-align: center; }

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-visual {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
}

.stat-display {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.stat-highlight {
    display: block;
    font-family: ui-monospace, 'Courier New', monospace;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.glowing-graph {
    position: relative;
    z-index: 1;
}

.growth-graph {
    width: 100%;
    height: auto;
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(16, 185, 129, 0.2);
    line-height: 0.5;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-author .author-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.quote-author .author-avatar svg { color: white; }

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-details strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.85rem;
    color: var(--brand-green);
}

.author-company-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.author-company-name svg { color: var(--brand-green); }

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .stat-highlight {
        font-size: 3rem;
    }
    .glass-card {
        padding: 30px;
    }
    .quote-text {
        font-size: 1rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.cta-bg { position: absolute; inset: 0; }
.orb-cta-1, .orb-cta-2 { display: none; }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-title em { font-style: italic; }
.cta-subtitle { font-size: 1.02rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px 0 32px;
    background: transparent;
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--brand-green);
    font-weight: 600;
}

.partnership-badge svg { color: var(--brand-green); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.84rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--text-primary); }

.footer-services { display: flex; flex-direction: column; gap: 10px; }
.footer-services h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.footer-services a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
.footer-services a:hover { color: var(--brand-green); }

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p, .footer-credit { font-size: 0.78rem; color: var(--text-muted); }

.scarcity-counter { display: flex; justify-content: flex-end; }

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 600;
    animation: scarcity-pulse 2s ease-in-out infinite;
}

@keyframes scarcity-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(239, 68, 68, 0.2); }
}

.scarcity-badge svg { animation: clock-tick 1s ease-in-out infinite; }

@keyframes clock-tick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-featured { grid-template-columns: 1fr; }
    .featured-visual { min-height: 260px; }
    .featured-specs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .navbar { width: calc(100% - 32px); max-width: none; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(14, 23, 34, 0.96);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 8px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass);
        list-style: none;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; padding: 12px 16px; }
    .nav-cta {
        display: inline-flex;
        font-size: 0.75rem;
        padding: 9px 16px;
        position: relative;
        z-index: 1001;
    }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { padding: 110px 20px 40px; min-height: auto; }
    .hero-title { font-size: 2.1rem; }
    .products, .features, .cta-section { padding: 80px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; text-align: center; align-items: center; }
    .footer-links { justify-content: center; }
    .footer-services { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .scarcity-counter { justify-content: center; }
    .partnership-badge { justify-content: center; }
    .split-hero { grid-template-columns: 1fr; }
    .roi-container { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 480px) {
    .navbar { width: calc(100% - 24px); }
    .nav-pill { padding: 8px 10px 8px 14px; }
    .logo-text { font-size: 0.92rem; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

/* ============================================
   CHECKOUT & SUCCESS PAGES
   ============================================ */
.checkout-container, .success-container {
    padding: 120px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 80vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.order-summary {
    background: rgba(14, 23, 34, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-total {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--brand-green);
    font-size: 1.5rem;
    font-weight: 800;
}

.payment-form {
    background: rgba(14, 23, 34, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.05);
    position: relative;
    overflow: hidden;
}

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus { border-color: var(--brand-green); background: rgba(255, 255, 255, 0.06); outline: none; }

.form-input.invalid {
    border-color: #ef4444 !important;
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

.form-input.valid {
    border-color: var(--brand-green) !important;
}

.input-wrapper { position: relative; }
.input-status-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition);
    opacity: 0;
}
.form-input.valid + .input-status-icon { color: var(--brand-green); opacity: 1; }

.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.security-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    margin-top: 16px;
    opacity: 0.8;
}

.spinner {
    animation: rotate 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* SUCCESS PAGE */
.success-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface-card);
    border: 1px solid var(--brand-green);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 32px;
}

.countdown-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-top: 40px;
    border-radius: 2px;
    overflow: hidden;
}

.countdown-fill {
    height: 100%;
    background: var(--brand-green);
    width: 100%;
    transition: width 5s linear;
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.site-footer {
    background: #020617; /* Deep midnight blue */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 24px 40px;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    opacity: 0.3;
}

.footer-resources-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.resource-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
}

.resource-group ul {
    list-style: none;
    padding: 0;
}

.resource-group ul li {
    margin-bottom: 12px;
}

.resource-group ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.resource-group ul li a:hover {
    color: var(--brand-green);
    transform: translateX(4px);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-green);
}

.footer-logo {
    margin-bottom: 24px;
    display: block;
}

.compliance-note {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
}

@media (max-width: 992px) {
    .footer-resources-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 80px 24px 40px;
    }
    .footer-resources-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
    .resource-group h4, .footer-col h4 {
        margin-bottom: 16px;
    }
}

/* ============================================
   RESPONSIVE PRICING COMPONENTS
   ============================================ */

/* Responsive Pricing Container */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Standardizing the Pricing Cards */
.pricing-card {
    flex: 1 1 300px; /* Allows cards to shrink/grow but stay around 300px */
    max-width: 350px;
    min-height: 500px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Ensure font sizes stay readable */
.pricing-card h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
.pricing-card .price { font-size: clamp(2rem, 8vw, 3.5rem); }

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .bento-card, .zigzag-item {
        padding: 24px 32px !important;
        margin-left: -4px;
        margin-right: -4px;
    }
    .zigzag-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }
}

/* === Supabase Auth UI === */
.auth-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 24px; z-index: 10000; width: 100%; max-width: 400px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.auth-modal.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.auth-overlay { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.8); backdrop-filter: blur(4px); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.auth-overlay.active { opacity: 1; pointer-events: auto; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #fff; margin-bottom: 8px; }
.auth-header p { color: #94a3b8; font-size: 0.9rem; }
.auth-input-group { display: flex; flex-direction: column; gap: 8px; }
.auth-input-group label { font-size: 0.8rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }
.auth-input { background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 12px 16px; color: #fff; font-family: 'Inter', sans-serif; transition: all 0.3s ease; }
.auth-input:focus { outline: none; border-color: #10b981; background: rgba(30, 41, 59, 0.8); }
.auth-btn { background: #10b981; color: #fff; border: none; border-radius: 12px; padding: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; }
.auth-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 0.9rem; color: #94a3b8; }
.auth-switch span { color: #10b981; cursor: pointer; font-weight: 600; }
.auth-close { position: absolute; top: 20px; right: 20px; color: #64748b; cursor: pointer; background: none; border: none; font-size: 1.5rem; }
.nav-auth-btn { cursor: pointer; }
.nav-auth-btn:hover { color: #fff; }
.user-profile-nav { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 0.9rem; }
.user-avatar-mini { width: 32px; height: 32px; border-radius: 50%; background: #10b981; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; }

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
   Respects OS-level "Reduce Motion" setting.
   Disables all animations, transitions and
   smooth scroll for vestibular-safe rendering.
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Keep essential opacity transitions but instant */
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mockup-container,
    .mockup-3d {
        transform: none;
    }

    .mockup-3d:hover,
    .mockup-container:hover {
        transform: none;
    }

    .btn-ultra,
    .btn-primary {
        animation: none;
    }

    .noise-overlay {
        animation: none;
    }

    .badge-dot {
        animation: none;
    }

    .mockup-reflection,
    .mockup-glow {
        animation: none;
    }
}


