﻿html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    background: #ffffff;
    color: #111827;
    scroll-behavior: smooth;
}

/* =========================
   VARIABLES
========================= */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --accent: #f2784b;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #f8fafc;
}

/* =========================
   LAYOUT
========================= */

.container-landing {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   NAVBAR
========================= */

.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229,231,235,.7);
}

.landing-navbar-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.landing-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(124,58,237,.22);
}

.landing-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
}

/* =========================
   NAV LINKS
========================= */

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .landing-nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 500;
        transition: color .15s ease;
    }

        .landing-nav-links a:hover {
            color: var(--text);
        }

/* =========================
   BUTTONS
========================= */

.btn-landing-primary {
    height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white !important;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(124,58,237,.22);
    transition: transform .15s ease, opacity .15s ease;
}

    .btn-landing-primary:hover {
        color: white;
        opacity: .96;
        transform: translateY(-1px);
    }

.btn-landing-secondary {
    height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    background: white;
    transition: transform .15s ease, border-color .15s ease;
}

    .btn-landing-secondary:hover {
        color: var(--text);
        border-color: #d1d5db;
        transform: translateY(-1px);
    }

/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* =========================
   HERO GLOW
========================= */

    .hero-section::before {
        content: "";
        position: absolute;
        width: 640px;
        height: 640px;
        border-radius: 50%;
        background: radial-gradient( rgba(124,58,237,.18), transparent 70% );
        top: -220px;
        right: -120px;
        pointer-events: none;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(124,58,237,.10), transparent 70% );
        bottom: -180px;
        left: -120px;
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
    overflow: visible;
}

.hero-title {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-badge {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   HERO MOCKUP
========================= */

.hero-mockup {
    position: relative;
    overflow: visible;
}

.hero-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(15,23,42,.08);
}

/* =========================
   SECTION
========================= */

.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 18px;
    text-align: center;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .landing-nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-landing-primary,
    .btn-landing-secondary {
        width: 100%;
    }

    .section-title {
        font-size: 40px;
    }
}

/* =========================
   PROBLEM
========================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 24px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.problem-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   STEPS
========================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 14px 32px rgba(124,58,237,.22);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 24px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CRM
========================= */

.crm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 24px;
}

.crm-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.crm-subtitle {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.crm-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crm-item {
    display: flex;
    gap: 16px;
    color: #374151;
    line-height: 1.8;
}

.crm-check {
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(124,58,237,.22);
}

.crm-panel {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,23,42,.08);
}

.crm-panel-header {
    height: 68px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(229,231,235,.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crm-dots {
    display: flex;
    gap: 8px;
}

    .crm-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
    }

.crm-panel-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.crm-timeline {
    padding: 32px;
}

.crm-event {
    display: flex;
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(229,231,235,.7);
}

    .crm-event:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.crm-event-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.crm-event-text {
    color: var(--muted);
    margin-top: 6px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .crm-grid {
        grid-template-columns: 1fr;
    }

    .crm-title {
        font-size: 42px;
    }
}

/* =========================
   ROI
========================= */

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.roi-card,
.roi-result-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15,23,42,.05);
}

.roi-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.roi-result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-result-kicker {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.roi-result-value {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.roi-result-text {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .roi-wrapper {
        grid-template-columns: 1fr;
    }

    .roi-result-value {
        font-size: 52px;
    }
}

/* =========================
   WHY
========================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(229,231,235,.9);
    background: white;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.why-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.why-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.comparison-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 32px;
    overflow-x: auto;
    box-shadow: 0 20px 50px rgba(15,23,42,.05);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison-table th,
    .comparison-table td {
        padding: 18px;
        border-bottom: 1px solid rgba(229,231,235,.7);
        text-align: center;
    }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
        }

    .comparison-table th {
        font-size: 14px;
        font-weight: 700;
        color: #6b7280;
        letter-spacing: .05em;
    }

    .comparison-table td {
        font-weight: 600;
    }

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SECTORS
========================= */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    position: relative;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .sector-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.sector-featured {
    border: 1px solid rgba(124,58,237,.28);
    box-shadow: 0 20px 50px rgba(124,58,237,.08);
}

.sector-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
}

.sector-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.sector-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.sector-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRICING
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(15,23,42,.06);
    }

.pricing-featured {
    border: 1px solid rgba(124,58,237,.28);
    box-shadow: 0 24px 60px rgba(124,58,237,.10);
}

