/* ═══════════════════════════════════════════════════════════════════════
   ZENTRIX CRM — Landing Page Styles
   Premium Real Estate CRM · Dark Navy Brand (#050d21)
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --bg-primary: #050d21;
    --bg-secondary: #0a1630;
    --bg-card: #0e1d3d;
    --bg-card-hover: #132850;
    --bg-glass: rgba(14, 29, 61, 0.75);

    --text-primary: #f0f4ff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    --accent: #00b4ff;
    --accent-light: #5ccfff;
    --accent-glow: rgba(0, 180, 255, 0.25);
    --accent-gradient: linear-gradient(135deg, #00b4ff 0%, #7c5cff 100%);
    --accent-warm: linear-gradient(135deg, #ff6b35 0%, #ffb347 100%);

    --success: #00e68a;
    --warning: #ffb347;
    --danger: #ff4d6a;

    --border-subtle: rgba(0, 180, 255, 0.1);
    --border-hover: rgba(0, 180, 255, 0.3);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --section-padding: 80px 0;
    --container-max: 1200px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.4s var(--ease-out);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

*:focus-visible {
    outline: 2px solid #ff8f00;
    outline-offset: 3px;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.btn--primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8f00 100%);
    color: #050d21;
    font-weight: 750;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.25);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}
.btn--ghost:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(0, 180, 255, 0.05);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent-light);
    width: 100%;
    justify-content: center;
}
.btn--outline:hover {
    background: rgba(0, 180, 255, 0.1);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    background: rgba(5, 13, 33, 0.9);
    border-bottom: 1px solid var(--border-subtle);
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.nav__logo-icon { font-size: 1.6rem; }

.nav__logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links { display: flex; gap: 32px; }

.nav__link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}
.nav__link:hover { color: var(--text-primary); }

.nav__actions { display: flex; align-items: center; gap: 20px; }

.nav__cta {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

/* ═══════════════ HERO ═══════════════ */
.hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 180, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: flex-start;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-bottom: 16px;
    max-width: 580px; /* Reduces the hero headline width slightly */
}

.hero__title-main {
    display: block;
}

.hero__title-payoff {
    display: block;
    margin-top: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 950;
    text-shadow: 0 0 30px rgba(0, 180, 255, 0.15);
}

.hero__title-highlight {
    background: var(--accent-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Premium Background Effects (Stripe / Linear / Vercel Aesthetics) ── */
.hero--clean {
    background: radial-gradient(ellipse at 50% 20%, #0c1a35 0%, #060d1b 60%, #040813 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
    z-index: 1;
}

.hero__glow--primary {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.16) 0%, rgba(107, 17, 255, 0.08) 50%, transparent 70%) !important;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero__glow--secondary {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.12) 0%, rgba(0, 180, 255, 0.05) 50%, transparent 70%) !important;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
}

@keyframes glowPulse {
    0% { transform: scale(1) translateY(0px); opacity: 0.8; }
    100% { transform: scale(1.1) translateY(-20px); opacity: 1; }
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00f2fe;
    box-shadow: 0 0 10px #00f2fe;
    opacity: 0.4;
}

.particle.p1 { top: 20%; left: 30%; animation: particleFloat 6s ease-in-out infinite alternate; }
.particle.p2 { top: 40%; right: 25%; animation: particleFloat 8s ease-in-out infinite alternate 1s; }
.particle.p3 { top: 70%; left: 15%; animation: particleFloat 7s ease-in-out infinite alternate 2s; }
.particle.p4 { top: 30%; left: 75%; animation: particleFloat 9s ease-in-out infinite alternate 0.5s; }

@keyframes particleFloat {
    0% { transform: translateY(0px) scale(1); opacity: 0.3; }
    100% { transform: translateY(-15px) scale(1.5); opacity: 0.8; }
}

.hero__title--large {
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #ffffff !important;
    max-width: 680px;
}

.hero__title--large .hero__title-highlight {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.hero__badge--accent {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 25, 45, 0.6);
    border-radius: 20px;
    padding: 6px 14px;
}

.hero__content--clean .hero__subtitle {
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 32px;
}

.hero__content--clean .hero__headline-source {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.hero--clean .hero__container {
    max-width: 1360px;
    grid-template-columns: 44% 56% !important;
    gap: 36px !important;
    align-items: center !important;
}

.hero__visual--clean {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
}

.hero__visual--clean .hero__image-wrapper {
    width: 100%;
    margin-bottom: 0;
}

/* ── Chevron Workflow Stepper ── */
.hero__chevron-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(8, 16, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 6px;
    margin-top: 14px;
    backdrop-filter: blur(12px);
    gap: 4px;
    width: 100%;
    box-sizing: border-box;
}

.hero__content--clean .hero__chevron-stepper {
    margin-top: 24px;
    max-width: 640px;
}

.hero__chevron-stepper--5step {
    grid-template-columns: repeat(5, 1fr) !important;
}

.chevron-step--highlight {
    background: rgba(16, 185, 129, 0.12) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
    font-weight: 700 !important;
}

.chevron-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #8492a6;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.chevron-step--active {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.28) 0%, rgba(20, 60, 120, 0.45) 100%);
    border: 1px solid rgba(0, 180, 255, 0.4);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 180, 255, 0.2);
}

