:root {
    --primary: #FF6B35;
    --primary-dark: #E85A25;
    --primary-light: #FF8F66;
    --text-dark: #1A1A2E;
    --text-body: #3D3D56;
    --text-muted: #6B6B80;
    --bg-warm: #F8F6F3;
    --bg-white: #FFFFFF;
    --bg-section: #FFF8F5;
    --border-light: #E8E4E0;
    --success: #16A34A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== BUTTONS (page-specific; nav buttons come from nav.css) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.063rem;
    border-radius: 0.625rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-body);
    padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-white) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-note {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.813rem;
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* ===== PAIN POINT ===== */
.pain-point {
    padding: 5rem 0;
    background: var(--text-dark);
    color: #fff;
}

.pain-point .container {
    text-align: center;
}

.pain-point h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.pain-point > .container > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.063rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pain-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pain-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.pain-step .icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.pain-step h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pain-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.pain-arrow {
    display: none;
    align-self: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.pain-solution {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.pain-solution p {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.063rem;
    max-width: 550px;
    margin: 0 auto;
}

.demo-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demo-cat-tab {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.813rem;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s;
}

.demo-cat-tab.active,
.demo-cat-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.demo-layout {
    display: flex;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

.demo-list {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 420px;
    overflow-y: auto;
}

.demo-list::-webkit-scrollbar {
    width: 4px;
}

.demo-list::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

.demo-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.2s;
}

.demo-list-item:hover {
    border-color: var(--primary-light);
    background: rgba(255, 107, 53, 0.03);
}

.demo-list-item.active {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.06);
    box-shadow: 0 1px 4px rgba(255, 107, 53, 0.1);
}

.demo-list-item .demo-item-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.688rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.demo-list-item.active .demo-item-num {
    background: var(--primary);
    color: #fff;
}

.demo-list-item .demo-item-info {
    flex: 1;
    min-width: 0;
}

.demo-list-item .demo-item-title {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-list-item .demo-item-pain {
    font-size: 0.688rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.demo-lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.demo-lang-badge.lang-en { background: #E8F4FD; color: #1565C0; }
.demo-lang-badge.lang-es { background: #FFF3E0; color: #E65100; }
.demo-lang-badge.lang-fr { background: #EDE7F6; color: #4527A0; }
.demo-lang-badge.lang-zh { background: #FCE4EC; color: #C62828; }
.demo-lang-badge.lang-ko { background: #E0F2F1; color: #00695C; }
.demo-lang-badge.lang-ja { background: #FFF8E1; color: #F57F17; }
.demo-lang-badge.lang-vi { background: #F1F8E9; color: #33691E; }

@media (max-width: 768px) {
    .demo-layout {
        flex-direction: column;
        overflow: hidden;
    }
    .demo-list {
        flex: none;
        width: 100%;
        min-width: 0;
        max-height: 200px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .demo-list-item {
        flex-shrink: 0;
        min-width: 200px;
    }
    .demo-list-item .demo-item-pain {
        display: none;
    }
}

.demo-player {
    flex: 1;
    min-width: 0;
    background: var(--bg-white);
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.demo-player-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-player-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-player-dot svg {
    color: #fff;
}

.demo-player-info h4 {
    font-size: 0.938rem;
    font-weight: 600;
}

.demo-player-info p {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.demo-player-body {
    padding: 1.5rem;
}

.demo-waveform {
    height: 60px;
    background: var(--bg-warm);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    overflow: hidden;
}

.wave-bar {
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.4;
    transition: height 0.2s;
}

.demo-waveform.playing .wave-bar {
    animation: waveAnim 0.6s ease-in-out infinite alternate;
}

@keyframes waveAnim {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

.demo-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.demo-play-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.demo-play-btn svg {
    color: #fff;
}

.demo-progress {
    flex: 1;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.demo-transcript {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: var(--text-dark);
    border-radius: 8px;
}

.demo-transcript-line {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #c4c4d4;
    text-align: center;
    margin: 0;
    transition: opacity 0.3s;
}

.demo-transcript-line .caption-speaker {
    font-weight: 600;
    color: var(--primary);
}

.demo-transcript-line .caption-speaker.caller {
    color: var(--primary-light);
}

.demo-transcript-line .caption-speaker.narrator {
    color: #8b8ba0;
    font-style: italic;
}

.demo-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 3rem;
    text-align: right;
}

/* ===== FEATURES ===== */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-icon.phone { background: rgba(255, 107, 53, 0.1); }
.feature-icon.globe { background: rgba(59, 130, 246, 0.1); }
.feature-icon.calendar { background: rgba(16, 163, 74, 0.1); }
.feature-icon.dollar { background: rgba(168, 85, 247, 0.1); }
.feature-icon.owner { background: rgba(234, 88, 12, 0.1); }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.938rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.social-proof {
    padding: 5rem 0;
    background: var(--bg-white);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.social-proof-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    text-align: center;
}

.social-proof-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.social-proof-stat {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.social-proof-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.social-proof-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing {
    padding: 5rem 0;
    background: var(--bg-section);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-features {
    flex: 1;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .price-note {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn,
.pricing-card button {
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
}

.pricing-card.current {
    border-color: var(--success, #16A34A);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.pricing-card .pricing-current-tag {
    color: var(--success, #16A34A);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.pricing-enterprise {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px dashed var(--border-light);
    border-radius: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-enterprise p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pricing-enterprise a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pricing-enterprise a:hover {
    text-decoration: underline;
}

/* ===== PRICING TOOLTIPS ===== */
.tooltip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-warm, #F8F6F3);
    color: var(--text-muted, #6B6B80);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 4px;
    border: 1px solid #E5E2DE;
    position: relative;
    transition: background 0.2s, color 0.2s;
}
.tooltip-trigger:hover {
    background: #FF6B35;
    color: #fff;
    border-color: #FF6B35;
}
.tooltip-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #F8F6F3;
    color: #3A3A4A;
    font-size: 0.813rem;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    width: 240px;
    z-index: 100;
    font-weight: 400;
}
.tooltip-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #F8F6F3;
}
.tooltip-trigger:hover .tooltip-popup,
.tooltip-trigger.active .tooltip-popup {
    display: block;
}
.tooltip-popup .demo-link {
    display: inline-block;
    margin-top: 0.375rem;
    color: #FF6B35;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.813rem;
}
.tooltip-popup .demo-link:hover {
    text-decoration: underline;
}

/* ===== FAQ ===== */
.faq {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.938rem;
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 5rem 0;
    background: var(--text-dark);
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.063rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.final-cta .btn-primary {
    font-size: 1.063rem;
    padding: 1rem 2.5rem;
}

.final-cta .hero-note {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer styles in /css/nav.css */

/* ===== LIVE DEMO CTA ===== */
.live-demo-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.live-demo-cta h2 {
    color: #fff;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.demo-cta-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.demo-cta-phone {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.phone-icon-circle {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.phone-ring-outer,
.phone-ring-inner {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: phone-ring 2.4s ease-out infinite;
}

.phone-ring-inner {
    inset: -6px;
    animation-delay: 0.4s;
}

@keyframes phone-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.demo-cta-businesses {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.demo-biz-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.938rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.demo-biz-chip:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.demo-biz-chip span {
    font-size: 1.2rem;
}

.demo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.4);
}

.demo-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.demo-cta-proof {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 1.25rem;
}

/* ===== HERO MINI-PLAYER ===== */
.hero-mini-player {
    max-width: 420px;
    margin: 1.5rem auto 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s;
}

.hero-mini-player:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.12);
}

.hero-mini-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.hero-mini-play:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.hero-mini-play svg {
    color: #fff;
}

.hero-mini-info {
    flex: 1;
    min-width: 0;
}

.hero-mini-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.813rem;
    color: var(--text-dark);
}

.hero-mini-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-mini-progress {
    width: 100%;
    height: 3px;
    background: var(--border-light);
    border-radius: 2px;
    margin-top: 0.375rem;
    overflow: hidden;
}

.hero-mini-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.hero-mini-time {
    font-size: 0.688rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* ===== POST-CALL OUTCOMES ===== */
.post-call-outcomes {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.outcome-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.outcome-card-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-section);
}

.outcome-card-header .outcome-icon {
    font-size: 1rem;
}

.outcome-card-header h4 {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-dark);
}

.outcome-card-header .outcome-badge {
    margin-left: auto;
    font-size: 0.688rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 2rem;
}

.outcome-badge.confirmed {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.outcome-badge.sent {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
}

.outcome-badge.live {
    background: rgba(168, 85, 247, 0.1);
    color: #7C3AED;
}

.outcome-card-body {
    padding: 1rem;
}

.outcome-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.813rem;
}

.outcome-detail .label {
    color: var(--text-muted);
}

.outcome-detail .value {
    color: var(--text-dark);
    font-weight: 500;
}

.outcome-tagline {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.938rem;
}

.outcome-tagline strong {
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .pain-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }

    .pain-arrow {
        display: flex;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 900px) {
    .social-proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-header h2,
    .pain-point h2,
    .final-cta h2 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero h1 {
        font-size: 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
