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

:root {
    --white: #ffffff;
    --bg: #f8f7f4;
    --bg-warm: #f2f0eb;
    --surface: #ffffff;
    --surface-dim: #eeedea;
    --border: #e2e0db;
    --border-strong: #d1cfc9;
    --text: #1a1917;
    --text-secondary: #5c5a54;
    --text-muted: #8a8780;
    --brand: #e8490f;
    --brand-hover: #cf3d0a;
    --brand-light: #fef1ec;
    --brand-wash: #fff7f4;
    --green: #1a8c4e;
    --green-light: #edf7f1;
    --blue: #2563eb;
    --purple: #7c3aed;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0;
    background: rgba(248,247,244,0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-brand {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    letter-spacing: -0.02em; color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.nav-mark {
    width: 30px; height: 30px; background: var(--brand); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.nav-mark svg { width: 16px; height: 16px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
    padding: 8px 14px; border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-dim); }
.nav-links a.active { color: var(--text); background: var(--surface-dim); }
.nav-links a.nav-cta,
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px; background: var(--brand); color: #ffffff !important;
    font-size: 0.875rem; font-weight: 600; border-radius: 40px;
    transition: background 0.2s, transform 0.15s;
    margin-left: 8px;
}
.nav-links a.nav-cta:hover,
.nav-cta:hover { background: var(--brand-hover); color: #ffffff !important; transform: translateY(-1px); }
.nav-toggle { display: none; width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
.hero { padding: 140px 0 100px; text-align: center; position: relative; }
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: var(--border);
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 24px;
}
.hero-eyebrow .bar { width: 24px; height: 2px; background: var(--brand); border-radius: 2px; }
.hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 1.05; letter-spacing: -0.03em;
    max-width: 780px; margin: 0 auto 24px;
}
.hero h1 em { font-style: italic; color: var(--brand); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--brand); color: var(--white);
    font-size: 0.9375rem; font-weight: 600; border-radius: 40px;
    transition: all 0.2s var(--ease);
    box-shadow: 0 2px 12px rgba(232,73,15,0.2);
}
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,73,15,0.25); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--white); color: var(--text);
    font-size: 0.9375rem; font-weight: 600; border-radius: 40px;
    border: 1px solid var(--border-strong);
    transition: all 0.2s var(--ease);
}
.btn-outline:hover { background: var(--bg-warm); transform: translateY(-2px); box-shadow: var(--shadow); }