.chevron-step__icon {
    font-size: 0.95rem;
}

.btn--glow-cta {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 40%, #6b11ff 100%) !important;
    border: none !important;
    color: #040914 !important;
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.5), 0 0 15px rgba(107, 17, 255, 0.3) !important;
    font-weight: 850 !important;
    padding: 14px 34px !important;
    border-radius: 30px !important;
}

.btn--glow-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(0, 242, 254, 0.75), 0 0 22px rgba(107, 17, 255, 0.5) !important;
}

/* ── Revenue Metrics Strip (Under CTAs) ── */
.hero__metrics-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(10, 20, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    margin-top: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.hms__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hms__number {
    font-size: 1.1rem;
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hms__label {
    font-size: 0.72rem;
    color: #94a3b8;
    white-space: nowrap;
}

.hms__divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
}

/* ── Rohan AI Floating Agent Visual Card ── */
.rohan-agent-card {
    position: absolute;
    bottom: 15px;
    left: -110px;
    z-index: 10;
    background: rgba(8, 16, 32, 0.94);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 16px;
    padding: 14px 18px;
    width: 250px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 180, 255, 0.3);
    backdrop-filter: blur(16px);
    animation: floatRohanCard 4s ease-in-out infinite alternate;
}

@keyframes floatRohanCard {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

/* ── Living Product Floating Cards ── */
.hero-float-card {
    position: absolute;
    z-index: 10;
    background: rgba(10, 22, 42, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 180, 255, 0.2);
    backdrop-filter: blur(14px);
}

.hero-float-card--lead {
    top: -15px;
    left: -100px;
    animation: floatLeadCard 5s ease-in-out infinite alternate;
}

@keyframes floatLeadCard {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-7px) rotate(-1deg); }
}

.hero-float-card--meeting {
    top: 10%;
    right: -65px;
    animation: floatMeetingCard 4.5s ease-in-out infinite alternate 1s;
}

@keyframes floatMeetingCard {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

.hfc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.hfc-icon {
    font-size: 0.85rem;
}

.hfc-icon--green { color: #10b981; }
.hfc-icon--blue { color: #00f2fe; }

.hfc-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.hfc-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
}

.hfc-meta {
    font-size: 0.72rem;
    color: #cbd5e1;
    margin-top: 2px;
}

.hfc-sub {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 2px;
}

.rohan-agent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.rohan-agent-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rohan-avatar {
    font-size: 1.4rem;
    background: rgba(0, 180, 255, 0.15);
    border-radius: 50%;
    padding: 4px;
}

.rohan-name {
    font-size: 0.85rem;
    font-weight: 850;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.04em;
}

.rohan-status {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rohan-pulse {
    color: #00f2fe;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.rohan-confidence {
    font-size: 0.68rem;
    font-weight: 700;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 12px;
    padding: 2px 8px;
    white-space: nowrap;
}

.rohan-agent-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rohan-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.rohan-label {
    color: #64748b;
}

.rohan-value {
    color: #e2e8f0;
    font-weight: 600;
}

.rohan-value--green {
    color: #10b981;
    font-weight: 700;
}

.rohan-value--action {
    color: #00f2fe;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rohan-agent-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .hero__metrics-strip {
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-around;
    }
    .hms__divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__chevron-stepper {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

.hero__headline-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 24px;
    font-style: italic;
    display: block;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn--hero-cta {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 750;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}
.btn--hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.hero__cta-subtext {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-left: 4px;
}

.btn--hero-demo {
    padding: 16px 28px;
    font-size: 1.02rem;
    border: 1px solid rgba(0, 180, 255, 0.3);
    color: var(--accent-light);
    background: rgba(0, 180, 255, 0.03);
    backdrop-filter: blur(8px);
}
.btn--hero-demo:hover {
    border-color: var(--accent);
    background: rgba(0, 180, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 255, 0.15);
}

/* Above-the-fold Social Proof */
.hero__social-proof {
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero__social-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.hero__social-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__social-logo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__social-logo:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* ═══════════════ HERO WORKFLOW STEPPER ═══════════════ */
.hero__workflow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 24px;
    gap: 4px;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE 10+ */
}

.hero__workflow::-webkit-scrollbar {
    display: none !important; /* Safari/Chrome */
    width: 0 !important;
    height: 0 !important;
}

.workflow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
    min-width: 60px;
}

.workflow__icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.workflow__step:hover .workflow__icon {
    transform: translateY(-2px) scale(1.05);
    background: rgba(0, 180, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 180, 255, 0.2);
}

.workflow__label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.workflow__step:hover .workflow__label {
    color: #fff;
}

.workflow__step--success .workflow__icon {
    background: rgba(0, 230, 138, 0.1);
    border-color: rgba(0, 230, 138, 0.2);
}

.workflow__step--success:hover .workflow__icon {
    background: rgba(0, 230, 138, 0.2);
    border-color: var(--success);
    box-shadow: 0 4px 12px rgba(0, 230, 138, 0.3);
}

.workflow__step--success .workflow__label {
    color: var(--success);
}

.workflow__arrow {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    animation: pulseArrow 2s infinite ease-in-out;
}

/* Stagger arrow animations */
.workflow__arrow:nth-child(2) { animation-delay: 0s; }
.workflow__arrow:nth-child(4) { animation-delay: 0.4s; }
.workflow__arrow:nth-child(6) { animation-delay: 0.8s; }
.workflow__arrow:nth-child(8) { animation-delay: 1.2s; }
.workflow__arrow:nth-child(10) { animation-delay: 1.6s; }

@keyframes pulseArrow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; color: var(--accent-light); transform: translateX(2px); }
}

@media (max-width: 640px) {
    .hero__workflow {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 100%;
    }
    
    .workflow__step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
        min-height: 40px;
    }
    
    .workflow__arrow {
        transform: rotate(90deg);
        align-self: center;
        margin: -4px 0;
        animation: pulseArrowVertical 2s infinite ease-in-out;
    }
    
    @keyframes pulseArrowVertical {
        0%, 100% { opacity: 0.4; transform: rotate(90deg) translateX(0); }
        50% { opacity: 1; color: var(--accent-light); transform: rotate(90deg) translateX(2px); }
    }
}

