:root {
    --bg: #f4f6f9;
    --surface: #fff;
    --text: #1a2332;
    --muted: #5c6b7a;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --error-bg: #fef2f2;
    --error-text: #b91c1c;
    --success-bg: #f0fdf4;
    --success-text: #15803d;
    --border: #e2e8f0;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(960px, 100% - 2rem);
    margin-inline: auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.logo {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    text-decoration: none;
}

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

.nav a {
    color: var(--muted);
    text-decoration: none;
}

.nav a:hover {
    color: var(--text);
}

.nav-logout {
    margin: 0;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--muted);
    cursor: pointer;
}

.btn-link:hover {
    color: var(--text);
}

.main {
    flex: 1;
    padding: 2rem 0;
}

.site-footer {
    margin-top: auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.875rem;
}

.site-footer p {
    margin: 0;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid #fecaca;
}

.alert-success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid #bbf7d0;
}

.auth-card {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.auth-card h1 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}

.auth-footer {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--muted);
}

.muted {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.text-error {
    color: var(--danger);
}

.text-warning {
    color: #b45309;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-narrow {
    max-width: 360px;
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.form input {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
}

.form input:focus,
.form select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.form-messenger {
    max-width: 28rem;
}

.form-label-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: -0.3rem;
    border: solid var(--muted);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none;
}

.select-input {
    width: 100%;
    padding: 0.65rem 2.25rem 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-weight: 500;
    color: var(--text);
    background: var(--surface);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.select-input:hover {
    border-color: #cbd5e1;
}

.select-wrap--messenger .select-input {
    border-left-width: 4px;
}

.select-wrap--type-whatsapp .select-input {
    border-left-color: #25d366;
}

.select-wrap--type-telegram .select-input {
    border-left-color: #229ed9;
}

.select-wrap--type-max .select-input {
    border-left-color: #7c3aed;
}

.select-wrap--type-custom .select-input {
    border-left-color: var(--muted);
}

.match-mode-fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.match-mode-fieldset legend {
    margin-bottom: 0.5rem;
    padding: 0;
}

.match-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.match-mode__option {
    margin: 0;
    font-weight: 500;
}

.match-mode__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.match-mode__label {
    display: block;
    padding: 0.65rem 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}

.match-mode__input:checked + .match-mode__label {
    background: var(--primary);
    color: #fff;
}

.match-mode__input:focus-visible + .match-mode__label {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.match-mode-hint {
    margin: 0.5rem 0 0;
}

.match-mode-hint[hidden] {
    display: none !important;
}

.match-field[hidden] {
    display: none !important;
}

.badge-match {
    background: #eff6ff;
    color: #1d4ed8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: 6px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.875rem;
}

a.btn {
    text-decoration: none;
}

.page-header h1 {
    margin: 0 0 0.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.card h2 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
}

.checklist {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
}

.dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1.5rem;
    margin: 0;
}

.dl dt {
    color: var(--muted);
    font-size: 0.875rem;
}

.dl dd {
    margin: 0;
}

.page-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.page-header-row h1 {
    margin: 0 0 0.25rem;
}

.table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

.table th {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted);
    background: #f8fafc;
}

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

.table-actions {
    text-align: right;
    white-space: nowrap;
}

.table-action-icons {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.table-action-form {
    display: inline-flex;
    margin: 0;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.btn-icon:hover {
    color: var(--primary);
    border-color: #93c5fd;
    background: #eff6ff;
    text-decoration: none;
}

.btn-icon--danger:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.code-inline {
    font-size: 0.8125rem;
    background: #f1f5f9;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.code-block {
    display: block;
    font-size: 0.8125rem;
    background: #f1f5f9;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    word-break: break-all;
}

.code-block-pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success-text);
}

.badge-muted {
    background: #f1f5f9;
    color: var(--muted);
}

.field-hint {
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--muted);
}

.field-hint code {
    font-size: 0.9em;
}

.checkbox-label {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem !important;
    font-weight: 500;
}