.hero-proof {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border);
}
.proof-item { text-align: center; }
.proof-num {
    font-family: var(--font-display); font-size: 2rem; font-weight: 400;
    letter-spacing: -0.03em; line-height: 1;
}
.proof-num .unit { font-size: 0.6em; color: var(--brand); }
.proof-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ---- SECTION SHARED ---- */
.section { padding: 100px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-label {
    font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.025em; line-height: 1.1;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7;
    max-width: 520px;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-desc { margin: 0 auto; }

/* ---- AGENT CARDS ---- */
.agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.agent-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: all 0.3s var(--ease); position: relative;
}
.agent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.agent-avatar {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
    margin-bottom: 16px;
}
.agent-avatar.lilly { background: var(--brand-light); color: var(--brand); }
.agent-avatar.evan { background: #eff6ff; color: var(--blue); }
.agent-avatar.alex { background: #f5f3ff; color: var(--purple); }
.agent-avatar.jenna { background: var(--green-light); color: var(--green); }
.agent-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.agent-role { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 12px; }
.agent-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.agent-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.agent-tag {
    font-size: 0.6875rem; font-weight: 600; padding: 3px 10px;
    border-radius: 40px; background: var(--bg-warm); color: var(--text-muted);
}

/* ---- TERMINAL ---- */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.terminal {
    background: #1a1917; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.terminal-bar {
    display: flex; align-items: center; gap: 7px; padding: 14px 18px;
    background: #111; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.r { background: #ef4444; } .terminal-dot.y { background: #eab308; } .terminal-dot.g { background: #22c55e; }
.terminal-label { margin-left: 10px; font-family: var(--font-mono); font-size: 0.6875rem; color: #666; }
.terminal-body { padding: 20px; font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; }
.terminal-line { display: flex; gap: 10px; opacity: 0; animation: fadeUp 0.4s var(--ease) forwards; }
.terminal-line .time { color: #666; min-width: 64px; }
.terminal-line .event { color: #999; }
.terminal-line .hl { color: var(--brand); font-weight: 600; }
.terminal-line .ok { color: #22c55e; font-weight: 600; }
.terminal-line:nth-child(1) { animation-delay: 0.1s; }
.terminal-line:nth-child(2) { animation-delay: 0.4s; }
.terminal-line:nth-child(3) { animation-delay: 0.7s; }
.terminal-line:nth-child(4) { animation-delay: 1s; }
.terminal-line:nth-child(5) { animation-delay: 1.3s; }
.terminal-line:nth-child(6) { animation-delay: 1.6s; }
.terminal-line:nth-child(7) { animation-delay: 1.9s; }
@keyframes fadeUp { to { opacity: 1; } }

.demo-text h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em;
    margin-bottom: 16px; line-height: 1.15;
}
.demo-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.phone-box {
    display: inline-flex; flex-direction: column; gap: 4px;
    padding: 16px 24px; background: var(--bg-warm); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.phone-box .label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.phone-box .number { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 700; color: var(--brand); }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: all 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--brand-light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--brand); stroke: var(--brand); }
.feature-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- COMPARISON TABLE ---- */
.compare-table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
    padding: 14px 20px; text-align: left; font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}
.compare-table thead th {
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--text-muted);
    background: var(--bg-warm);
}
.compare-table thead th:nth-child(2) { color: var(--brand); }
.compare-table td:first-child { font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--text-muted); }
.partial { color: #ca8a04; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--brand); color: var(--brand); }
.testimonial-text {
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 0.875rem; }
.testimonial-company { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- PRICING ---- */
.pricing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 48px;
}
.pricing-toggle span { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.pricing-toggle span.active { color: var(--text); font-weight: 700; }
.toggle-track {
    width: 44px; height: 24px; border-radius: 40px;
    background: var(--brand); position: relative; cursor: pointer;
}
.toggle-thumb {
    width: 18px; height: 18px; border-radius: 50%; background: var(--white);
    position: absolute; top: 3px; left: 3px; transition: transform 0.25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.toggle-track.annual .toggle-thumb { transform: translateX(20px); }
.pricing-save {
    font-size: 0.6875rem; font-weight: 700; color: var(--green);
    background: var(--green-light); padding: 3px 10px; border-radius: 40px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.pricing-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 28px; position: relative;
}
.pricing-card.featured { border-color: var(--brand); border-width: 2px; }
.pricing-card.featured::before {
    content: 'Most Popular'; position: absolute; top: -11px; left: 28px;
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.03em;
    padding: 3px 12px; background: var(--brand); color: var(--white); border-radius: 40px;
}
.pricing-name { font-weight: 700; font-size: 1.0625rem; margin-bottom: 4px; }
.pricing-desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-amount {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 400;
    letter-spacing: -0.03em; margin-bottom: 4px;
}
.pricing-amount .per { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.pricing-billing { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    font-size: 0.875rem; color: var(--text-secondary); padding: 7px 0;
    display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before {
    content: ''; width: 18px; height: 18px; min-width: 18px;
    border-radius: 50%; background: var(--green-light); margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a8c4e' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}
.pricing-btn {
    display: block; width: 100%; text-align: center;
    padding: 13px; font-size: 0.9375rem; font-weight: 600; border-radius: 40px;
    transition: all 0.2s;
}
.pricing-btn.primary { background: var(--brand); color: var(--white); }
.pricing-btn.primary:hover { background: var(--brand-hover); }
.pricing-btn.outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.pricing-btn.outline:hover { background: var(--bg-warm); }

/* ---- INTEGRATIONS ---- */
.integrations-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    max-width: 700px; margin: 0 auto;
}
.int-pill {
    padding: 10px 18px; background: var(--white); border: 1px solid var(--border);
    border-radius: 40px; font-size: 0.875rem; font-weight: 500;
    color: var(--text-secondary); transition: all 0.2s;
}
.int-pill:hover { border-color: var(--brand); color: var(--text); }
.int-more { text-align: center; margin-top: 28px; font-size: 0.875rem; color: var(--text-muted); }

/* ---- CTA ---- */
.cta-band {
    padding: 80px 0; text-align: center;
    background: var(--white); border-top: 1px solid var(--border);
}
.cta-band h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em; margin-bottom: 12px;
}
.cta-band p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 32px; }
.cta-fine { margin-top: 16px; font-size: 0.8125rem; color: var(--text-muted); }

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 140px 0 72px; text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.025em; line-height: 1.1;
    margin-bottom: 12px;
}
.page-hero p { font-size: 1.0625rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ---- OFFICE MANAGER BEFORE/AFTER ---- */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
}
.ba-card.after { border-color: var(--green); background: #fcfdf9; }
.ba-card h3 { font-weight: 700; font-size: 0.9375rem; margin-bottom: 16px; }
.ba-card.before h3 { color: var(--text-muted); }
.ba-card.after h3 { color: var(--green); }
.ba-list { list-style: none; }
.ba-list li {
    padding: 6px 0; font-size: 0.875rem; color: var(--text-secondary);
    display: flex; align-items: flex-start; gap: 8px;
}
.ba-list li .icon { font-weight: 700; min-width: 16px; }
.ba-card.before .icon { color: var(--text-muted); }
.ba-card.after .icon { color: var(--green); }

/* ---- FAQ ---- */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-weight: 600; font-size: 0.9375rem;
    cursor: pointer; color: var(--text); transition: color 0.2s;
    width: 100%; text-align: left;
}
.faq-q:hover { color: var(--brand); }
.faq-q .plus {
    font-size: 1.25rem; color: var(--text-muted); transition: transform 0.3s;
    line-height: 1;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 0 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

/* ---- FOOTER ---- */
.footer { padding: 56px 0 28px; border-top: 1px solid var(--border); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 1.375rem; font-weight: 400; margin-bottom: 10px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 0.875rem; color: var(--text-secondary); padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid var(--border);
    font-size: 0.75rem; color: var(--text-muted);
}

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: 1.75rem; letter-spacing: -0.02em; margin-bottom: 16px;
}
.contact-info p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-detail .cd-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--brand-light); display: flex; align-items: center; justify-content: center;
}
.contact-detail .cd-icon svg { width: 18px; height: 18px; stroke: var(--brand); }
.contact-detail .cd-text { font-size: 0.875rem; color: var(--text-secondary); }
.contact-detail .cd-text strong { color: var(--text); display: block; }
.contact-form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.8125rem; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; font-size: 0.9375rem;
    font-family: var(--font-body); border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: var(--bg);
    color: var(--text); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--brand);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
    width: 100%; padding: 14px; background: var(--brand); color: var(--white);
    font-size: 0.9375rem; font-weight: 600; border-radius: 40px;
    border: none; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--brand-hover); }