/* ═══════════════ PRIMARY & SECONDARY CTA BUTTONS ═══════════════ */
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}
.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero__trust-bullets {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__trust-bullet {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.hero__bullet-check {
    color: var(--success);
    font-weight: 800;
    font-size: 1rem;
}

/* ═══════════════ MONIKA AI PRODUCT EXPERIENCE CARD ═══════════════ */
.hero__demo-card {
    background: rgba(10, 22, 48, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 180, 255, 0.05);
    transition: all var(--transition-normal);
}
.hero__demo-card:hover {
    border-color: rgba(0, 180, 255, 0.3);
}

.hero__demo-card--heroic {
    border: 1.5px solid rgba(0, 180, 255, 0.35);
    background: radial-gradient(circle at top left, rgba(0, 180, 255, 0.06) 0%, rgba(10, 22, 48, 0.6) 80%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 180, 255, 0.15);
}

/* AI Profile Panel Styling */
.monika-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

/* Monika Today's Stats Bar */
.monika-today-stats {
    background: rgba(0, 180, 255, 0.03);
    border: 1px dashed rgba(0, 180, 255, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 20px;
}

.stats-title {
    font-size: 0.74rem;
    font-weight: 750;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-count {
    font-size: 1.1rem;
    font-weight: 850;
    color: var(--accent-light);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.monika-avatar-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.monika-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 180, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 180, 255, 0.2);
}

.monika-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid #0a1630;
}

.monika-bio {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.monika-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.monika-tag {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.monika-status-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--success);
    margin-top: 4px;
}

/* Capabilities Checklist */
.monika-capabilities {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.monika-capabilities li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.monika-capabilities .chk {
    color: var(--success);
    font-weight: 800;
}

@media (max-width: 600px) {
    .monika-capabilities {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Trust Footer */
.monika-trust-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.monika-trust-metrics {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-metric-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-light);
    flex: 1;
    min-width: 100px;
}

.monika-trust-details {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
    padding-top: 10px;
}

.trust-detail-item {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    flex: 1;
    min-width: 100px;
}

@media (max-width: 480px) {
    .monika-trust-metrics, .monika-trust-details {
        flex-direction: column;
        gap: 6px;
    }
}

.btn--pulse {
    animation: buttonPulse 2s infinite alternate;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 12px rgba(0, 180, 255, 0.2); }
    100% { box-shadow: 0 0 24px rgba(0, 180, 255, 0.55); }
}

.hero__demo-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.hero__demo-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.hero__demo-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__demo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.hero__demo-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero__demo-main-action {
    margin-bottom: 24px;
}

.hero__demo-main-action .btn--voice {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b4ff 0%, #7c5cff 100%);
    border: none;
    color: #fff;
    box-shadow: 0 0 16px rgba(0, 180, 255, 0.4), 0 4px 12px rgba(124, 92, 255, 0.3);
    transition: all var(--transition-normal);
    animation: ctaPulse 2s infinite alternate;
}

.hero__demo-main-action .btn--voice:hover {
    background: linear-gradient(135deg, #00d6ff 0%, #9076ff 100%);
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.6), 0 6px 18px rgba(124, 92, 255, 0.4);
    transform: translateY(-2px);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 16px rgba(0, 180, 255, 0.3), 0 4px 12px rgba(124, 92, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 28px rgba(0, 180, 255, 0.6), 0 4px 20px rgba(124, 92, 255, 0.5);
    }
}

.hero__demo-alternative {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.hero__demo-alt-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.hero__quick-call-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-call-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.quick-call-input:focus {
    border-color: var(--accent);
    background: rgba(0, 180, 255, 0.05);
}

.btn--call-now {
    background: linear-gradient(135deg, #00e68a 0%, #00b4ff 100%);
    color: #050b14;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn--call-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 138, 0.35);
}

.btn--voice {
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid var(--accent);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn--voice:hover {
    background: rgba(0, 180, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
    transform: translateY(-2px);
}

.voice-pulse-dot {
    width: 8px;
    height: 8px;
    background: #00e68a;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero__stats { display: flex; gap: 40px; }

.hero__stat { display: flex; flex-direction: column; }

.hero__stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 6px;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.hero__image { 
    width: 100%; 
    border-radius: 20px; 
    display: block; 
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 180, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 20px;
}

/* Floating Callout Badges */
.hero__callout {
    position: absolute;
    background: rgba(14, 29, 61, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(0, 180, 255, 0.1);
    z-index: 10;
    transition: all var(--transition-fast);
    cursor: default;
}

.hero__callout:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: var(--accent-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 180, 255, 0.2);
}

.callout__dot {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout__text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.hero__callout--1 {
    top: 15%;
    left: -20px;
    animation: floatOne 6s infinite ease-in-out;
}

.hero__callout--2 {
    top: 50%;
    right: -30px;
    animation: floatTwo 7s infinite ease-in-out;
}

.hero__callout--3 {
    bottom: 20%;
    left: -10px;
    animation: floatThree 8s infinite ease-in-out;
}

@keyframes floatOne {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px) translateX(2px); }
}

@keyframes floatTwo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px) translateX(-3px); }
}

@keyframes floatThree {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px) translateX(4px); }
}

@media (max-width: 992px) {
    .hero__callout {
        padding: 8px 12px;
    }
    .callout__text {
        font-size: 0.76rem;
    }
    .hero__callout--1 { left: -10px; }
    .hero__callout--2 { right: -10px; }
    .hero__callout--3 { left: -5px; }
}

@media (max-width: 768px) {
    .hero__callout {
        position: static;
        margin-top: 10px;
        width: fit-content;
        animation: none;
    }
    .hero__image-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* Redesigned Live Call Simulation Card */
.hero__live-call {
    position: relative;
    width: 100%;
    background: rgba(14, 29, 61, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 180, 255, 0.08);
    transition: all var(--transition-normal);
}

.hero__live-call:hover {
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(0, 180, 255, 0.12);
}

.hero__live-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.hero__live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--danger);
}

.hero__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulse 1s infinite;
}

