/* ╔═══════════════════════════════════════════════════════════════╗
   ║  ExpertZero.ai — style.css  (GENERATED — do not edit)         ║
   ║  Source partials live in public/styles/.                      ║
   ║  Rebuild with:  python3 scripts/build_css.py                  ║
   ╚═══════════════════════════════════════════════════════════════╝ */

/* ─── 01-tokens.css ─────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────
   ExpertZero.ai — Professional / enterprise
   Inter throughout, restrained teal accent, minimal glow.
   ───────────────────────────────────────────────────────── */

:root {
    /* Canvas */
    --bg-color:          #09090b;
    --bg-alt:            #0f0f11;
    --surface-color:     #111113;
    --surface-alt:       #18181b;
    --surface-raised:    #1f1f23;
    --surface-sunken:    #0c0c0e;

    /* Typography */
    --text-main:         #e4e4e7;
    --text-secondary:    #a1a1aa;
    --text-tertiary:     #71717a;
    --text-muted:        #52525b;

    /* Accent — single restrained teal (no orange, no cyan rainbow) */
    --primary-accent:    #0d9488;
    --primary-accent-2:  #0f766e;
    --secondary-accent:  #14b8a6;
    --accent-subtle:     rgba(13, 148, 136, 0.12);
    --warm-accent:       #a1a1aa;
    --warm-accent-2:     #d4d4d8;
    --gold-accent:       #a1a1aa;

    /* Flat accent — no loud gradients on UI chrome */
    --gradient-main:     #0d9488;
    --gradient-warm:     #71717a;
    --gradient-hero:     radial-gradient(ellipse 70% 50% at 50% -15%, rgba(13, 148, 136, 0.08) 0%, transparent 60%);

    /* Glass & borders */
    --border:            rgba(255, 255, 255, 0.06);
    --border-strong:     rgba(255, 255, 255, 0.1);
    --border-accent:     rgba(13, 148, 136, 0.28);
    --glass-bg:          rgba(9, 9, 11, 0.88);
    --glass-border:      rgba(255, 255, 255, 0.06);

    /* Shadows — depth only, no neon glow */
    --shadow-sm:         0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md:         0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg:         0 12px 48px rgba(0, 0, 0, 0.45);
    --shadow-xl:         0 20px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow:       0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-glow-lg:    0 8px 32px rgba(0, 0, 0, 0.4);

    /* In-product mock chrome */
    --mock-bg:           #141416;
    --mock-header:       #1a1a1e;
    --mock-panel:        #111113;
    --mock-input:        #0c0c0e;
    --mock-border:       rgba(255, 255, 255, 0.07);

    --radius:            8px;
    --radius-lg:         12px;
    --radius-xl:         16px;
    --radius-pill:       8px;

    --nav-height:        72px;
    --font-sans:         'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:      var(--font-sans);
}

/* ─── 02-base.css ───────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    background-color: var(--bg-color);
    background-image: var(--gradient-hero);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 9997;
}

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

/* Page titles — solid type, no gradient clip */
.gradient-text,
.page-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-main);
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: unset;
}

/* Shared heading scale */
h1, h2, h3,
.section-header h1,
.feature-content h2,
.cta-band-title,
.modal-header h2 {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text-main);
}

.text-emphasis {
    color: var(--text-main);
    font-weight: 600;
}

/* ─── 03-buttons.css ────────────────────────────────────────────── */
/* ─────────── Buttons ─────────── */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid var(--border-strong);
    background: var(--surface-alt);
    color: var(--text-main);
    letter-spacing: 0;
    box-shadow: none;
}

.btn:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--surface-raised);
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-accent);
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(13, 148, 136, 0.5);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-accent-2);
    border-color: rgba(13, 148, 136, 0.6);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: none;
}

.btn-primary:active {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-strong);
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--surface-alt);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transform: none;
}