.pricing-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    margin-bottom: 18px;
}

    .pricing-price span {
        font-size: 18px;
        font-weight: 500;
        color: var(--muted);
    }

.pricing-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

    .pricing-feature i {
        color: var(--primary);
    }

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-price {
        font-size: 48px;
    }
}

/* =========================
   FAQ
========================= */

.faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(229,231,235,.9) !important;
    border-radius: 24px !important;
    overflow: hidden;
    margin-bottom: 18px;
    background: white;
}

.accordion-button {
    min-height: 84px;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    background: white;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: rgba(124,58,237,.03);
        color: var(--primary);
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 0 28px 28px;
    color: var(--muted);
    line-height: 1.9;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
    padding: 100px 0;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    border-radius: 40px;
    padding: 80px 60px;
    color: white;
    text-align: center;
    box-shadow: 0 30px 70px rgba(124,58,237,.22);
}

    .final-cta-card::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -180px;
        right: -120px;
    }

    .final-cta-card::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -120px;
        left: -120px;
    }

.final-cta-kicker {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 24px;
    opacity: .9;
}

.final-cta-title {
    position: relative;
    z-index: 2;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.final-cta-subtitle {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.9;
    opacity: .92;
}

.final-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 18px;
}

    .final-cta-actions .btn-landing-secondary {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        color: white;
    }

        .final-cta-actions .btn-landing-secondary:hover {
            background: rgba(255,255,255,.16);
        }

/* =========================
   FOOTER
========================= */

.landing-footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(229,231,235,.9);
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.footer-text {
    color: var(--muted);
    line-height: 1.9;
    max-width: 380px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .footer-links a {
        color: var(--muted);
        text-decoration: none;
        transition: color .15s ease;
    }

        .footer-links a:hover {
            color: var(--text);
        }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(229,231,235,.8);
    text-align: center;
    color: var(--muted);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .final-cta-card {
        padding: 56px 32px;
    }

    .final-cta-title {
        font-size: 48px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HERO PLACEHOLDER
========================= */

.hero-placeholder {
    background: linear-gradient( 180deg, #ffffff, #f8fafc );
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 24px;
    overflow: hidden;
}

.hero-placeholder-top {
    height: 72px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(229,231,235,.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-placeholder-search {
    width: 220px;
    height: 16px;
    border-radius: 999px;
    background: #e5e7eb;
}

.hero-placeholder-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
}

.hero-placeholder-body {
    display: flex;
    min-height: 420px;
}

.hero-placeholder-sidebar {
    width: 92px;
    border-right: 1px solid rgba(229,231,235,.8);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-placeholder-menu {
    height: 52px;
    border-radius: 16px;
    background: #eef2ff;
}

    .hero-placeholder-menu.active {
        background: linear-gradient( 135deg, rgba(124,58,237,.18), rgba(124,58,237,.08) );
    }

.hero-placeholder-content {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-placeholder-chat {
    height: 82px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #f3f4f6, #eef2ff );
}

    .hero-placeholder-chat.small {
        width: 62%;
    }

    .hero-placeholder-chat.medium {
        width: 78%;
    }

/* =========================
   MOBILE NAV
========================= */

.mobile-nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(229,231,235,.9);
    background: white;
    display: none;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    .mobile-nav-toggle:hover {
        background: #f9fafb;
    }

.mobile-nav {
    display: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .landing-nav-links {
        display: none;
    }

    .mobile-nav {
        position: absolute;
        top: 92px;
        left: 24px;
        right: 24px;
        background: white;
        border: 1px solid rgba(229,231,235,.9);
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 24px 60px rgba(15,23,42,.12);
        flex-direction: column;
        gap: 18px;
        z-index: 1200;
    }

        .mobile-nav.show {
            display: flex;
        }

        .mobile-nav a:not(.btn-landing-primary) {
            color: #111827;
            text-decoration: none;
            font-weight: 600;
        }

        .mobile-nav .btn-landing-primary {
            width: 100%;
        }
}

/* =========================
   HERO FLOATING
========================= */

.hero-mockup {
    position: relative;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 24px 50px rgba(15,23,42,.10);
    animation: floating 4s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-1 {
    top: 40px;
    right: -40px;
}

.hero-floating-2 {
    bottom: 80px;
    left: -40px;
    animation-delay: 1s;
}

.hero-floating-3 {
    bottom: -20px;
    right: 40px;
    animation-delay: 2s;
}

.hero-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

    .hero-floating-icon.success {
        background: rgba(34,197,94,.10);
        color: #16a34a;
    }

    .hero-floating-icon.purple {
        background: rgba(124,58,237,.08);
        color: var(--primary);
    }

.hero-floating-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-floating-text {
    font-size: 14px;
    color: var(--muted);
}

/* =========================
   ANIMATION
========================= */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .hero-floating-card {
        display: none;
    }
}

/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================
   LANDING LANGUAGE SWITCHER
========================= */

.landing-lang-form {
    margin: 0;
    padding: 0;
}

.landing-lang-btn {
    height: 38px;
    min-width: 64px;
    border: 1px solid rgba(124,58,237,.18);
    border-radius: 999px;
    background: #ffffff;
    color: #6d28d9;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    transition: all .18s ease;
}

    .landing-lang-btn:hover {
        background: #f5f3ff;
        transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(15,23,42,.12);
    }

.mobile-nav .landing-lang-form {
    width: 100%;
}

.mobile-nav .landing-lang-btn {
    width: 100%;
}

/* =========================
   PARTNER APPLICATION
========================= */

.partner-application-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}

    .partner-application-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        top: -180px;
        left: -180px;
        border-radius: 50%;
        background: radial-gradient( rgba(124, 58, 237, .12), transparent 70% );
        pointer-events: none;
    }

.partner-application-wrapper {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    align-items: start;
    gap: 64px;
}

.partner-application-content {
    position: sticky;
    top: 120px;
}

.partner-application-title {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.partner-application-subtitle {
    max-width: 560px;
    margin: 0 0 38px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}

.partner-application-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.partner-application-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 20px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .04);
}

.partner-application-benefit-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, .09);
    color: var(--primary);
    font-size: 17px;
}

.partner-application-benefit strong,
.partner-application-benefit span {
    display: block;
}

.partner-application-benefit strong {
    margin-bottom: 5px;
    color: var(--text);
    font-size: 16px;
}

.partner-application-benefit span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.partner-application-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}