.hero__live-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
}

.hero__live-transcript {
    font-size: 0.92rem;
    color: var(--text-secondary);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.hero__live-transcript .line {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s var(--ease-out) forwards;
    margin-bottom: 0;
}

.hero__live-transcript .speaker { font-weight: 700; color: var(--accent-light); }
.hero__live-transcript .speaker--ai { color: var(--success); }

.hero__live-action {
    display: flex;
    justify-content: flex-start;
}

.hero__live-action .btn--small {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* CRM Outcome Card Styling */
.crm-outcome-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 18px;
    margin-top: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s var(--ease-out);
}

.crm-outcome-card.visible {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(0, 230, 138, 0.25);
    background: rgba(0, 230, 138, 0.03);
    box-shadow: 0 12px 32px rgba(0, 230, 138, 0.05);
}

.crm-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crm-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.crm-label {
    font-size: 0.72rem;
    font-weight: 750;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.crm-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
}

.crm-value--status {
    color: var(--success);
    font-weight: 800;
}

.crm-value--sync {
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 6px;
}

.crm-section--footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 4px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════ SOCIAL PROOF ═══════════════ */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.social-proof__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.social-proof__text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.social-proof__logos { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }

.social-proof__logo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}
.social-proof__logo:hover { opacity: 1; }