.btn-secondary:active {
    transform: none;
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* ─── 04-nav.css ────────────────────────────────────────────────── */
/* ─────────── Site Nav ─────────── */
body > nav {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

body > nav .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    text-decoration: none;
    color: var(--text-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.nav-cta {
    padding: 0.55rem 1.35rem;
    font-size: 0.88rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text-main);
    outline: none;
}

.nav-link.is-active {
    color: var(--text-main);
    font-weight: 500;
}

body > nav .logo.is-active {
    box-shadow: none;
}

.dropdown-content a.is-active {
    color: var(--primary-accent);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--surface-alt);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 12rem;
    max-width: min(12rem, 85vw);
    height: 16px;
    z-index: 999;
}

.dropbtn {
    background-color: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn,
.dropbtn:hover {
    color: var(--text-main);
}

.dropdown-content {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(6px);
    min-width: 11rem;
    padding: 0.4rem 0;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-content::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent var(--surface-raised) transparent;
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    outline: none;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ─── 05-hero.css ───────────────────────────────────────────────── */
/* ─────────── Hero ─────────── */
.hero {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 56px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 90%);
    height: 400px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero::after {
    display: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14em;
    color: var(--text-tertiary);
    text-transform: uppercase;
    margin: 0 auto 1.5rem;
    padding: 0.35rem 0.75rem;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
}

.hero-kicker::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-accent);
    box-shadow: none;
    flex-shrink: 0;
}

.hero h1,
.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.25rem, 4.8vw, 3.25rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
    color: var(--text-main);
}

.hero-title-line {
    display: block;
}

.hero-title-muted {
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title-sub {
    display: block;
    font-size: 0.45em;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 0.5em;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.hero-actions .btn-primary {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
}

.hero p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-tagline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    max-width: 640px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero .hero-actions .hero-actions-note {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-tertiary);
    margin: 0;
    max-width: 26rem;
}

.hero-highlight,
.text-emphasis {
    color: var(--text-main);
    font-weight: 600;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
}

.hero-cta-primary {
    border: 1px solid rgba(13, 148, 136, 0.45);
    cursor: pointer;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    background: var(--primary-accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.hero-cta-primary:hover {
    background: var(--primary-accent-2);
    box-shadow: var(--shadow-md);
    transform: none;
}

.hero-cta-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    box-shadow: none;
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--surface-alt);
    color: var(--text-main);
    box-shadow: none;
}

.hero-capabilities {
    list-style: none;
    margin: 2rem auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    max-width: 46rem;
}

.hero-capability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0;
}

.hero-capability::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
    box-shadow: none;
    flex-shrink: 0;
}

/* ─── 06-home-sections.css ──────────────────────────────────────── */
/* Social proof strip */
.home-social-strip {
    padding: 3rem 0 2.75rem;
    border-bottom: 1px solid var(--border);
}

/* How it works (home) */
.features .home-how-section {
    margin: 0.5rem 0 3rem;
    padding: 3rem 0 2.75rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-how-it-works {
    max-width: 42rem;
}

.home-trust-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text-main);
}

.home-how-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    max-width: 38rem;
}

.how-it-works-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.how-it-works-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.how-it-works-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-accent);
    color: var(--primary-accent);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-step-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--text-main);
}

.how-it-works-step p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.62;
    color: var(--text-secondary);
}

.logo-strip-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin: 0 0 0.9rem;
}

.logo-strip-chips {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo-strip-chips li {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-color);
    color: var(--text-secondary);
}

.home-testimonial {
    margin: 0;
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-color);
    box-shadow: var(--shadow-sm);
}

.home-testimonial blockquote {
    margin: 0 0 0.75rem;
    padding: 0;
}

.home-testimonial blockquote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-main);
    font-style: italic;
}

