:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.72);
    --text: #0f172a;
    --text-soft: #475569;
    --border: #e2e8f0;
    --border-strong: #c7cfda;
    --primary: #0b1f3a;
    --primary-hover: #0f274a;
    --primary-text: #ffffff;
    --accent: #2563eb;
    --graphite: #1f2937;
    --glass-surface: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(226, 232, 240, 0.9);
    --focus-ring: rgba(37, 99, 235, 0.24);
    --status-bg: rgba(199, 207, 218, 0.16);
    --status-border: rgba(199, 207, 218, 0.62);
    --status-text: #1f2937;
    --aura-navy: rgba(11, 31, 58, 0.08);
    --aura-blue: rgba(37, 99, 235, 0.08);
    --aura-silver: rgba(199, 207, 218, 0.12);
    --success-bg: #ecfdf5;
    --success-border: #10b981;
    --success-text: #065f46;
    --error-bg: #fef2f2;
    --error-border: #ef4444;
    --error-text: #991b1b;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.06);
    --radius: 12px;
    --radius-sm: 10px;
    --container: 1180px;
    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, var(--aura-navy) 0%, transparent 48%),
        radial-gradient(circle at 88% 10%, var(--aura-blue) 0%, transparent 44%),
        radial-gradient(circle at 55% 0%, var(--aura-silver) 0%, transparent 42%),
        var(--bg);
    line-height: 1.56;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-surface);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.header-row {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-right .btn-ghost {
    display: none;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--primary-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.brand-pill:hover {
    transform: translateY(-1px);
    background: var(--primary-hover);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav a {
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.header-nav a:hover {
    background: rgba(199, 207, 218, 0.18);
    color: var(--text);
}

.lang-select {
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface);
    color: var(--text);
    padding: 0 12px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lang-select:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.header-status {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--status-border);
    border-radius: 999px;
    background: var(--status-bg);
    color: var(--status-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-main {
    padding: 30px 0 64px;
}

.card {
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-card,
.side-card,
.module-card,
.form-card,
.trust-card,
.stat-card {
    padding: 18px;
}

.hero-topline {
    margin-bottom: 14px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eff4ff;
    color: #1e40af;
    border: 1px solid #c7d7fe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-title {
    margin: 0;
    max-width: 760px;
    font-size: 27px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 800;
    text-wrap: balance;
}

.hero-subtitle {
    margin: 14px 0 0;
    max-width: 760px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.66;
    text-wrap: pretty;
}

.hero-note {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-actions .btn {
    width: 100%;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #d7ddea;
    border-radius: 999px;
    background: var(--surface-soft);
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

.card-head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.card-head p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.68;
    text-wrap: pretty;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.status-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.status-row span {
    color: #667085;
    font-size: 12px;
}

.status-row strong {
    color: #101828;
    font-size: 14px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.enterprise-panel {
    padding: 18px;
    margin-bottom: 24px;
    border-color: #d7e1f0;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.enterprise-head h2 {
    margin: 12px 0 0;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.enterprise-head p {
    margin: 10px 0 0;
    max-width: 920px;
    color: #667085;
    font-size: 15px;
    line-height: 1.68;
}

.enterprise-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
}

.enterprise-item {
    position: relative;
    padding: 0;
    border: 1px solid #dbe4f1;
    border-radius: 12px;
    background: #ffffff;
    overflow: visible;
    z-index: 1;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.enterprise-item:hover {
    transform: translateY(-2px);
    border-color: #bfd0e3;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
    z-index: 30;
}

.enterprise-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 16px;
    color: inherit;
    cursor: pointer;
}

.enterprise-item-title {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: #0f172a;
}

.enterprise-item-text {
    display: block;
    margin: 6px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.62;
}

.enterprise-popover {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: calc(100% + 8px);
    top: auto;
    z-index: 12;
    padding: 12px 13px;
    border: 1px solid #c7d7fe;
    border-radius: 12px;
    background: #ffffff;
    color: #344054;
    font-size: 12px;
    line-height: 1.6;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.enterprise-popover::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 24px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: #ffffff;
    border-right: 1px solid #c7d7fe;
    border-bottom: 1px solid #c7d7fe;
}

.enterprise-item:hover .enterprise-popover,
.enterprise-item:focus-within .enterprise-popover,
.enterprise-item.is-open .enterprise-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 40;
}

.enterprise-item:focus-within,
.enterprise-item.is-open {
    z-index: 40;
}

.stat-label {
    color: #667085;
    font-size: 13px;
    font-weight: 500;
}

.stat-value {
    margin-top: 8px;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #0b1324;
}

.stat-hint {
    margin-top: 8px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.main-stack,
.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-stack {
    position: static;
    top: auto;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.feature-row:hover {
    transform: translateY(-2px);
    border-color: #bfd0e3;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.feature-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--accent);
    flex: 0 0 auto;
}

.feature-row h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.feature-row p {
    margin: 6px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.62;
}

/* Sidebar intake shortcuts need denser but readable layout. */
.feature-list.intake-shortcuts {
    grid-template-columns: 1fr;
    gap: 12px;
}

.intake-shortcuts .feature-row {
    padding: 14px;
}

.intake-shortcuts .feature-row h3 {
    font-size: 15px;
    line-height: 1.32;
}

.intake-shortcuts .feature-row p {
    font-size: 13px;
    line-height: 1.5;
    margin: 4px 0 10px;
}

.intake-shortcut-btn {
    width: 100%;
    min-height: 36px;
}

.legal-note-small {
    margin: 8px 0 0;
    color: #667085;
    font-size: 13px;
}

.module-note {
    margin: 16px 0 0;
    color: #667085;
    font-size: 14px;
}

.ali-copy {
    margin-top: 14px;
    color: #475467;
}

.ali-disclaimer {
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
}

.hero-actions-tight {
    margin-top: 14px;
}

.hero-actions-compact {
    margin-top: 12px;
}

.final-privacy-note {
    margin-top: 12px;
    color: #667085;
    font-size: 13px;
}

.contact-success-note {
    color: var(--text-soft);
    margin: 0 0 16px;
}

.form-help-text {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 13px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.consent-checkbox {
    margin-top: 3px;
}

.faq-list {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 17px 52px 17px 18px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    transition: background-color 0.16s ease;
}

.faq-item summary:hover {
    background: #f8fafc;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    font-size: 22px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-content {
    padding: 0 18px 18px;
    color: #667085;
    font-size: 14px;
    line-height: 1.72;
}

.waitlist-form {
    margin-top: 16px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-soft);
}

.form-input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-textarea {
    min-height: 112px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.18s ease;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.24);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    background: rgba(199, 207, 218, 0.16);
    border-color: var(--border-strong);
}

.btn-secondary.is-active {
    border-color: var(--border-strong);
    background: rgba(199, 207, 218, 0.2);
    color: var(--text);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    background: rgba(199, 207, 218, 0.16);
    border-color: var(--border-strong);
}

.btn-block {
    width: 100%;
}

.btn-loader {
    display: none;
    animation: spin 1s linear infinite;
}

.is-loading .btn-text {
    display: none;
}

.is-loading .btn-loader {
    display: inline-block;
}

.form-feedback {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-feedback.success {
    display: block;
    background: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

.form-feedback.error {
    display: block;
    background: var(--error-bg);
    border-color: var(--error-border);
    color: var(--error-text);
}

.trust-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.trust-list li {
    position: relative;
    padding: 0 0 0 18px;
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-coming {
    margin-top: 18px;
    padding: 24px;
}

.pricing-compare {
    margin-top: 18px;
    padding: 24px;
}

.pricing-page .hero-title {
    font-size: 24px;
    line-height: 1.08;
}

.pricing-page .plan-price {
    font-size: 24px;
}

.plan-card {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: #a8b8cf;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12), 0 22px 44px rgba(37, 99, 235, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.plan-card-highlight {
    border-color: #94a3b8;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(37, 99, 235, 0.12);
}

.plan-head h2 {
    margin: 0;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.plan-price {
    margin-top: 8px;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #0b1324;
}

.plan-head p {
    margin: 8px 0 0;
    color: #475467;
    font-size: 15px;
    font-weight: 600;
}

.plan-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.plan-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    color: #344054;
    font-size: 15px;
    line-height: 1.6;
}

.plan-list li:last-child {
    margin-bottom: 0;
}

.plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}

.faq-tools {
    padding: 24px;
}

.faq-result-count {
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
}

.faq-result-count strong {
    color: var(--text);
}

.faq-page-card {
    padding: 0;
    overflow: hidden;
    border-color: #d4deea;
}

.faq-page-list {
    margin-top: 0;
    border: 0;
    border-radius: 0;
}

.faq-summary-title {
    display: inline-block;
    max-width: calc(100% - 130px);
}

.faq-category-tag {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid #c7d7fe;
    background: #eff4ff;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.faq-empty-state {
    padding: 28px;
}

.faq-empty-state h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.faq-empty-state p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
}

.site-footer {
    padding: 26px 0 40px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.footer-stack {
    flex-direction: column;
    gap: 10px;
}

.footer-network-title {
    padding: 10px 14px;
    color: var(--text-soft);
}

.site-header .header-nav,
.site-header .header-status {
    display: none;
}

.faq-category-tag {
    display: none;
}

.site-footer .header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-link-section {
    margin-top: 20px;
}

.site-footer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    letter-spacing: 0.01em;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0f1626;
        --surface: #101a2d;
        --surface-soft: rgba(16, 26, 45, 0.78);
        --text: #e2e8f0;
        --text-soft: #94a3b8;
        --border: rgba(148, 163, 184, 0.28);
        --border-strong: rgba(199, 207, 218, 0.42);
        --primary: #c7cfda;
        --primary-hover: #d5dbe5;
        --primary-text: #0b1f3a;
        --glass-surface: rgba(16, 26, 45, 0.72);
        --glass-border: rgba(148, 163, 184, 0.28);
        --focus-ring: rgba(37, 99, 235, 0.34);
        --status-bg: rgba(199, 207, 218, 0.14);
        --status-border: rgba(199, 207, 218, 0.34);
        --status-text: #cbd5e1;
        --aura-navy: rgba(11, 31, 58, 0.22);
        --aura-blue: rgba(37, 99, 235, 0.1);
        --aura-silver: rgba(199, 207, 218, 0.08);
        --shadow: 0 1px 2px rgba(2, 6, 23, 0.4), 0 10px 26px rgba(2, 6, 23, 0.34);
    }
}

@media (prefers-reduced-transparency: reduce) {
    :root {
        --surface-soft: var(--surface);
        --glass-surface: var(--surface);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 361px) {
    .feature-row {
        padding: 18px;
    }
}

@media (min-width: 641px) {
    .container {
        padding: 0 20px;
    }

    .header-row {
        min-height: 74px;
    }

    .hero-card,
    .side-card,
    .module-card,
    .form-card,
    .trust-card,
    .stat-card {
        padding: 24px;
    }

    .hero-title {
        font-size: clamp(30px, 4.7vw, 48px);
    }

    .pricing-page .hero-title {
        font-size: clamp(26px, 3.9vw, 40px);
    }

    .pricing-page .plan-price {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.72;
    }

    .hero-note {
        font-size: 15px;
    }

    .enterprise-panel {
        padding: 24px;
    }

    .enterprise-head h2 {
        font-size: 28px;
    }

    .enterprise-popover {
        left: 14px;
        right: 14px;
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-actions .btn {
        width: auto;
    }

    .header-right .btn-ghost {
        display: inline-flex;
    }

    .feature-row {
        padding: 18px;
    }

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

    .card-head h2 {
        font-size: 24px;
    }

    .faq-item summary {
        padding: 15px 44px 15px 16px;
    }

    .header-right {
        gap: 10px;
    }

    .lang-select {
        max-width: 148px;
    }
}

@media (min-width: 861px) {
    .site-header .header-nav,
    .site-header .header-status {
        display: flex;
    }

    .faq-category-tag {
        display: inline-flex;
    }

    .faq-summary-title {
        max-width: calc(100% - 130px);
    }

    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-list.intake-shortcuts {
        grid-template-columns: 1fr;
    }

    .lang-select {
        max-width: none;
    }
}

@media (min-width: 1081px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.9fr);
    }

    .content-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
        gap: 22px;
    }

    .sidebar-stack {
        position: sticky;
        top: 96px;
    }

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

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

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