/* ═══════════════ PAIN ═══════════════ */
.pain { padding: 30px 0 80px; }

.pain__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pain__card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 36px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.pain__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), var(--warning));
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.pain__card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.pain__card:hover::before { opacity: 1; }

.pain__icon { font-size: 2.4rem; margin-bottom: 20px; }
.pain__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pain__text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════ FEATURES ═══════════════ */
.features { padding: var(--section-padding); background: var(--bg-secondary); }

.features__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 36px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0, 180, 255, 0.06); }
.feature-card:hover::after { opacity: 1; }

.feature-card__icon { font-size: 2.4rem; margin-bottom: 20px; }
.feature-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.feature-card__text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works { padding: var(--section-padding); }
.how-it-works__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

.how-it-works__steps { display: flex; align-items: flex-start; justify-content: center; }

.step { flex: 1; text-align: center; padding: 32px; max-width: 320px; }

.step__number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.step__text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

.step__connector { width: 80px; height: 2px; background: var(--accent-gradient); margin-top: 56px; flex-shrink: 0; opacity: 0.4; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials { padding: var(--section-padding); background: var(--bg-secondary); }
.testimonials__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
/* Results Section Comparison & Funnel Layout */
.results__main-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    background: rgba(10, 22, 48, 0.45);
    border: 1px solid rgba(0, 180, 255, 0.18);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 180, 255, 0.05);
    align-items: flex-start;
    backdrop-filter: blur(20px);
}

.results__card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.results__card-title--center {
    text-align: center;
}

/* Comparison Grid Styling */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.comparison-header__col {
    font-size: 0.82rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.comparison-header__col.before {
    color: var(--text-muted);
}

.comparison-header__col.after {
    color: var(--accent-light);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-col {
    font-size: 0.95rem;
    font-weight: 600;
}

.comparison-col.before {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.comparison-col.after {
    color: #fff;
}

/* Small Stat Metrics Grid */
.results__small-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.small-metric {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all var(--transition-fast);
}

.small-metric:hover {
    border-color: rgba(0, 180, 255, 0.2);
    background: rgba(0, 180, 255, 0.02);
    transform: translateY(-1px);
}

.small-metric__num {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--success);
    font-family: var(--font-mono);
}

.small-metric__lbl {
    font-size: 0.76rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Animated Funnel Container Styling */
.funnel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.funnel-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.funnel-stage::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: rotate(30deg);
    animation: funnelShimmer 4s infinite linear;
}

@keyframes funnelShimmer {
    0% { transform: translate(-30%, -30%) rotate(30deg); }
    100% { transform: translate(30%, 30%) rotate(30deg); }
}

.funnel-stage--1 {
    width: 100%;
    background: rgba(0, 180, 255, 0.12);
    border: 1px solid rgba(0, 180, 255, 0.25);
}

.funnel-stage--2 {
    width: 82%;
    background: rgba(124, 92, 255, 0.12);
    border: 1px solid rgba(124, 92, 255, 0.25);
}

.funnel-stage--3 {
    width: 64%;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.funnel-stage--4 {
    width: 46%;
    background: rgba(0, 230, 138, 0.15);
    border: 1px solid rgba(0, 230, 138, 0.35);
    box-shadow: 0 0 20px rgba(0, 230, 138, 0.15);
}

.funnel-stage:hover {
    transform: scale(1.02);
    filter: brightness(1.15);
}

.funnel-stage__label {
    font-size: 1.05rem;
    font-weight: 850;
    color: #fff;
}

.funnel-stage--4 .funnel-stage__label {
    color: var(--success);
}

.funnel-stage__desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.funnel-arrow {
    font-size: 0.74rem;
    font-weight: 750;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    animation: funnelArrowPulse 1.8s infinite alternate;
}

@keyframes funnelArrowPulse {
    0% { opacity: 0.4; transform: scale(0.97); }
    100% { opacity: 1; color: var(--accent-light); transform: scale(1.02); }
}

/* Play Audio Demo Widget */
.results__audio-demo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.12) 0%, rgba(124, 92, 255, 0.06) 100%);
    border: 1.5px solid rgba(0, 180, 255, 0.25);
    border-radius: 20px;
    padding: 24px 36px;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    margin-bottom: 56px;
}

.audio-demo__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.audio-demo__icon {
    font-size: 2rem;
    background: rgba(0, 180, 255, 0.16);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 180, 255, 0.25);
}

.audio-demo__text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audio-demo__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.audio-demo__sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 2px;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
}

.flow-step.font-highlight {
    background: rgba(0, 180, 255, 0.15);
    color: var(--accent-light);
}

.flow-arrow {
    color: var(--text-muted);
    font-weight: 800;
}