.partner-application-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

    .partner-application-card-head span {
        display: block;
        margin-bottom: 5px;
        color: var(--primary);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .partner-application-card-head h3 {
        margin: 0;
        color: var(--text);
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -.03em;
    }

.partner-application-card-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 14px 34px rgba(124, 58, 237, .22);
}

.partner-application-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.partner-application-field {
    min-width: 0;
}

.partner-application-field-wide {
    grid-column: 1 / -1;
}

.partner-application-field label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.partner-application-field .form-control,
.partner-application-field .form-select {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: none;
}

.partner-application-field textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.partner-application-field .form-control:focus,
.partner-application-field .form-select:focus {
    border-color: rgba(124, 58, 237, .58);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .09);
}

.partner-application-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0 18px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

    .partner-application-consent input {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        margin-top: 2px;
        accent-color: var(--primary);
    }

.partner-application-submit {
    width: 100%;
    margin-top: 4px;
}

    .partner-application-submit:disabled {
        opacity: .65;
        cursor: wait;
        transform: none;
    }

.partner-application-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

    .partner-application-result.success {
        border: 1px solid rgba(22, 163, 74, .18);
        background: rgba(22, 163, 74, .08);
        color: #15803d;
    }

    .partner-application-result.error {
        border: 1px solid rgba(220, 38, 38, .18);
        background: rgba(220, 38, 38, .07);
        color: #b91c1c;
    }

    .partner-application-result[hidden] {
        display: none;
    }

@media (max-width: 1100px) {
    .partner-application-wrapper {
        grid-template-columns: 1fr;
    }

    .partner-application-content {
        position: static;
    }

    .partner-application-subtitle {
        max-width: 760px;
    }
}

@media (max-width: 640px) {
    .partner-application-title {
        font-size: 38px;
    }

    .partner-application-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .partner-application-form-grid {
        grid-template-columns: 1fr;
    }

    .partner-application-field-wide {
        grid-column: auto;
    }

    .partner-application-card-head h3 {
        font-size: 24px;
    }
}

/* =========================
   VOICE DEMO MODAL
========================= */

body.voice-demo-modal-open {
    overflow: hidden;
}

.voice-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .voice-demo-modal.show {
        display: flex;
    }