.home-testimonial figcaption {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ─────────── Trust / stat row (new, trendy) ─────────── */
.home-stat-row {
    margin: 2.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--border-strong);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.home-stat {
    padding: 0;
}

.home-stat-num {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.home-stat-num em {
    font-style: normal;
    color: var(--text-secondary);
    font-weight: 500;
}

.home-stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    max-width: 18rem;
}

/* ─────────── Mid-page CTA ─────────── */
.cta-band {
    text-align: center;
    padding: 3.5rem 2rem;
    margin: 2rem auto;
    max-width: 1100px;
    border-radius: var(--radius-lg);
    background: var(--surface-color);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-band-title {
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    color: var(--text-main);
    line-height: 1.15;
}

.cta-band-lead {
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

/* ─── 07-features.css ───────────────────────────────────────────── */
/* ─────────── Features grid ─────────── */
.features {
    padding: 80px 0 48px;
}

.features > .feature-row:first-child {
    margin-bottom: 2.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-row:last-child {
    margin-bottom: 2rem;
}

.feature-row.reversed {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.feature-eyebrow::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--text-muted);
}

.feature-visual {
    flex: 1;
    background: linear-gradient(160deg, var(--surface-alt) 0%, var(--surface-color) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.feature-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 1.75rem;
    max-width: 34rem;
}

/* ─── 08-mocks.css ──────────────────────────────────────────────── */
/* Dynamic form demo: chatbot app window */
.dynamic-form-demo {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Execution feature — flexible height so the mock is not clipped */
.feature-visual.dynamic-form-demo:not(.guidance-feature-visual):not(.onboarding-feature-visual) {
    aspect-ratio: auto;
    min-height: clamp(280px, 36vw, 380px);
    align-items: center;
}

.guidance-feature-visual.feature-visual {
    aspect-ratio: auto;
    min-height: clamp(280px, 42vw, 420px);
    align-items: stretch;
}

.guidance-feature-visual::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 120%;
    background: radial-gradient(ellipse 80% 70% at 65% 45%,
                rgba(16, 185, 129, 0.2) 0%,
                rgba(34, 211, 238, 0.08) 35%,
                transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.guidance-feature-visual .dynamic-form-demo {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    align-self: stretch;
    padding: clamp(1rem, 2.5vw, 1.75rem);
}

.guidance-feature-visual .chatbot-window {
    max-width: 100%;
    width: 100%;
}

.guidance-feature-visual .guidance-app-mockup {
    font-size: clamp(0.7rem, 1.15vw, 0.88rem);
    min-height: clamp(168px, 24vw, 240px);
}

.guidance-feature-visual .guidance-app-frame {
    min-height: clamp(168px, 24vw, 240px);
}

.guidance-feature-visual .guidance-sidebar {
    width: clamp(92px, 13vw, 132px);
}

.guidance-feature-visual .guidance-workflow-card.chat-form-reply {
    max-width: min(260px, 52%);
    padding: clamp(0.55rem, 1.2vw, 0.75rem) clamp(0.65rem, 1.4vw, 0.85rem);
}

.guidance-feature-visual .chatbot-window-body.guidance-demo-body {
    min-height: clamp(188px, 26vw, 260px);
}

.guidance-feature-visual .chatbot-window-header {
    padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.75rem, 1.5vw, 1rem);
}

.guidance-feature-visual .chatbot-window-title {
    font-size: clamp(0.72rem, 1.1vw, 0.85rem);
}

/* Proactive guidance mock: light-mode app chrome */
.guidance-app-mockup {
    position: relative;
    width: 100%;
    font-size: 0.65rem;
    line-height: 1.35;
    min-height: 142px;
}

.guidance-app-frame {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--mock-panel);
    min-height: 140px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.guidance-sidebar {
    width: 72px;
    flex-shrink: 0;
    background: var(--mock-header);
    border-right: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.5rem 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.guidance-sidebar-brand {
    font-weight: 700;
    font-size: 0.55rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.guidance-nav-item {
    padding: 0.25rem 0.4rem;
    border-radius: 5px;
    color: var(--text-secondary);
}

.guidance-nav-highlight {
    outline: 1px solid var(--border-accent);
    outline-offset: 1px;
    background: rgba(194, 65, 12, 0.08);
    font-weight: 600;
}

.guidance-main {
    flex: 1;
    padding: 0.6rem 0.7rem;
    color: var(--text-secondary);
    background: var(--mock-panel);
}

.guidance-main-title {
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.guidance-main-data {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.15rem;
}

.guidance-data-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.guidance-data-bar {
    flex: 1;
    min-width: 0;
    height: 0.45rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.guidance-data-bar--sm {
    flex: 0 0 18%;
    max-width: 2.5rem;
}

.guidance-data-bar--xs {
    flex: 0 0 12%;
    max-width: 1.75rem;
}

.guidance-data-bar--wide {
    flex: 1.35;
}

.guidance-data-bar--narrow {
    flex: 0.65;
}

.guidance-workflow-card.chat-form-reply {
    position: absolute;
    right: 0.35rem;
    bottom: 0.35rem;
    max-width: 188px;
    width: auto;
    padding: 0.55rem 0.65rem 0.6rem;
    gap: 0.4rem;
    border-radius: 14px;
    border-top-right-radius: 4px;
}

.guidance-workflow-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding-bottom: 0.4rem;
    margin-bottom: 0.05rem;
    border-bottom: 1px solid var(--border);
}

.guidance-workflow-card-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
    min-width: 0;
}

.guidance-workflow-card-actions {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}

.guidance-workflow-iconbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: default;
    transition: background 0.15s ease, color 0.15s ease;
}

.guidance-workflow-iconbtn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.guidance-workflow-iconbtn svg {
    width: 12px;
    height: 12px;
}

.guidance-audio-wave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 26px;
    padding: 0.2rem 0 0.1rem;
}

.guidance-wave-bar {
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    transform-origin: bottom center;
    animation: guidance-wave-pulse 0.9s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(4, 120, 87, 0.3);
}

.guidance-wave-bar:nth-child(1) { height: 35%; animation-delay: 0s; }
.guidance-wave-bar:nth-child(2) { height: 65%; animation-delay: 0.08s; }
.guidance-wave-bar:nth-child(3) { height: 45%; animation-delay: 0.16s; }
.guidance-wave-bar:nth-child(4) { height: 100%; animation-delay: 0.24s; }
.guidance-wave-bar:nth-child(5) { height: 55%; animation-delay: 0.32s; }
.guidance-wave-bar:nth-child(6) { height: 80%; animation-delay: 0.4s; }
.guidance-wave-bar:nth-child(7) { height: 40%; animation-delay: 0.48s; }
.guidance-wave-bar:nth-child(8) { height: 70%; animation-delay: 0.56s; }

@keyframes guidance-wave-pulse {
    0%, 100% {
        transform: scaleY(0.45);
        opacity: 0.75;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.guidance-workflow-copy {
    margin: 0;
    font-size: 0.62rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.guidance-workflow-copy strong {
    color: var(--text-main);
    font-weight: 600;
}

.guidance-workflow-btn.chat-create-btn {
    margin-top: 0;
    padding: 0.42rem 0.5rem;
    font-size: 0.62rem;
    border-radius: 8px;
}

/* Chatbot window — clean light "macOS Safari" look */
.chatbot-window {
    width: 100%;
    max-width: 300px;
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(16, 185, 129, 0.08);
}

.chatbot-window-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    background: var(--mock-header);
    border-bottom: 1px solid var(--mock-border);
}

.chatbot-window-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: auto;
}

.chatbot-window-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.chatbot-window-dot:nth-of-type(1) { background: #f59e0b; }
.chatbot-window-dot:nth-of-type(2) { background: #10b981; }
.chatbot-window-dot:nth-of-type(3) { background: #ef4444; }

.chatbot-window-body {
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 140px;
    background: var(--mock-panel);
}

.chatbot-window-body.guidance-demo-body {
    padding: 0.65rem;
    min-height: 160px;
    background: var(--mock-bg);
}

/* Onboarding mock */
.onboarding-feature-visual.feature-visual {
    aspect-ratio: auto;
    min-height: clamp(280px, 42vw, 420px);
    align-items: stretch;
}

.onboarding-feature-visual::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 120%;
    background: radial-gradient(ellipse 78% 72% at 38% 48%,
                rgba(16, 185, 129, 0.18) 0%,
                rgba(251, 146, 60, 0.06) 45%,
                transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.onboarding-feature-visual .onboarding-demo-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    max-width: none;
    padding: clamp(1rem, 2.5vw, 1.75rem);
}

.onboarding-window.chatbot-window {
    width: 100%;
    max-width: min(380px, 94%);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.onboarding-feature-visual .chatbot-window-header {
    padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.75rem, 1.5vw, 1rem);
}

.onboarding-feature-visual .chatbot-window-title {
    font-size: clamp(0.72rem, 1.1vw, 0.85rem);
}

.onboarding-chat-body {
    padding: clamp(0.85rem, 1.5vw, 1rem) clamp(0.95rem, 1.6vw, 1.1rem) clamp(1rem, 1.8vw, 1.2rem);
    gap: 0.85rem;
    min-height: clamp(168px, 22vw, 220px);
}

.onboarding-welcome {
    font-size: clamp(0.76rem, 1.05vw, 0.82rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.onboarding-welcome strong {
    color: var(--text-main);
    font-weight: 600;
}

.onboarding-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.onboarding-step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(0.72rem, 1vw, 0.78rem);
    line-height: 1.35;
    color: var(--text-secondary);
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.onboarding-step--done {
    color: var(--text-main);
}

.onboarding-step--current {
    color: var(--text-main);
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.onboarding-step-icon {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
}

.onboarding-step--done .onboarding-step-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-accent);
}

.onboarding-step--current .onboarding-step-icon {
    background: var(--primary-accent);
    color: #fff;
}

.onboarding-cta-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.15rem;
}

.onboarding-mini-btn {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.95rem;
    border-radius: 10px;
    background: var(--primary-accent);
    color: #fff;
    border: 1px solid rgba(13, 148, 136, 0.4);
    box-shadow: none;
}

.chat-row {
    display: flex;
    width: 100%;
}

.chat-row-user {
    justify-content: flex-start;
}

.chat-row-bot {
    justify-content: flex-end;
}

.chat-bubble {
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.35;
    max-width: 88%;
}

.chat-bubble-question {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-top-left-radius: 4px;
}

.chat-form-reply {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.85rem;
    background: var(--surface-raised);
    border: 1px solid var(--border-accent);
    border-radius: 14px;
    border-top-right-radius: 4px;
    max-width: min(260px, 100%);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    box-shadow: var(--shadow-glow);
}

.chat-create-btn {
    margin-top: 0.25rem;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--primary-accent);
    border: 1px solid rgba(13, 148, 136, 0.4);
    border-radius: 10px;
    cursor: default;
    width: 100%;
    box-shadow: var(--shadow-glow);
}

.chat-create-btn:disabled {
    cursor: default;
    opacity: 1;
}

.dynamic-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    transform: translateY(8px);
    animation: dynamic-field-in 0.4s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes dynamic-field-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dynamic-field .field-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.dynamic-field input,
.dynamic-field select {
    width: 100%;
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem;
    font-family: inherit;
    color: var(--text-main);
    background: var(--mock-input);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    outline: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 1.75rem;
}

.dynamic-field input {
    background-image: none;
    padding-right: 0.65rem;
}

.dynamic-field input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.9;
}

/* ─── 09-animations.css ─────────────────────────────────────────── */
/* Animations */
.pulse-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-main);
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(4, 120, 87, 0.55);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 22px rgba(4, 120, 87, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(4, 120, 87, 0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ─── 10-footer.css ─────────────────────────────────────────────── */
/* ─────────── Footer ─────────── */
.site-footer {
    padding: 3.5rem 0 0;
    border-top: 1px solid var(--border-strong);
    color: var(--text-secondary);
    text-align: left;
    background: var(--bg-alt);
}

.site-footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
    .site-footer-grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 2rem;
    }
}

.site-footer-logo {
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-main);
    display: inline-block;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.site-footer-tagline {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 22rem;
    color: var(--text-secondary);
}

.site-footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin: 0 0 1rem;
}

.site-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer-list a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.site-footer-list a:hover {
    color: var(--primary-accent);
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 2.5rem;
    font-size: 0.88rem;
}

.site-footer-copy {
    margin: 0;
    color: var(--text-secondary);
}

.site-footer-legal {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.site-footer-legal a {
    color: var(--primary-accent);
    text-decoration: none;
}

.site-footer-legal a:hover {
    text-decoration: underline;
}

.site-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1;
    background: var(--surface-alt);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-social--linkedin {
    font-weight: 700;
}

.site-footer-social:hover {
    border-color: var(--border-accent);
    color: var(--primary-accent);
    box-shadow: var(--shadow-glow);
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── 11-modals.css ─────────────────────────────────────────────── */
/* ─────────── Modals ─────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--surface-raised);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover {
    color: var(--text-main);
    border-color: var(--border-strong);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: -0.015em;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--surface-sunken);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-hp {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes moveCursor {
    0% { transform: translate(60px, 40px); }
    50% { transform: translate(180px, 120px); }
    100% { transform: translate(60px, 40px); }
}

/* ─── 12-faq.css ────────────────────────────────────────────────── */
/* ─────────── FAQ ─────────── */
.faq-section,
.pricing-section {
    padding-top: 180px;
    padding-bottom: 100px;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.faq-item.is-open {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.35;
    transition: background-color 0.2s ease;
}

.faq-trigger:hover {
    background: var(--surface-alt);
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: -2px;
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-alt);
    color: var(--text-secondary);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.faq-chevron svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-accent);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-panel-inner p {
    padding: 0 1.4rem 1.3rem;
    padding-top: 0;
    margin-top: -0.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-panel-inner p strong {
    color: var(--text-main);
    font-weight: 600;
}

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

.section-header h1 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--text-main);
}

.pricing-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-panel {
    width: 100%;
    padding: 1.75rem 1.75rem 1.5rem;
    text-align: left;
    position: relative;
}

.pricing-panel .modal-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-panel .modal-header h2 {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 0.4rem;
}

.pricing-panel .modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-panel .demo-form-submit {
    width: 100%;
    margin-top: 0.25rem;
    border: none;
    cursor: pointer;
}

.demo-form-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.demo-form-success-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-accent);
    margin: 0 0 0.5rem;
}

.demo-form-success-lead {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.demo-form-error {
    text-align: center;
    font-size: 0.9rem;
    color: #f87171;
    margin: 1rem 0 0;
}

.demo-form-error a {
    color: var(--primary-accent);
}

.pricing-aside {
    width: 100%;
    text-align: center;
    padding-top: 0.25rem;
}

.pricing-aside-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 0.5rem;
}

.pricing-email-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pricing-email-link:hover {
    color: var(--primary-accent);
    border-color: var(--border-accent);
}


/* ─── 13-blog.css ───────────────────────────────────────────────── */
/* ─────────── Blog index & cards ─────────── */
.blogs-preview {
    padding: 5rem 0 6rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}

.blogs-preview-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.75rem;
}

.blogs-preview-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    color: var(--text-main);
}

.blogs-preview-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
}

.blogs-preview-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

.blog-list--page {
    max-width: 46rem;
    gap: 1.15rem;
}

.blog-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-color);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}