.checkbox-label input {
    width: auto;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.form-inline {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

.link-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.link-card strong {
    color: var(--text);
}

.card-danger {
    border-color: #fecaca;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
}

.btn-danger:hover {
    background: #b91c1c;
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .nav {
        flex-wrap: wrap;
    }
}

/* ——— Landing ——— */

body.landing {
    background: #0f172a;
    color: #e2e8f0;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.landing .logo {
    color: #f8fafc;
    font-size: 1.25rem;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 0.35rem 0.5rem;
}

.landing-nav-link:hover {
    color: #fff;
}

.landing-main {
    flex: 1;
}

.landing-alerts {
    padding-top: 1rem;
}

.landing-footer {
    background: #0b1220;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #94a3b8;
}

.hero {
    padding: 4rem 0 5rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.35), transparent),
        linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 999px;
}

.hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.hero-lead {
    margin: 0 0 1.75rem;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #94a3b8;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-note {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-card {
    flex: 1 1 140px;
    max-width: 180px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-card-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.hero-messengers {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    font-size: 0.875rem;
    color: #e2e8f0;
}

.hero-messengers li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-wa { background: #22c55e; }
.dot-tg { background: #38bdf8; }
.dot-max { background: #a78bfa; }

.hero-card-meta {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.hero-crm-deal {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
}

.hero-arrow {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 700;
}

.section {
    padding: 4rem 0;
}

.section-title {
    margin: 0 0 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
}

.features {
    background: #1e293b;
}

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

.feature-card {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius);
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    color: #f1f5f9;
}

.feature-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.55;
}

.feature-card code {
    font-size: 0.85em;
    color: #93c5fd;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 8px;
}

.steps {
    background: #0f172a;
}

.steps-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steps-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
}

.steps-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #f1f5f9;
}

.steps-list p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9375rem;
}

.steps-list code {
    font-size: 0.85em;
    color: #93c5fd;
}

.cta-band {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.crm-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.crm-type-option {
    position: relative;
    display: block;
    margin: 0;
    cursor: pointer;
}

.crm-type-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.crm-type-option-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 13.5rem;
    min-height: 5.5rem;
    padding: 0.65rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius, 8px);
    background: var(--surface, #fff);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.crm-type-input:checked + .crm-type-option-visual::after {
    content: "";
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5.5 4.5 9 11 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.7rem auto;
}

.crm-type-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 4.75rem;
    object-fit: contain;
}

.crm-type-option:hover .crm-type-option-visual {
    border-color: var(--accent, #2563eb);
}

.crm-type-input:focus-visible + .crm-type-option-visual {
    outline: 2px solid var(--accent, #2563eb);
    outline-offset: 2px;
}

.crm-type-input:checked + .crm-type-option-visual {
    border-color: var(--accent, #2563eb);
    box-shadow: 0 0 0 1px var(--accent, #2563eb);
}

.crm-panel {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.crm-panel-title {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
}

.crm-subsection-title {
    margin: 1.25rem 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.dl-compact {
    margin-bottom: 1rem;
}

.dl-compact dt,
.dl-compact dd {
    margin-bottom: 0.35rem;
}

.mapping-grid-single {
    max-width: 24rem;
}

.crm-oauth-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.inline-alert {
    margin: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
}

.crm-search-hint {
    margin-top: 1.5rem;
}

.form-section-title {
    margin: 1.75rem 0 0.35rem;
    font-size: 1.0625rem;
}

.form-section-desc {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
}

.mapping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.btn-danger-outline {
    color: var(--error-text);
    border-color: #fecaca;
}

.btn-danger-outline:hover {
    background: var(--error-bg);
    color: var(--error-text);
}

.crm-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0.75rem 0 1.5rem;
    padding-bottom: 1rem;
}

.crm-panel-head .btn {
    margin: 0.25rem 0;
}

.crm-panel-head .crm-panel-title {
    margin: 0;
}

.help-doc h2 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.125rem;
}

.help-doc h2:first-of-type {
    margin-top: 0;
}

.help-doc-lead {
    margin: 0 0 1rem;
    color: var(--muted);
}

.help-list,
.help-steps {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.help-list li,
.help-steps li {
    margin-bottom: 0.45rem;
}

.copyable-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
}

.copyable-text__value {
    flex: 1 1 12rem;
    margin: 0;
    word-break: break-all;
}

.copyable-text__btn {
    flex-shrink: 0;
}

.help-faq {
    margin-top: 0.5rem;
}

.help-doc-actions {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-actions {
        justify-content: center;
    }
}