.voice-demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .66);
    backdrop-filter: blur(8px);
    animation: voiceDemoBackdropIn .18s ease;
}

.voice-demo-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(15, 23, 42, .28);
    animation: voiceDemoModalIn .22s ease;
}

.voice-demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    color: #64748b;
    font-size: 17px;
    cursor: pointer;
    transition: all .16s ease;
}

    .voice-demo-modal-close:hover {
        background: #f8fafc;
        color: #111827;
        transform: rotate(4deg);
    }

.voice-demo-step {
    display: none;
}

    .voice-demo-step.active {
        display: block;
    }

.voice-demo-modal-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 16px 36px rgba(124, 58, 237, .24);
}

.voice-demo-modal-kicker {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.voice-demo-modal-title {
    margin: 0 50px 14px 0;
    color: var(--text);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.voice-demo-modal-subtitle {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

    .voice-demo-modal-subtitle strong,
    .voice-demo-modal-subtitle span {
        display: block;
    }

.voice-demo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.voice-demo-field {
    min-width: 0;
}

.voice-demo-field-wide {
    grid-column: 1 / -1;
}

.voice-demo-field label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.voice-demo-field .form-control {
    min-height: 50px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none;
}

.voice-demo-field textarea.form-control {
    min-height: 96px;
    padding-top: 13px;
    resize: vertical;
}

.voice-demo-field .form-control:focus {
    border-color: rgba(124, 58, 237, .56);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .09);
}

.voice-demo-field small {
    display: block;
    margin-top: 7px;
    color: #94a3b8;
    font-size: 12px;
}

.voice-demo-password-wrapper {
    position: relative;
}

    .voice-demo-password-wrapper .form-control {
        padding-right: 52px;
    }

.voice-demo-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #64748b;
    transform: translateY(-50%);
}

    .voice-demo-password-toggle:hover {
        background: #f8fafc;
        color: var(--primary);
    }

.voice-demo-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

    .voice-demo-consent input {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        margin-top: 2px;
        accent-color: var(--primary);
    }

.voice-demo-submit {
    width: 100%;
    border: 0;
}

    .voice-demo-submit:disabled,
    .voice-demo-resend-btn:disabled {
        opacity: .65;
        cursor: wait;
        transform: none;
    }

.voice-demo-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

    .voice-demo-result.success {
        border: 1px solid rgba(22, 163, 74, .18);
        background: rgba(22, 163, 74, .08);
        color: #15803d;
    }

    .voice-demo-result.error {
        border: 1px solid rgba(220, 38, 38, .18);
        background: rgba(220, 38, 38, .07);
        color: #b91c1c;
    }

    .voice-demo-result[hidden] {
        display: none;
    }

.voice-demo-otp-wrapper {
    margin: 8px 0 22px;
}

.voice-demo-otp-input {
    width: 100%;
    height: 76px;
    border: 1px solid var(--border);
    border-radius: 18px;
    outline: none;
    background: #f8fafc;
    color: var(--text);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .28em;
    text-align: center;
    transition: all .16s ease;
}

    .voice-demo-otp-input:focus {
        border-color: rgba(124, 58, 237, .56);
        background: #ffffff;
        box-shadow: 0 0 0 5px rgba(124, 58, 237, .09);
    }

.voice-demo-resend-btn {
    width: 100%;
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.voice-demo-ready-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.voice-demo-ready-ring {
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 0 0 14px rgba(124, 58, 237, .08), 0 24px 60px rgba(124, 58, 237, .24);
    animation: voiceDemoPulse 2s infinite;
}

#voiceDemoReadyStep {
    text-align: center;
}

    #voiceDemoReadyStep .voice-demo-modal-title {
        margin-right: 0;
    }

.voice-demo-ready-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

    .voice-demo-ready-info div {
        padding: 16px 10px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: #f8fafc;
        color: #64748b;
        font-size: 12px;
        line-height: 1.5;
    }

    .voice-demo-ready-info i {
        display: block;
        margin-bottom: 9px;
        color: var(--primary);
        font-size: 18px;
    }

@keyframes voiceDemoBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes voiceDemoModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes voiceDemoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@media (max-width: 640px) {
    .voice-demo-modal {
        padding: 12px;
    }

    .voice-demo-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 32px 20px 24px;
        border-radius: 24px;
    }

    .voice-demo-modal-title {
        margin-right: 42px;
        font-size: 29px;
    }

    .voice-demo-form-grid {
        grid-template-columns: 1fr;
    }

    .voice-demo-field-wide {
        grid-column: auto;
    }

    .voice-demo-ready-info {
        grid-template-columns: 1fr;
    }

    .voice-demo-otp-input {
        font-size: 29px;
        letter-spacing: .2em;
    }
}