#btn-play-audio-demo {
    flex-shrink: 0;
    padding: 14px 28px;
    font-size: 0.98rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

/* Responsive Rules */
@media (max-width: 968px) {
    .results__main-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px 24px;
    }
    
    .results__card-title--center {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .results__audio-demo-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        text-align: center;
    }
    
    .audio-demo__content {
        flex-direction: column;
        gap: 12px;
    }
    
    .audio-demo__sub {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    #btn-play-audio-demo {
        width: 100%;
        justify-content: center;
    }
}

.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all var(--transition-normal);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.testimonial-card__quote { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; }

.testimonial-card__author { display: flex; align-items: center; gap: 12px; }

.testimonial-card__avatar {
    width: 48px; 
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(0, 180, 255, 0.3);
}

.testimonial-card__name { font-weight: 700; font-size: 0.95rem; }
.testimonial-card__role { font-size: 0.88rem; color: var(--text-muted); }

.testimonial-card__metric {
    background: rgba(0, 230, 138, 0.08);
    border: 1px solid rgba(0, 230, 138, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.testimonial-card__metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--success);
    display: block;
}

.testimonial-card__metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ═══════════════ PRICING ═══════════════ */
.pricing { padding: var(--section-padding); }
.pricing__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all var(--transition-normal);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.pricing-card--popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 180, 255, 0.08) 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 40px var(--accent-glow);
    transform: scale(1.04);
}
.pricing-card--popular:hover { transform: scale(1.04) translateY(-4px); }

.pricing-card__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 100px;
}

.pricing-card__name { font-size: 1.4rem; font-weight: 800; }
.pricing-card__desc { font-size: 0.85rem; color: var(--text-muted); }

.pricing-card__price { display: flex; align-items: baseline; gap: 2px; }
.pricing-card__currency { font-size: 1.2rem; font-weight: 700; color: var(--text-secondary); }
.pricing-card__amount { font-size: 2.4rem; font-weight: 900; font-family: var(--font-mono); }
.pricing-card__period { font-size: 0.9rem; color: var(--text-muted); }

.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-card__features li { font-size: 0.9rem; color: var(--text-secondary); }

/* ═══════════════ ROI CALCULATOR ═══════════════ */
.roi { padding: var(--section-padding); }
.roi__container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

.roi__calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
}

.roi__inputs { display: flex; flex-direction: column; gap: 32px; }

.roi__field { display: flex; flex-direction: column; gap: 12px; }

.roi__label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }

.roi__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 180, 255, 0.15);
    outline: none;
    cursor: pointer;
}
.roi__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 12px var(--accent-glow);
}
.roi__slider::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}

.roi__value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-light);
}

.roi__results { display: flex; flex-direction: column; gap: 20px; justify-content: center; }

.roi__result-card {
    background: rgba(0, 180, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    display: flex; justify-content: space-between; align-items: center;
}

.roi__result-card--highlight {
    background: rgba(0, 230, 138, 0.08);
    border-color: rgba(0, 230, 138, 0.25);
}

.roi__result-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

.roi__result-number {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-light);
}

.roi__result-card--highlight .roi__result-number { color: var(--success); font-size: 2rem; }

/* ═══════════════ CTA ═══════════════ */
.cta {
    padding: var(--section-padding);
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 180, 255, 0.1) 0%, transparent 70%);
}

.cta__container { max-width: 680px; margin: 0 auto; padding: 0 32px; text-align: center; }

.cta__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta__subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; }

.cta__form { display: flex; flex-direction: column; gap: 16px; }

.cta__input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta__input {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}
.cta__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.cta__input::placeholder { color: var(--text-muted); }

