/* ==========================================================================
   RevenueFlow AI - Motion Graphics & Visual Excellence Stylesheet
   Super V3 Hybrid: High-Converting, Dynamic 60fps Micro-Animations, Glassmorphism
   ========================================================================== */

:root {
    --primary: #2563EB;         /* Trustworthy Royal Blue */
    --primary-hover: #1D4ED8;
    --primary-light: #EFF6FF;
    --accent: #10B981;          /* High-Intent Emerald */
    --accent-hover: #059669;
    --accent-light: #ECFDF5;
    --dark: #090E17;            /* Deep Obsidian Slate */
    --dark-card: #0F172A;
    --dark-muted: #334155;
    --text: #1E293B;            /* High-contrast body text */
    --text-muted: #64748B;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --border-dark: #1E293B;
    --error: #EF4444;
    --error-light: #FEF2F2;
    --warning: #F59E0B;
    --warning-light: #FFFBEB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 16px 32px -4px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base Typography
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: radial-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Ambient Background Motion Glows Wrapper - Strict Overflow Containment */
.ambient-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
}
.glow-1 {
    top: 2%;
    left: -40px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
}
.glow-2 {
    top: 28%;
    right: -40px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
}
.glow-3 {
    top: 60%;
    left: 5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

/* Top Notification & Ticker Bar */
.telemetry-ticker-bar {
    background: #0B1120;
    color: #94A3B8;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-bottom: 1px solid #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 100;
}
.telemetry-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
.telemetry-pulse {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: pulseLive 2s infinite;
}
.hide-mobile {
    display: inline-flex;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 { font-size: 3.25rem; font-weight: 800; }
h2 { font-size: 2.35rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

section {
    padding: 5.5rem 0;
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-error { color: var(--error); }
.text-success { color: var(--accent); }
.text-accent { color: #60A5FA; }
.text-white { color: #FFFFFF !important; }
.font-bold { font-weight: 700; }

.bg-alt { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--dark); }
.bg-primary { background-color: var(--primary); }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.block { display: block; }

.section-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-error {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-2-col-gap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Card 3D Tilt Effect on Hover */
.card-tilt {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-tilt:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #CBD5E1;
}

/* ==========================================================================
   Buttons & Badges with Shimmer Motion
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
    gap: 0.5rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.38);
}

/* Shimmer Light Sweep on Primary Buttons */
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmerSweep 3.5s infinite;
}

@keyframes shimmerSweep {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

.btn-outline {
    background-color: white;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--primary);
    background-color: var(--primary-light);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.badge-success {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-hover);
    background: var(--accent-light);
    border-radius: var(--radius-full);
}

.badge-danger {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--error);
    background: var(--error-light);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
}

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

.nav-brand-group {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0 1.5rem;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}
.nav-signin {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.nav-cta {
    padding: 0.6rem 1.15rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    position: relative;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--bg-alt);
}
.mobile-audit-btn {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 4.5rem 0 5rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.headline {
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-quote-box {
    margin-top: 1.5rem;
    padding: 1.1rem 1.25rem;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 4px solid var(--warning);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.quote-icon-bubble {
    font-size: 1.25rem;
    color: var(--warning);
}
.hero-quote-text {
    color: #92400E;
    font-size: 1.05rem;
    line-height: 1.45;
}

.hero-ctas {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}

#btn-hero-chat {
    white-space: nowrap;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.microcopy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Motion Graphic Hero Funnel Console
   ========================================================================== */
.motion-console-card {
    background: #0B1120;
    border-radius: var(--radius-lg);
    border: 1px solid #1E293B;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    overflow: hidden;
    color: white;
    position: relative;
}

.console-header {
    background: #111827;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1E293B;
    font-size: 0.75rem;
    font-weight: 700;
}
.console-title {
    color: #94A3B8;
    letter-spacing: 0.05em;
}
.live-pill {
    padding: 0.2rem 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
    0% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
    100% { opacity: 0.8; }
}

.funnel-stream-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stream-node {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition);
}
.stream-node:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.node-icon {
    font-size: 1.25rem;
}
.node-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.node-info strong {
    font-size: 0.85rem;
    color: #E2E8F0;
}
.node-info span {
    font-size: 0.75rem;
    color: #94A3B8;
}

.node-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}
.tag-traffic { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.tag-alert { background: rgba(239, 68, 68, 0.15); color: #F87171; }
.tag-success { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.tag-won { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }

/* Animated Connector Beam Lines with Traveling Particles */
.animated-beam-line {
    height: 16px;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.beam-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: particleTravel 1.8s infinite linear;
}
.particle-1 { animation-delay: 0s; }
.particle-2 { animation-delay: 0.6s; }
.particle-3 { animation-delay: 1.2s; }

@keyframes particleTravel {
    0% { top: -10px; opacity: 0; }
    30% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.console-footer {
    background: #0F172A;
    border-top: 1px solid #1E293B;
    padding: 0.85rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 0.5rem;
}
.sm-lbl {
    display: block;
    font-size: 0.65rem;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 700;
}
.sm-val {
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    padding: 1.75rem 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.t-icon {
    font-size: 1rem;
}
.trust-logos .dot {
    color: var(--border);
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.problem-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.problem-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.icon-red { background: #FEF2F2; color: #DC2626; }
.icon-orange { background: #FFFBEB; color: #D97706; }
.icon-blue { background: #EFF6FF; color: #2563EB; }
.icon-green { background: #ECFDF5; color: #059669; }

.leak-summary-callout {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.leak-summary-callout h3 {
    font-size: 1.15rem;
}

/* ==========================================================================
   Stages Section (Where Customers Disappear)
   ========================================================================== */
.stages-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.stage-card {
    flex: 1;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.stage-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stage-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.75rem;
}
.status-good {
    background: var(--accent-light);
    color: var(--accent-hover);
}
.status-bad {
    background: var(--error-light);
    color: var(--error);
}
.stage-break {
    border-color: #FCA5A5;
    background: #FFFBFB;
}
.stage-loss {
    border-color: var(--error);
    background: #FEF2F2;
}
.stage-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ==========================================================================
   Horizontal Animated Revenue Leak Pipeline Visualizer
   ========================================================================== */
.pipeline-leak-visualizer {
    background: #090E17;
    border-radius: var(--radius-lg);
    border: 1px solid #1E293B;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    color: white;
    margin: 2.5rem 0;
}
.pipeline-leak-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.pipeline-leak-header h3 {
    color: white;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pipeline-badge-sample {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.horizontal-pipeline-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.3fr auto 1.2fr;
    gap: 0.75rem;
    align-items: center;
}
.pipe-node {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.pipe-node:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.pipe-node .pipe-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #94A3B8;
    margin-bottom: 0.35rem;
}
.pipe-node .pipe-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}
.pipe-node .pipe-sub {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.2rem;
}

.pipe-node.node-leak-hub {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    text-align: left;
}
.pipe-node.node-leak-hub .pipe-val {
    color: #EF4444;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.leak-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #FCA5A5;
}
.leak-item-dot {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pipe-connector-arrow {
    color: #475569;
    font-size: 1.25rem;
    font-weight: 800;
}

.pipe-node.node-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}
.comp-row {
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    text-align: left;
}
.comp-row.trad-lost {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.comp-row.trad-lost strong {
    color: #EF4444;
    font-size: 0.82rem;
    display: block;
}
.comp-row.trad-lost span {
    font-size: 0.72rem;
    color: #F87171;
}

.comp-row.rf-won {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.comp-row.rf-won strong {
    color: #10B981;
    font-size: 0.82rem;
    display: block;
}
.comp-row.rf-won span {
    font-size: 0.72rem;
    color: #34D399;
}

/* ==========================================================================
   3-Step Diagnostic Audit Stepper Form
   ========================================================================== */
.audit-stepper-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: #F1F5F9;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}
.step-tab-btn {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.step-tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.step-num-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E2E8F0;
    color: var(--dark);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-tab-btn.active .step-num-badge {
    background: var(--primary);
    color: white;
}

.step-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}
.step-pane.active {
    display: block;
}

.step-nav-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Sample Audit Report Preview Card */
.sample-report-section {
    padding: 4.5rem 0;
}
.sample-report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.sample-report-preview-box {
    background: #0B1120;
    border: 1px solid #1E293B;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    color: white;
}
.report-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.report-page-card {
    background: #111827;
    border: 1px solid #1F2937;
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.report-page-card .page-badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: #38BDF8;
}
.report-page-card h5 {
    color: white;
    font-size: 0.85rem;
    margin: 0;
}
.report-page-card p {
    font-size: 0.72rem;
    color: #94A3B8;
    margin: 0;
}

/* Connected Revenue Architecture Grid */
.connected-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.system-node-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.system-node-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.system-node-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 0.75rem;
}
.system-node-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.system-node-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.system-node-feature {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: #047857;
}

.audit-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.audit-form-container {
    padding: 0;
    background: var(--bg-alt);
    border-right: 1px solid var(--border);
}

.audit-results-container {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    font-family: inherit;
    color: var(--text);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.checkbox-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
}

.audit-score-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* SVG Radial Gauge Meter */
.gauge-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0.75rem auto;
}
.gauge-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}
.gauge-bg {
    fill: none;
    stroke: #F1F5F9;
    stroke-width: 10;
}
.gauge-meter {
    fill: none;
    stroke: var(--error);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 122; /* 61% */
    transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.5s ease;
}
.gauge-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: #DC2626;
}

.score-header {
    text-align: center;
}
.score-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.score-sub {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.detected-leaks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.leak-entry {
    background: var(--bg-alt);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--error);
    font-size: 0.85rem;
}
.leak-entry strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.2rem;
}
.leak-entry p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.audit-opportunity-box {
    background: var(--accent-light);
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
}
.opp-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-hover);
    letter-spacing: 0.05em;
}
.opp-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #065F46;
    margin: 0.25rem 0;
}
.opp-sub {
    font-size: 0.75rem;
    color: #047857;
}

/* ==========================================================================
   Cost of "Later" Timeline Comparison
   ========================================================================== */
.timeline-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.timeline-card.traditional-card {
    border-top: 4px solid var(--error);
}
.timeline-card.revenueflow-card {
    border-top: 4px solid var(--accent);
    background: #FAFEFF;
}

.timeline-header {
    margin-bottom: 1.75rem;
}
.timeline-header h3 {
    margin-top: 0.5rem;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.85rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--text-muted);
}
.traditional-card .step-item {
    border-left-color: var(--error);
}
.revenueflow-card .step-item {
    background: white;
    border-left-color: var(--accent);
}

.step-time {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: monospace;
    color: var(--dark);
    min-width: 80px;
}
.step-desc {
    font-size: 0.9rem;
    color: var(--text);
}

.step-arrow {
    text-align: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
}

.outcome-bad {
    background: var(--error-light) !important;
    border-left-color: var(--error) !important;
}
.outcome-good {
    background: var(--accent-light) !important;
    border-left-color: var(--accent) !important;
}

/* ==========================================================================
   Interactive Industry Demo Sandbox
   ========================================================================== */
.sandbox-section {
    padding: 5rem 0;
    position: relative;
}
.sandbox-tab-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.sandbox-tab-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}
.sandbox-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.sandbox-tab-btn.active {
    background: #0B1120;
    border-color: #0B1120;
    color: white;
    box-shadow: 0 8px 20px rgba(11, 17, 32, 0.25);
}

.sandbox-interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.sandbox-phone-frame {
    background: #090E17;
    border-radius: 28px;
    border: 4px solid #1E293B;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    padding: 1.25rem;
    color: white;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}
.sandbox-phone-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #1E293B;
    margin-bottom: 1rem;
}
.sandbox-phone-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}
.sandbox-phone-title h4 {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}
.sandbox-phone-title span {
    font-size: 0.72rem;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sandbox-chat-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 280px;
    background: #0B132B;
    border: 1px solid #1E293B;
    border-radius: 16px;
    padding: 1rem;
}
.sb-msg {
    padding: 0.7rem 0.95rem;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 88%;
    animation: fadeIn 0.3s ease;
}
.sb-msg.incoming {
    background: #1E293B;
    color: #F8FAFC;
    border: 1px solid #334155;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.sb-msg.outgoing {
    background: #059669;
    color: white;
    font-weight: 500;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
}
.sb-msg .sb-time {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
    text-align: right;
    margin-top: 0.3rem;
}

.sandbox-telemetry-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sandbox-telemetry-panel h3 {
    font-size: 1.5rem;
    color: var(--dark);
}
.sandbox-insights-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.insight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}
.insight-row .insight-label {
    color: var(--text-muted);
}
.insight-row .insight-val {
    font-weight: 700;
    color: var(--dark);
}
.insight-badge {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

.sandbox-roi-highlight {
    background: #EFF6FF;
    border: 1.5px solid #93C5FD;
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sandbox-roi-highlight .roi-text h5 {
    color: #1E3A8A;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}
.sandbox-roi-highlight .roi-text p {
    color: #3B82F6;
    font-size: 0.78rem;
    margin: 0;
}
.sandbox-roi-highlight .roi-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.outcome-callout {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.outcome-callout h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

/* ==========================================================================
   Interactive Animated WhatsApp Simulation
   ========================================================================== */
.whatsapp-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.chat-mockup {
    background: #ECE5DD;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #D1D5DB;
}
.chat-header {
    background: #075E54;
    color: white;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
}
.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.chat-name {
    font-weight: 700;
    font-size: 0.95rem;
}
.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
}
.replay-sim-btn {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}
.replay-sim-btn:hover {
    background: rgba(255,255,255,0.25);
}

.chat-messages {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 320px;
    max-height: 380px;
    overflow-y: auto;
}
.msg {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: msgPop 0.3s ease-out;
}

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

.msg-in {
    align-self: flex-start;
    background: white;
    border-bottom-left-radius: 2px;
}
.msg-out {
    align-self: flex-end;
    background: #DCF8C6;
    border-bottom-right-radius: 2px;
}
.msg-time {
    display: block;
    font-size: 0.65rem;
    color: #888;
    text-align: right;
    margin-top: 0.25rem;
}

/* Typing indicator bubble */
.typing-bubble {
    align-self: flex-end;
    background: #DCF8C6;
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    display: flex;
    gap: 4px;
    align-items: center;
}
.t-dot {
    width: 6px;
    height: 6px;
    background: #4B5563;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}
.t-dot:nth-child(1) { animation-delay: 0s; }
.t-dot:nth-child(2) { animation-delay: 0.2s; }
.t-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
}

.internal-alert-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid #FEF08A;
    background: #FFFDF0;
    transition: var(--transition);
}
.alert-badge {
    font-size: 0.8rem;
    font-weight: 800;
    color: #B45309;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.alert-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.alert-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.alert-label {
    color: var(--text-muted);
}
.alert-val {
    font-weight: 600;
    color: var(--dark);
}
.badge-qualified {
    background: var(--accent-light);
    color: var(--accent-hover);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

/* ==========================================================================
   Pillars & What We Build (6 Modules)
   ========================================================================== */
.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.pillar-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Process (7-Step Lifecycle)
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.process-step.highlight-step {
    border-color: var(--primary);
    background: #F8FAFF;
}
.p-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.process-step h4 {
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   28 AI Agents & Philosophy
   ========================================================================== */
.philosophy-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: center;
    background: #1E293B;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid #334155;
}
.philo-divider {
    width: 1px;
    height: 100%;
    background: #334155;
}
.philo-col h4 {
    margin-bottom: 1rem;
}
.philo-col ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #CBD5E1;
}

/* ==========================================================================
   Verticals
   ========================================================================== */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.vertical-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.vertical-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.vertical-quote {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0.35rem 0 0.75rem 0;
}
.vertical-card p {
    font-size: 0.85rem;
}
.vertical-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ==========================================================================
/* ==========================================================================
   Apple-Style Hero Phone Card & Conversation Mockup
   ========================================================================== */
.hero-phone-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.12), 0 0 20px rgba(37, 99, 235, 0.06);
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}
.phone-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 1rem;
}
.phone-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.phone-avatar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.phone-contact-info strong {
    font-size: 0.9rem;
    color: #0F172A;
    display: block;
}
.phone-verified-tag {
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 600;
}
.phone-online-badge {
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 700;
    background: #ECFDF5;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}
.phone-chat-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.msg-bubble {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.4;
    max-width: 90%;
    position: relative;
}
.msg-incoming {
    background: #F1F5F9;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.msg-outgoing {
    background: #DCF8C6;
    color: #0F172A;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.msg-time {
    display: block;
    font-size: 0.68rem;
    color: #64748B;
    margin-top: 0.35rem;
    text-align: right;
}
.phone-floating-notif {
    margin-top: 1.25rem;
    background: #0F172A;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    animation: bounceSubtle 3s infinite;
}
.phone-floating-notif strong {
    display: block;
    color: #FFFFFF;
}
.phone-floating-notif span {
    font-size: 0.74rem;
    color: #94A3B8;
}

/* ==========================================================================
   Clean Simple Comparison Card
   ========================================================================== */
.simple-comparison-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.comp-header h3 {
    margin: 0;
    font-size: 1.15rem;
}
.comp-tag {
    background: var(--bg-alt);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}
.comp-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.comp-box {
    padding: 1.5rem;
    border-radius: var(--radius);
}
.comp-box.comp-bad {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
}
.comp-box.comp-good {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
}
.comp-title {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.comp-stat {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.comp-desc {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}
.comp-divider {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg-alt);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Three Steps Grid
   ========================================================================== */
.three-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.step-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}
.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Honest SME Lead Magnet Audit Card
   ========================================================================== */
.audit-container-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 1060px;
    margin: 0 auto;
}
.audit-card-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}
.audit-form-pane {
    padding: 2.5rem;
}
.audit-form-intro {
    margin-bottom: 1.5rem;
}
.audit-form-intro h4 {
    margin: 0.25rem 0 0.5rem 0;
    font-size: 1.25rem;
}
.audit-form-intro p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}
.audit-free-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: #D1FAE5;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}
.audit-info-pane {
    background: #F8FAFC;
    border-left: 1px solid var(--border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.audit-guarantee-badge {
    display: flex;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius);
}
.audit-guarantee-badge .g-icon {
    font-size: 1.5rem;
}
.audit-guarantee-badge strong {
    display: block;
    font-size: 0.88rem;
    color: var(--dark);
}
.audit-guarantee-badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: block;
}
.audit-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.a-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.a-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.a-step strong {
    font-size: 0.88rem;
    color: var(--dark);
    display: block;
}
.a-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0 0;
    line-height: 1.35;
}
.audit-delivery-callout {
    display: flex;
    gap: 0.75rem;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: auto;
}
.audit-delivery-callout .del-icon {
    font-size: 1.5rem;
}
.audit-delivery-callout strong {
    display: block;
    font-size: 0.88rem;
    color: #1E40AF;
}
.audit-delivery-callout p {
    font-size: 0.78rem;
    color: #3B82F6;
    margin: 0.15rem 0 0 0;
}
.audit-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* ==========================================================================
   Sample Audit Report Deliverable Showcase
   ========================================================================== */
.sample-report-showcase {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 1060px;
    margin: 0 auto;
}
.sample-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.75rem;
}
.report-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
    display: block;
}
.report-meta h3 {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    color: var(--dark);
}
.report-status-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: #D1FAE5;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}
.sample-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sample-page-card {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sp-badge {
    font-size: 0.70rem;
    font-weight: 800;
    color: var(--primary);
}
.sample-page-card h4 {
    font-size: 1.05rem;
    margin: 0;
}
.sp-metric-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    margin: 0.5rem 0;
}
.sp-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}
.sp-val {
    font-size: 1.35rem;
    font-weight: 800;
    display: block;
    margin: 0.2rem 0;
}
.sp-sub {
    font-size: 0.72rem;
    font-weight: 600;
    display: block;
}
.sp-desc {
    font-size: 0.80rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   Apple-Grade Clean Light Dashboard
   ========================================================================== */
.clean-dashboard-mockup {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 1060px;
    margin: 0 auto;
}
.dash-simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.dash-brand-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dash-app-icon {
    width: 40px;
    height: 40px;
    background: #EFF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.dash-brand-meta strong {
    font-size: 1.05rem;
    display: block;
}
.dash-live-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #059669;
    background: #ECFDF5;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dash-simple-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.dash-kpi-box {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.dash-kpi-box.highlight-kpi {
    background: #FEF3C7;
    border-color: #FDE68A;
}
.kpi-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}
.kpi-val {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0.25rem 0;
}
.kpi-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}
.dash-recent-activity {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.recent-act-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.recent-act-header h4 {
    font-size: 0.95rem;
    margin: 0;
}
.simple-activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.activity-row {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.act-emoji {
    font-size: 1.35rem;
}
.act-details {
    flex-grow: 1;
}
.act-details strong {
    font-size: 0.88rem;
    color: var(--dark);
    display: block;
}
.act-details strong span {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.78rem;
}
.act-details p {
    font-size: 0.80rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0 0;
}
.act-status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.badge-done {
    background: #ECFDF5;
    color: #059669;
}
.cr-trend-lightning {
    font-size: 0.7rem;
    font-weight: 700;
    color: #60A5FA;
    background: rgba(59, 130, 246, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}
.cr-gold-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: #FBBF24;
    background: rgba(245, 158, 11, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.cr-stat-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.cr-stat-bar-wrap {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.cr-stat-bar {
    height: 100%;
    background: #3B82F6;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cr-stat-bar.bar-blue { background: #38BDF8; }
.cr-stat-bar.bar-green { background: #10B981; }
.cr-stat-bar.bar-gold { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.cr-stat-sub {
    font-size: 0.70rem;
    color: #64748B;
    line-height: 1.2;
}

/* Two-Column Split Grid */
.cr-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}
.cr-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cr-column-header h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #E2E8F0;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cr-live-pill {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
}

/* Activity Feed */
.cr-activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cr-feed-item {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: all 0.2s ease;
}
.cr-feed-item:hover {
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(30, 41, 59, 0.6);
}
.feed-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}
.feed-item-entity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #F1F5F9;
}
.feed-channel-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.badge-wa { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.badge-web { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.badge-ads { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.feed-latency {
    font-size: 0.70rem;
    font-weight: 700;
    color: #34D399;
}
.feed-inquiry {
    font-size: 0.80rem;
    color: #94A3B8;
    font-style: italic;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}
.feed-resolution {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.76rem;
}
.res-action {
    color: #38BDF8;
}
.res-won {
    color: #10B981;
    font-weight: 700;
}

/* Protection Grid */
.cr-protection-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.protection-card {
    display: flex;
    gap: 0.85rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    align-items: flex-start;
}
.prot-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.icon-night { background: rgba(99, 102, 241, 0.2); }
.icon-reactivate { background: rgba(16, 185, 129, 0.2); }
.icon-speed { background: rgba(59, 130, 246, 0.2); }
.icon-alert { background: rgba(245, 158, 11, 0.2); }

.prot-content {
    flex-grow: 1;
}
.prot-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}
.prot-title-row strong {
    font-size: 0.82rem;
    color: #F8FAFC;
}
.ok-pill {
    font-size: 0.65rem;
    font-weight: 700;
    color: #34D399;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.prot-stat {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0.1rem 0 0.2rem 0;
}
.prot-desc {
    font-size: 0.74rem;
    color: #94A3B8;
    line-height: 1.35;
    margin: 0;
}

/* ==========================================================================
   Pricing / Engagement Model
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1.25rem 0;
}
.features {
    flex-grow: 1;
    margin-bottom: 2rem;
}
.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

/* What happens steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.s-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.s-idx {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 32px;
}

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.accordion-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}
.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-item.active .accordion-content {
    padding-bottom: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0B1120;
    color: #94A3B8;
    padding: 4.5rem 0 2rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.footer-col a {
    display: block;
    color: #94A3B8;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
.footer-col a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   Floating AI Sales Chatbot Widget (Real Human Persona - Aria Sharma)
   ========================================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.chatbot-launcher.human-launcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.15rem 0.5rem 0.5rem;
    background: #0F172A;
    color: white;
    border: 1.5px solid rgba(37, 99, 235, 0.4);
    border-radius: var(--radius-full);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 15px rgba(37, 99, 235, 0.2);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.chatbot-launcher.human-launcher:hover {
    background: #1E293B;
    transform: translateY(-3px) scale(1.02);
    border-color: #3B82F6;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 22px rgba(37, 99, 235, 0.35);
}

.launcher-avatar-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}
.launcher-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10B981;
    display: block;
}
.launcher-avatar-wrap .launcher-pulse {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid #0F172A;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.launcher-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.launcher-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}
.launcher-status {
    font-size: 0.72rem;
    color: #34D399;
    font-weight: 500;
    line-height: 1.2;
}

/* Chat Window Modal */
.chatbot-window {
    display: none;
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 390px;
    height: 540px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-window.open {
    display: flex;
}

.chat-win-header {
    background: #0F172A;
    color: white;
    padding: 0.9rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1E293B;
}
.chat-win-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.chat-header-avatar-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.header-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10B981;
    display: block;
}
.chat-header-avatar-wrap .chat-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background: #10B981;
    border: 2px solid #0F172A;
    border-radius: 50%;
}
.chat-win-title strong {
    font-size: 0.95rem;
    color: #FFFFFF;
    display: block;
}
.chat-win-sub {
    display: block;
    font-size: 0.72rem;
    color: #94A3B8;
    font-weight: 400;
}
.chat-win-close {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.chat-win-close:hover {
    color: white;
}

.chat-win-body {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background: var(--bg-alt);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bot-msg-row {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}
.bot-avatar-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #10B981;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.bot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}
.bot-bubble {
    background: white;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border-top-left-radius: 2px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--dark);
}

.user-msg-row {
    display: flex;
    justify-content: flex-end;
}
.user-bubble {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border-top-right-radius: 2px;
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 80%;
}

.chat-quick-chips, .bot-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}
.chip-btn, .bot-opt-chip {
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.chip-btn:hover, .bot-opt-chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(37, 99, 235, 0.15);
}
.bot-opt-chip.opt-call {
    background: #ECFDF5;
    border-color: #10B981;
    color: #047857;
    font-weight: 700;
}
.bot-opt-chip.opt-call:hover {
    background: #D1FAE5;
    border-color: #059669;
}

/* In-Chat Interactive Booking Card */
.chat-booking-card {
    background: white;
    border: 1.5px solid #3B82F6;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.65rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    animation: fadeIn 0.3s ease;
}
.booking-card-header {
    margin-bottom: 0.75rem;
}
.booking-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: #1D4ED8;
    background: #EFF6FF;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.3rem;
}
.booking-card-header h4 {
    font-size: 0.88rem;
    color: var(--dark);
    margin: 0;
}
.in-chat-booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.form-row-compact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.form-row-compact label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}
.form-row-compact input, .form-row-compact select {
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.form-row-compact input:focus, .form-row-compact select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}
.btn-confirm-booking {
    margin-top: 0.35rem;
    background: #10B981;
    color: white;
    border: none;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.btn-confirm-booking:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* In-Chat Booking Success Card */
.booking-success-card {
    background: #F0FDF4;
    border: 1.5px solid #10B981;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.65rem;
    animation: fadeIn 0.3s ease;
}
.booking-success-card h4 {
    color: #065F46;
    font-size: 0.9rem;
    margin: 0 0 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.booking-success-card p {
    font-size: 0.78rem;
    color: #1F2937;
    margin: 0.2rem 0;
    line-height: 1.35;
}
.booking-success-card strong {
    color: #065F46;
}
.btn-cal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.6rem;
    padding: 0.45rem 0.85rem;
    background: #2563EB;
    color: white;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}
.btn-cal-link:hover {
    background: #1D4ED8;
    color: white;
    transform: translateY(-1px);
}

.chat-win-footer {
    padding: 0.85rem 1rem;
    background: white;
    border-top: 1px solid var(--border);
}
.chat-input-form {
    display: flex;
    gap: 0.5rem;
}
.chat-input-form input {
    flex-grow: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}
.chat-input-form input:focus {
    border-color: var(--primary);
}
.chat-input-form button {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ==========================================================================
   Mobile Responsive & Touch Carousels
   ========================================================================== */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}
.mobile-bottom-cta.show {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-container, .timeline-comparison-grid, .whatsapp-layout-grid, .audit-wrapper, .philosophy-box, .dash-metrics-grid {
        grid-template-columns: 1fr;
    }
/* ==========================================================================
   Android & Touch-Optimized Mobile Experience (Screen width <= 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Base Spacing & Strict Viewport Containment */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    section {
        padding: 2.75rem 0;
        overflow-x: hidden;
    }
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    h1 {
        font-size: 1.85rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
    h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }
    h3 {
        font-size: 1.15rem;
    }
    p, .subtitle {
        font-size: 0.92rem;
        line-height: 1.5;
    }
    .badge {
        font-size: 0.70rem;
        padding: 0.3rem 0.65rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    /* Buttons on Mobile: Zero Out-of-Border Overflow */
    .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.90rem;
        min-height: 46px;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
    }
    .btn-lg {
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
    }

    /* Native Android App-Like Header */
    .navbar {
        padding: 0.65rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-alt);
        border: 1px solid var(--border);
    }
    .mobile-menu {
        top: 56px;
        padding: 1.25rem 1rem;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-menu a {
        padding: 0.65rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid #F1F5F9;
    }
    .mobile-menu .mobile-audit-btn {
        margin-top: 0.75rem;
        background: var(--primary);
        color: white !important;
        text-align: center;
        border-radius: var(--radius);
        padding: 0.75rem 1rem;
        border: none;
        font-weight: 700;
    }

    /* Hero Section on Mobile */
    .hero {
        padding: 2rem 0 2.5rem 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .hero-quote-box {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        margin-top: 1.25rem;
    }
    .hero-quote-text {
        font-size: 0.90rem;
    }
    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-phone-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.15rem 0.85rem !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
    }

    /* Clean Simple Comparison on Mobile */
    .simple-comparison-card {
        padding: 1.25rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .comp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .comp-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .comp-divider {
        margin: 0 auto;
    }

    /* Three Steps & Connected Engines on Mobile */
    .three-steps-grid, .connected-system-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .step-card, .system-node-card {
        padding: 1.25rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Grids & Cards Stacking */
    .problem-grid, .pillars-container, .process-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .leak-card, .process-step, .pricing-card {
        padding: 1.25rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Interactive Industry Demo Tabs (Smooth Horizontal Swipe) */
    .sandbox-tab-bar {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }
    .sandbox-tab-bar::-webkit-scrollbar {
        display: none;
    }
    .sandbox-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.78rem;
        padding: 0.5rem 0.85rem;
        min-height: 40px;
    }
    .sandbox-interactive-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .sandbox-phone-frame, .sandbox-telemetry-panel {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Honest SME Lead Magnet Audit Card on Mobile */
    .audit-container-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 18px;
        box-sizing: border-box;
    }
    .audit-card-grid {
        grid-template-columns: 1fr;
    }
    .audit-form-pane, .audit-info-pane {
        padding: 1.25rem 1rem;
        box-sizing: border-box;
    }
    .audit-info-pane {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .grid-2-col-gap {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .checkbox-pill {
        padding: 0.65rem 0.85rem;
        font-size: 0.82rem;
        min-height: 42px;
    }
    .form-control, input, select, textarea {
        font-size: 16px !important; /* Strict 16px to prevent iOS & Android auto-zoom */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Sample Report Showcase on Mobile */
    .sample-report-showcase {
        padding: 1.25rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 18px;
        box-sizing: border-box;
    }
    .sample-report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .sample-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .sample-page-card {
        padding: 1.15rem 0.85rem;
        box-sizing: border-box;
    }

    /* Apple-Grade Clean Dashboard on Mobile */
    .clean-dashboard-mockup {
        padding: 1.25rem 0.85rem;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 18px;
        box-sizing: border-box;
    }
    .dash-simple-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }
    .dash-simple-kpis {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .dash-kpi-box {
        padding: 0.85rem 0.65rem;
    }
    .kpi-val {
        font-size: 1.4rem;
    }
    .kpi-lbl {
        font-size: 0.68rem;
    }
    .kpi-sub {
        font-size: 0.68rem;
    }
    .activity-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.75rem 0.85rem;
    }

    /* Floating Aisha Assistant Launcher on Mobile */
    .chatbot-widget {
        position: fixed;
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: 14px;
        z-index: 9999;
        max-width: calc(100vw - 28px);
    }
    .chatbot-launcher.human-launcher {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.35rem 0.85rem 0.35rem 0.35rem;
        background: #0F172A;
        border: 1.5px solid rgba(37, 99, 235, 0.5);
        border-radius: var(--radius-full);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 14px rgba(37, 99, 235, 0.25);
        cursor: pointer;
        max-width: 100%;
        box-sizing: border-box;
    }
    .launcher-avatar-wrap, .launcher-avatar-img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }
    .launcher-name {
        font-size: 0.80rem;
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.2;
    }
    .launcher-status {
        font-size: 0.68rem;
        color: #34D399;
        font-weight: 600;
        line-height: 1.2;
    }

    /* Full-Screen Native App Chat Modal on Mobile */
    .chatbot-window {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 10000 !important;
        display: none;
        flex-direction: column !important;
        background: #FFFFFF !important;
    }
    .chatbot-window.open {
        display: flex !important;
    }
    .chat-win-header {
        padding: 0.75rem 1rem !important;
        background: #0F172A !important;
        flex-shrink: 0 !important;
    }
    .chat-win-body {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem 0.85rem !important;
        background: var(--bg-alt) !important;
    }
    .chat-win-footer {
        padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom)) !important;
        background: #FFFFFF !important;
        border-top: 1px solid var(--border) !important;
        flex-shrink: 0 !important;
    }
    .chat-input-form input {
        font-size: 16px !important; /* Prevents Android zoom */
        padding: 0.6rem 0.85rem !important;
    }

    /* Mobile Horizontal Carousel for Verticals */
    .mobile-carousel, .verticals-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 1.25rem !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1rem !important;
    }
    .vertical-card {
        min-width: 82vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