@media (hover: hover) and (pointer: fine) {
    .blog-card:hover {
        transform: translateY(-2px);
    }
}

.blog-card-link {
    display: block;
    padding: 1.5rem 1.65rem;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(4, 120, 87, 0.08);
}

.blog-card-link:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
    border-radius: 16px;
}

.blog-card-date {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 0.55rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.018em;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
}

.blog-card-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    overflow-wrap: break-word;
}

.blog-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-accent);
}

.blog-list-error,
.blog-list-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
}

.blogs-page {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 5rem;
}

.blogs-page-header {
    margin-bottom: 3rem;
}

.blogs-page-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 34rem;
    margin: 0 auto;
}

/* ─── 14-article.css ────────────────────────────────────────────── */
/* ─────────── Article reader ─────────── */
.article-page {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 5rem;
    min-height: 60vh;
}

.article-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    column-gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: start;
}

.article-sidebar {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    align-self: start;
    z-index: 0;
    max-height: calc(100vh - var(--nav-height) - 2.75rem);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.article-sidebar-label {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin: 0 0 0.65rem;
    padding: 0 0.75rem 0.65rem;
    border-bottom: 1px solid var(--border);
}

.article-sidebar-nav-inner {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    background: none;
    border: none;
    backdrop-filter: none;
}

.article-sidebar-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0.35rem 0 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.article-sidebar-scroll::-webkit-scrollbar {
    width: 6px;
}

.article-sidebar-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.article-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.article-sidebar-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.article-sidebar-link:hover {
    background: var(--surface-alt);
    border-color: var(--border);
}

.article-sidebar-link:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 1px;
}