/* =========================
   VOICE DEMO EXISTING ACCOUNT
========================= */

.voice-demo-result.voice-demo-existing-account {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(124, 58, 237, .18);
    border-radius: 18px;
    background: rgba(124, 58, 237, .055);
    color: var(--text);
}

.voice-demo-existing-account-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, .11);
    color: var(--primary);
    font-size: 18px;
}

.voice-demo-existing-account-content {
    flex: 1;
    min-width: 0;
}

    .voice-demo-existing-account-content strong {
        display: block;
        margin-bottom: 6px;
        color: var(--text);
        font-size: 16px;
    }

    .voice-demo-existing-account-content p {
        margin: 0 0 16px;
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
    }

.voice-demo-existing-account-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .voice-demo-existing-account-actions .btn-landing-primary {
        height: 42px;
        padding: 0 18px;
        font-size: 14px;
    }

.voice-demo-existing-account-forgot {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

    .voice-demo-existing-account-forgot:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

@media (max-width: 640px) {
    .voice-demo-result.voice-demo-existing-account {
        flex-direction: column;
    }

    .voice-demo-existing-account-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .voice-demo-existing-account-actions .btn-landing-primary {
            width: 100%;
        }

    .voice-demo-existing-account-forgot {
        text-align: center;
    }
}

/* =========================
   LANDING VOICE DEMO LIVE
========================= */

.voice-demo-live-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

    .voice-demo-live-head .voice-demo-modal-title {
        margin-right: 0;
    }

.voice-demo-live-timer {
    min-width: 92px;
    height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(124, 58, 237, .16);
    border-radius: 14px;
    background: rgba(124, 58, 237, .06);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.voice-demo-live-card {
    padding: 28px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 24px;
    background: radial-gradient( circle at top, rgba(124, 58, 237, .08), transparent 55% ), #ffffff;
    text-align: center;
}

.voice-demo-live-orb {
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    background: linear-gradient( 135deg, #e2e8f0, #cbd5e1 );
    color: #64748b;
    font-size: 30px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

    .voice-demo-live-orb:hover:not(:disabled) {
        transform: translateY(-2px);
    }

    .voice-demo-live-orb:focus-visible {
        outline: 4px solid rgba(124, 58, 237, .16);
        outline-offset: 4px;
    }

    .voice-demo-live-orb.connecting {
        background: linear-gradient( 135deg, #f59e0b, #d97706 );
        color: #ffffff;
        animation: voiceDemoOrbPulse 1.2s infinite;
    }

    .voice-demo-live-orb.connected,
    .voice-demo-live-orb.listening {
        background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
        color: #ffffff;
        box-shadow: 0 0 0 12px rgba(124, 58, 237, .07), 0 18px 45px rgba(124, 58, 237, .24);
    }

    .voice-demo-live-orb.customer-speaking {
        background: linear-gradient( 135deg, #0ea5e9, #0284c7 );
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(14, 165, 233, .09), 0 18px 45px rgba(14, 165, 233, .22);
    }

    .voice-demo-live-orb.ai-processing {
        background: linear-gradient( 135deg, #f59e0b, #d97706 );
        color: #ffffff;
        animation: voiceDemoOrbPulse 1.2s infinite;
    }

    .voice-demo-live-orb.ai-speaking {
        background: linear-gradient( 135deg, #8b5cf6, #6d28d9 );
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(124, 58, 237, .1), 0 18px 45px rgba(124, 58, 237, .28);
    }

.voice-demo-live-status {
    margin-bottom: 7px;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}

.voice-demo-live-help {
    min-height: 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.voice-demo-live-wave {
    height: 38px;
    margin: 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .voice-demo-live-wave span {
        width: 5px;
        height: 8px;
        border-radius: 999px;
        background: rgba(124, 58, 237, .3);
    }

    .voice-demo-live-wave.active span {
        background: var(--primary);
        animation: voiceDemoWave .8s ease-in-out infinite;
    }

        .voice-demo-live-wave.active span:nth-child(2) {
            animation-delay: .1s;
        }

        .voice-demo-live-wave.active span:nth-child(3) {
            animation-delay: .2s;
        }

        .voice-demo-live-wave.active span:nth-child(4) {
            animation-delay: .3s;
        }

        .voice-demo-live-wave.active span:nth-child(5) {
            animation-delay: .4s;
        }

.voice-demo-live-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .voice-demo-live-actions .btn-landing-primary {
        min-width: 210px;
    }

.voice-demo-stop-btn {
    min-width: 160px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(220, 38, 38, .2);
    border-radius: 14px;
    background: rgba(220, 38, 38, .06);
    color: #b91c1c;
    font-weight: 700;
    transition: all .16s ease;
}

    .voice-demo-stop-btn:hover:not(:disabled) {
        background: rgba(220, 38, 38, .1);
        transform: translateY(-1px);
    }

    .voice-demo-stop-btn:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

.voice-demo-transcript-panel {
    margin-top: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.voice-demo-transcript-head {
    min-height: 66px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(229, 231, 235, .8);
}

    .voice-demo-transcript-head strong,
    .voice-demo-transcript-head span {
        display: block;
    }

    .voice-demo-transcript-head strong {
        color: var(--text);
        font-size: 15px;
    }

    .voice-demo-transcript-head span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 12px;
    }

.voice-demo-transcript-clear {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

    .voice-demo-transcript-clear:hover {
        color: var(--primary);
    }

.voice-demo-transcript {
    height: 230px;
    overflow-y: auto;
    padding: 18px;
    background: #f8fafc;
}

.voice-demo-transcript-empty {
    height: 100%;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

.voice-demo-transcript-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
}

    .voice-demo-transcript-row:last-child {
        margin-bottom: 0;
    }

    .voice-demo-transcript-row.assistant {
        flex-direction: row-reverse;
    }

.voice-demo-transcript-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #e2e8f0;
    color: #475569;
    font-size: 13px;
}

.voice-demo-transcript-row.assistant
.voice-demo-transcript-avatar {
    background: rgba(124, 58, 237, .1);
    color: var(--primary);
}

.voice-demo-transcript-body {
    max-width: 78%;
    padding: 11px 13px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 6px 16px 16px 16px;
    background: #ffffff;
}

.voice-demo-transcript-row.assistant
.voice-demo-transcript-body {
    border-color: rgba(124, 58, 237, .13);
    border-radius: 16px 6px 16px 16px;
    background: rgba(124, 58, 237, .055);
}

.voice-demo-transcript-body strong {
    display: block;
    margin-bottom: 4px;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
}

.voice-demo-transcript-body p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}

.voice-demo-transcript-row.typing
.voice-demo-transcript-body p {
    color: #64748b;
    font-style: italic;
}

.voice-demo-complete-panel {
    margin-top: 20px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(22, 163, 74, .18);
    border-radius: 20px;
    background: rgba(22, 163, 74, .065);
}

    .voice-demo-complete-panel[hidden] {
        display: none;
    }

.voice-demo-complete-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(22, 163, 74, .12);
    color: #15803d;
    font-size: 19px;
}

.voice-demo-complete-panel strong {
    display: block;
    margin-bottom: 4px;
    color: #166534;
    font-size: 15px;
}

.voice-demo-complete-panel p {
    margin: 0;
    color: #4d7c5d;
    font-size: 13px;
    line-height: 1.5;
}

.voice-demo-complete-panel .btn-landing-primary {
    height: 42px;
    padding: 0 17px;
    font-size: 13px;
}

@keyframes voiceDemoOrbPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes voiceDemoWave {
    0%, 100% {
        height: 8px;
    }

    50% {
        height: 30px;
    }
}

@media (max-width: 640px) {
    .voice-demo-live-head {
        flex-direction: column;
    }

    .voice-demo-live-timer {
        align-self: flex-start;
    }

    .voice-demo-live-actions {
        flex-direction: column;
    }

        .voice-demo-live-actions .btn-landing-primary,
        .voice-demo-stop-btn {
            width: 100%;
        }

    .voice-demo-transcript {
        height: 200px;
    }

    .voice-demo-transcript-body {
        max-width: calc(100% - 45px);
    }

    .voice-demo-complete-panel {
        grid-template-columns: auto 1fr;
    }

        .voice-demo-complete-panel .btn-landing-primary {
            grid-column: 1 / -1;
            width: 100%;
        }
}