.cta__disclaimer { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; }
.footer__tagline { font-size: 0.9rem; color: var(--text-muted); margin-left: 16px; }
.footer__links { display: flex; gap: 32px; }
.footer__links a { font-size: 0.9rem; color: var(--text-secondary); transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--text-primary); }
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 968px) {
    .hero__container { grid-template-columns: 1fr; gap: 32px; }
    .hero__visual { order: 2; }
    .pain__grid, .features__grid, .testimonials__grid, .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .how-it-works__steps { flex-direction: column; align-items: center; }
    .step__connector { width: 2px; height: 40px; }
    .nav__links { display: none; }
    .cta__input-group { grid-template-columns: 1fr; }
    .pricing-card--popular { transform: scale(1); }
    .pricing-card--popular:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
    .hero { padding: 85px 0 40px; }
    .hero__container { padding: 0 16px; }
    .hero__title { font-size: 2rem; }
    .hero__quick-call-form { flex-direction: column; }
    .hero__quick-call-form .btn { width: 100%; justify-content: center; }
    .hero__actions { flex-direction: column; width: 100%; align-items: stretch; }
    .hero__cta-wrapper { width: 100%; }
    .hero__cta-wrapper .btn { width: 100%; justify-content: center; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero__stat-number { font-size: 1.4rem; }
    .hero__stat-label { font-size: 0.68rem; }
}

/* ═══════════════ VOICE DEMO WIDGET & FLOATING TRIGGER ═══════════════ */
.btn--voice {
    background: rgba(0, 180, 255, 0.12);
    border: 1.5px solid var(--accent);
    color: var(--accent-light);
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.btn--voice:hover {
    background: rgba(0, 180, 255, 0.2);
    box-shadow: 0 0 36px rgba(0, 180, 255, 0.4);
    transform: translateY(-2px);
}

.voice-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Floating Voice Launcher Button */
.floating-voice {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 14px;
    background: var(--bg-card);
    border: 1.5px solid var(--accent);
    border-radius: 100px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 24px var(--accent-glow);
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}
.floating-voice:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.7), 0 0 36px rgba(0, 180, 255, 0.45);
}
.floating-voice.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
}

.floating-voice__icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.floating-voice__label { display: flex; flex-direction: column; }
.floating-voice__title { font-size: 0.95rem; font-weight: 800; color: #fff; }
.floating-voice__sub { font-size: 0.72rem; color: var(--accent-light); font-weight: 600; }

/* Video Demo Modal styling */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 33, 0.75);
    backdrop-filter: blur(12px);
}

.video-modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #0a1630;
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 180, 255, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transform: translateY(24px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal__container {
    transform: translateY(0) scale(1);
}

.video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.video-modal__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.video-modal__close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color var(--transition-fast);
}

.video-modal__close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.video-modal__body {
    padding: 0;
    background: #000;
}

.video-aspect-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-aspect-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Voice Demo Modal */
.voice-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.voice-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.voice-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 33, 0.6);
    backdrop-filter: blur(8px);
}

.voice-modal__container {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #0a1630;
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 180, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.voice-modal.active .voice-modal__container {
    transform: translateY(0) scale(1);
}

.voice-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.voice-modal__agent { display: flex; align-items: center; gap: 12px; }

.voice-avatar-wrap { position: relative; }
.voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.voice-avatar__status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid #0a1630;
}

.voice-modal__title { font-size: 1rem; font-weight: 800; color: #fff; }
.voice-modal__meta { font-size: 0.75rem; color: var(--accent-light); font-weight: 600; }

.voice-modal__close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color var(--transition-fast);
}
.voice-modal__close-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

/* Visualizer Waveform */
.voice-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 60px;
    padding: 10px;
    background: rgba(0, 180, 255, 0.03);
}

.voice-wave-bar {
    width: 4px;
    height: 8px;
    border-radius: 99px;
    background: var(--accent);
    transition: height 0.15s ease;
}

.voice-wave-bar.speaking {
    animation: waveBounce 0.8s ease-in-out infinite alternate;
}
.voice-wave-bar:nth-child(1) { animation-delay: 0.1s; }
.voice-wave-bar:nth-child(2) { animation-delay: 0.3s; }
.voice-wave-bar:nth-child(3) { animation-delay: 0.5s; }
.voice-wave-bar:nth-child(4) { animation-delay: 0.2s; }
.voice-wave-bar:nth-child(5) { animation-delay: 0.4s; }
.voice-wave-bar:nth-child(6) { animation-delay: 0.6s; }
.voice-wave-bar:nth-child(7) { animation-delay: 0.25s; }
.voice-wave-bar:nth-child(8) { animation-delay: 0.45s; }