.article-sidebar-link.is-active {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-accent);
}

.article-sidebar-date {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 0.45rem;
}

.article-sidebar-link.is-active .article-sidebar-date {
    color: var(--primary-accent);
}

.article-sidebar-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-main);
}

.article-sidebar-link.is-active .article-sidebar-title {
    color: var(--text-main);
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.article-back-link--sidebar {
    flex-shrink: 0;
    align-self: flex-start;
    margin: 0 0 1rem;
    width: auto;
    max-width: 100%;
}

.article-back-link:hover {
    color: var(--text-main);
    background: var(--surface-alt);
}

.article-back-link:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

.article-back-icon {
    width: 1.15rem;
    height: 1.15rem;
    opacity: 0.72;
    flex-shrink: 0;
}

.article-main {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.article-main .article-prose {
    max-width: 42rem;
}

.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article-meta-date {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.article-dek {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-style: italic;
}

.article-error {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem 1rem;
}

.article-error a {
    color: var(--primary-accent);
}

.article-prose {
    font-size: 1.125rem;
    line-height: 1.78;
    color: var(--text-main);
    letter-spacing: -0.005em;
}

.article-prose > *:first-child {
    margin-top: 0;
}

.article-prose h1 {
    font-family: var(--font-sans);
    font-size: clamp(1.85rem, 4.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 0 0 1.25rem;
}

.article-prose h2 {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2.75rem 0 1rem;
    letter-spacing: -0.025em;
    color: var(--text-main);
    padding-top: 0.5rem;
}

.article-prose h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 2rem 0 0.65rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.article-prose h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-main);
}

.article-prose p {
    margin: 0 0 1.25rem;
    color: var(--text-main);
}

.article-prose p[align='center'],
.article-prose div[align='center'] {
    text-align: center;
}

.article-prose a {
    color: var(--primary-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    font-weight: 500;
}

.article-prose a:hover {
    color: var(--primary-accent-2);
}

.article-prose strong {
    color: var(--text-main);
    font-weight: 700;
}

.article-prose em {
    font-style: italic;
}

.article-prose hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}

.article-prose ul,
.article-prose ol {
    margin: 0 0 1.35rem;
    padding-left: 1.35rem;
}

.article-prose li {
    margin-bottom: 0.5rem;
}

.article-prose li::marker {
    color: var(--text-tertiary);
}

.article-prose blockquote {
    margin: 1.75rem 0;
    padding: 0.4rem 0 0.4rem 1.2rem;
    border-left: 3px solid var(--primary-accent);
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-style: italic;
}

.article-prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88em;
    background: var(--surface-sunken);
    border: 1px solid var(--border);
    padding: 0.14em 0.42em;
    border-radius: 6px;
}

.article-prose pre {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem;
    background: var(--surface-sunken);
    color: var(--text-main);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.55;
}

.article-prose pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    color: inherit;
}