/* ---- BOOKING LAYOUT ---- */
.booking-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.booking-embed iframe { width: 100%; min-height: 660px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sidebar-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px;
}
.sidebar-card h3 { font-weight: 700; font-size: 0.9375rem; margin-bottom: 14px; }
.sidebar-list { list-style: none; }
.sidebar-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 8px 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55;
}
.sidebar-list li strong { color: var(--text); }
.sl-num {
    width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
    background: var(--brand-light); color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
    margin-top: 2px;
}
.sidebar-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.sidebar-trust { background: var(--brand-wash); border-color: var(--brand-light); }
.trust-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.trust-stars { display: flex; gap: 2px; }
.trust-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
/* Hero staggered entrance */
.hero-eyebrow { opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.1s both; }
.hero h1 { opacity: 0; animation: fadeInUp 0.9s var(--ease) 0.2s both; }
.hero-sub { opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.4s both; }
.hero-actions { opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.55s both; }
.hero-proof { opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.75s both; }
.hero-proof .proof-item { opacity: 0; animation: fadeInScale 0.6s var(--ease) both; }
.hero-proof .proof-item:nth-child(1) { animation-delay: 0.85s; }
.hero-proof .proof-item:nth-child(3) { animation-delay: 0.95s; }
.hero-proof .proof-item:nth-child(5) { animation-delay: 1.05s; }
.hero-proof .proof-item:nth-child(7) { animation-delay: 1.15s; }

/* Page hero staggered entrance */
.page-hero .section-label { opacity: 0; animation: fadeInUp 0.6s var(--ease) 0.05s both; }
.page-hero h1 { opacity: 0; animation: fadeInUp 0.7s var(--ease) 0.15s both; }
.page-hero p { opacity: 0; animation: fadeInUp 0.7s var(--ease) 0.3s both; }

/* Nav entrance */
.nav { opacity: 0; animation: fadeInUp 0.5s var(--ease) 0s both; transform-origin: top; }

/* Section headers animate in */
.section-header-center .section-label,
.section-header .section-label { opacity: 0; }
.section-header-center .section-title,
.section-header .section-title { opacity: 0; }
.section-header-center .section-desc,
.section-header .section-desc { opacity: 0; }
.section-header-center.visible .section-label,
.section-header.visible .section-label { animation: fadeInUp 0.6s var(--ease) both; }
.section-header-center.visible .section-title,
.section-header.visible .section-title { animation: fadeInUp 0.6s var(--ease) 0.1s both; }
.section-header-center.visible .section-desc,
.section-header.visible .section-desc { animation: fadeInUp 0.6s var(--ease) 0.2s both; }

/* Card hover micro-animations */
.agent-card { transition: all 0.35s var(--ease); }
.agent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.agent-card:hover .agent-avatar { animation: float 2s ease-in-out infinite; }
.feature-card { transition: all 0.35s var(--ease); }
.feature-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon { transition: transform 0.3s var(--ease); }
.testimonial-card { transition: all 0.3s var(--ease); }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.int-pill { transition: all 0.25s var(--ease); }
.int-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Button shimmer on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
}
.btn-primary:hover::after { animation: shimmer 0.6s ease forwards; }
@keyframes shimmer { to { transform: translateX(100%); } }

/* Nav link underline */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
    height: 2px; background: var(--brand); border-radius: 2px;
    transform: scaleX(0); transition: transform 0.25s var(--ease);
    transform-origin: center;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .before-after { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .booking-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .container, .container-narrow { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav.open .nav-links {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        padding: 20px 24px; gap: 8px;
    }
    .nav.open .nav-links .nav-cta { width: 100%; justify-content: center; }
    .hero { padding: 120px 0 64px; }
    .hero-proof { flex-wrap: wrap; gap: 16px; }
    .proof-divider { display: none; }
    .section { padding: 72px 0; }
    .agents-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.8125rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-embed iframe { min-height: 560px; }
}