@keyframes waveBounce {
    0% { height: 6px; }
    100% { height: 38px; background: #5ccfff; }
}

/* Chat stream */
.voice-chat-messages {
    padding: 16px 20px;
    max-height: 220px;
    min-height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voice-msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.voice-msg--ai {
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.15);
    align-self: flex-start;
}
.voice-msg--user {
    background: rgba(255, 255, 255, 0.08);
    align-self: flex-end;
    text-align: right;
}

.voice-msg__speaker {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 2px;
}

/* Suggested chips */
.voice-chips {
    padding: 10px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.voice-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.voice-chip:hover {
    background: rgba(0, 180, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
}

/* Modal Controls */
.voice-modal__controls {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
}

.voice-btn--end {
    background: rgba(255, 77, 106, 0.15);
    border: 1px solid var(--danger);
    color: #ff8095;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.voice-btn--end:hover {
    background: var(--danger);
    color: #fff;
}

@media (max-width: 600px) {
    .floating-voice { bottom: 20px; right: 20px; padding: 8px 16px 8px 10px; }
    .floating-voice__icon { width: 36px; height: 36px; font-size: 1.2rem; }
    .voice-modal { padding: 12px; }
}

/* ═══════════════ CHECKOUT & PAYMENT MODAL ═══════════════ */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 33, 0.75);
    backdrop-filter: blur(12px);
}

.checkout-modal__container {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #0a1630;
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 28px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 180, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-modal.active .checkout-modal__container {
    transform: translateY(0) scale(1);
}

.checkout-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 16px;
}

.checkout-badge {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 6px;
}

.checkout-modal__title { font-size: 1.3rem; font-weight: 900; color: #fff; margin: 0; }
.checkout-modal__sub { font-size: 0.82rem; color: var(--text-secondary); margin-top: 2px; }

.checkout-modal__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: color var(--transition-fast);
}
.checkout-modal__close:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

.checkout-price-box {
    margin: 0 28px 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-price-inr { font-size: 1.4rem; font-weight: 900; color: #fff; }
.checkout-price-usd { font-size: 0.85rem; color: var(--text-muted); margin-left: 6px; }

.checkout-trial-pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(0, 230, 138, 0.1);
    border: 1px solid rgba(0, 230, 138, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
}

/* Tabs */
.checkout-tabs {
    display: flex;
    gap: 8px;
    padding: 0 28px 16px;
}

.checkout-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.checkout-tab.active {
    background: rgba(0, 180, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
}

/* Form & Inputs */
.checkout-form { padding: 0 28px 24px; }
.tab-pane { margin-bottom: 16px; }

.upi-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(0, 180, 255, 0.3);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.qr-graphic {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.qr-text { font-size: 0.75rem; color: var(--text-secondary); margin: 0; }

.card-box { display: flex; flex-direction: column; gap: 10px; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.crypto-box {
    background: rgba(124, 92, 255, 0.08);
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}
.crypto-meta { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 8px; }
.crypto-address {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #c084fc;
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.btn-connect-wallet {
    background: #7c5cff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.checkout-user-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.checkout-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.88rem;
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition-fast);
}
.checkout-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}
.checkout-input::placeholder { color: var(--text-muted); }

.btn--checkout-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.checkout-guarantee {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

/* ═══════════════ SOCIAL PROOF & METRICS STRIP ═══════════════ */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.social-proof__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr auto 0.9fr;
    gap: 48px;
    align-items: center;
}

.social-proof__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-strip__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    transition: all var(--transition-fast);
}
.metric-strip__card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 180, 255, 0.2);
    transform: translateY(-2px);
}

.metric-strip__number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-light);
}

.metric-strip__number--down {
    color: var(--success);
}

.metric-strip__number--up {
    color: var(--success);
}

.metric-strip__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.social-proof__divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
}

.social-proof__trust {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust__testimonial {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust__stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.trust__quote {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
}

.trust__logos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust__logos-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.social-proof__logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.social-proof__logo {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}
.social-proof__logo:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .social-proof__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .social-proof__divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .social-proof__metrics {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════ OPERATING SYSTEM POSITIONING SECTION ═══════════════ */
.positioning {
    padding: 80px 0 30px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
}

.positioning__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.section__title--left {
    text-align: left;
    margin-bottom: 16px;
}

.section__subtitle--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;
}

.positioning__features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.positioning__feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-item__bullet {
    color: var(--accent-light);
    font-weight: 800;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    background: rgba(0, 180, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-item__text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feat-item__text-group strong {
    font-size: 1rem;
    color: #fff;
}

.feat-item__text-group span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CRM OS Diagram Tree */
.os-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: rgba(14, 29, 61, 0.4);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.os-node {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all var(--transition-fast);
}

.os-node--root {
    background: var(--accent-gradient);
    border: none;
    padding: 16px 28px;
    box-shadow: 0 8px 32px var(--accent-glow);
    z-index: 2;
    position: relative;
}

.os-node--root .os-node__icon {
    font-size: 1.8rem;
}

.os-node__info {
    display: flex;
    flex-direction: column;
}

.os-node__title {
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.os-node__sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.os-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 32px;
    position: relative;
}

.os-node--child {
    background: rgba(10, 22, 48, 0.6);
    border-color: rgba(0, 180, 255, 0.15);
    justify-content: flex-start;
    padding: 12px 16px;
}
.os-node--child:hover {
    background: rgba(10, 22, 48, 0.9);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 255, 0.15);
}

.os-node__icon {
    font-size: 1.2rem;
}

.os-node__label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

/* Branch connector lines using pseudo elements */
.os-branches::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 180, 255, 0.1) 100%);
    z-index: 1;
}

@media (max-width: 992px) {
    .positioning__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .os-branches {
        grid-template-columns: 1fr;
    }
}