.article-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.75rem auto;
    display: block;
    box-shadow: var(--shadow-md);
}

.article-table-wrap {
    margin: 1.75rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-color);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.article-table th {
    font-weight: 700;
    color: var(--text-main);
    background: var(--surface-alt);
}

.article-table tr:last-child td {
    border-bottom: none;
}

.article-table tbody tr:hover td {
    background: var(--surface-alt);
}

/* ─── 15-responsive.css ─────────────────────────────────────────── */
/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--nav-height) + 5rem);
        padding-bottom: 100px;
    }

    .feature-row {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--surface-color);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: var(--shadow-xl);
        border-left: 1px solid var(--border-strong);
    }

    .nav-actions.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .dropdown::after {
        display: none;
    }

    .dropdown,
    .dropdown-content {
        width: 100%;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
    }

    .dropdown-content {
        display: block;
        padding-left: 1rem;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-content::before {
        display: none;
    }

    .dropbtn {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: left;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
    }

    .btn-primary.nav-cta {
        width: auto;
        margin-top: 0;
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 3.75rem);
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .feature-row,
    .feature-row.reversed {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .feature-content .feature-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-content h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .feature-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-visual {
        width: 100%;
        aspect-ratio: 16/9;
    }

    /* Demo mocks need natural height and must fit narrow viewports */
    .feature-visual.dynamic-form-demo:not(.guidance-feature-visual):not(.onboarding-feature-visual),
    .feature-visual.guidance-feature-visual,
    .feature-visual.onboarding-feature-visual {
        aspect-ratio: auto;
    }

    .feature-visual.dynamic-form-demo:not(.guidance-feature-visual):not(.onboarding-feature-visual) {
        min-height: clamp(300px, 78vw, 400px);
        padding: clamp(0.75rem, 3vw, 1.25rem);
    }

    .feature-visual.dynamic-form-demo .chatbot-window {
        width: 100%;
        max-width: min(300px, calc(100% - 0.5rem));
        flex-shrink: 0;
    }

    .feature-visual.dynamic-form-demo .chat-form-reply {
        max-width: 100%;
    }

    .feature-visual.dynamic-form-demo .chatbot-window-body {
        padding: clamp(0.65rem, 2.5vw, 0.95rem);
    }

    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 0.75rem;
        right: 1rem;
    }

    .faq-section,
    .pricing-section {
        padding-top: 130px;
    }

    .faq-trigger {
        font-size: 1rem;
        padding: 1rem 1.15rem;
    }

    .faq-panel-inner p {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
        font-size: 0.95rem;
    }

    .blogs-preview {
        padding: 3rem 0 3.5rem;
    }

    .blogs-preview-head {
        margin-bottom: 1.75rem;
    }

    .blogs-preview-title {
        font-size: clamp(1.45rem, 6vw, 1.85rem);
    }

    .blogs-preview-sub {
        font-size: 1rem;
        line-height: 1.6;
    }

    .blogs-page,
    .article-page {
        padding-top: calc(var(--nav-height) + 2.75rem);
        padding-bottom: max(4rem, calc(env(safe-area-inset-bottom, 0px) + 3rem));
    }

    .blogs-page-header {
        margin-bottom: 1.5rem;
    }

    .blogs-page-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .blog-list,
    .blog-list--page {
        max-width: none;
        width: 100%;
        gap: 0.875rem;
    }

    .blog-card-link {
        padding: 1.25rem 1.25rem;
        min-height: 2.75rem;
    }

    .blog-card-title {
        font-size: 1.08rem;
        line-height: 1.42;
    }

    .blog-card-desc {
        font-size: 0.95rem;
        line-height: 1.58;
        margin-bottom: 0.7rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .article-main {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }

    .article-sidebar {
        grid-column: 1;
        grid-row: auto;
        order: 2;
        position: static;
        max-height: none;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }

    .article-sidebar-scroll {
        max-height: min(50vh, 20rem);
    }

    .article-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.15rem;
    }

    .article-dek {
        font-size: 1.05rem;
        line-height: 1.62;
    }

    .article-prose h1 {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
        line-height: 1.22;
    }

    .article-prose pre {
        padding: 1rem 1rem;
        font-size: 0.85rem;
        -webkit-overflow-scrolling: touch;
    }

    .article-sidebar-link {
        padding: 0.85rem 0.7rem;
    }

    .article-sidebar-title {
        line-height: 1.4;
    }

    .article-prose {
        font-size: 1.05rem;
    }

    .article-prose h2 {
        font-size: 1.3rem;
    }

    .cta-band {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem 1rem;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        width: 100%;
    }

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

    .hero p,
    .hero-tagline {
        font-size: 1.08rem;
    }

    .feature-row {
        margin-bottom: 3rem;
    }

    .feature-row:last-child {
        margin-bottom: 1.5rem;
    }

    .home-social-strip {
        padding: 2.25rem 0 2rem;
    }

    .features .home-how-section {
        margin: 0 0 2.25rem;
        padding: 2.25rem 0 2rem;
    }

    .cta-band {
        padding: 2.25rem 1.25rem;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-card-link {
        padding: 1.1rem 1rem;
    }

    .blogs-page-lead {
        padding: 0 0.15rem;
    }

    .article-layout {
        padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
    }

    .article-table th,
    .article-table td {
        padding: 0.55rem 0.65rem;
        font-size: 0.88rem;
    }
}

