:root {
    color-scheme: light;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #eff6ff;
    --surface-strong: #e3f2fd;
    --foreground: #111827;
    --muted: #526173;
    --muted-strong: #354255;
    --primary: #1976d2;
    --primary-dark: #0d47a1;
    --primary-soft: #e3f2fd;
    --border: #dce3eb;
    --border-strong: #bfccda;
    --success: #178447;
    --success-soft: #e8f7ee;
    --warning: #9a6700;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 24px 70px rgba(15, 35, 60, 0.12);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    transform: translateY(-150%);
    border-radius: var(--radius-sm);
    background: var(--foreground);
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(25, 118, 210, 0.35);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(220, 227, 235, 0.88);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.navbar {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--primary);
    color: #ffffff;
}

.brand-mark svg {
    width: 23px;
    height: 23px;
}

.desktop-nav,
.nav-actions,
.language-switcher {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 28px;
}

.nav-link {
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    gap: 12px;
}

.language-switcher {
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--background);
    padding: 3px;
}

.language-link,
.language-current {
    display: grid;
    min-width: 36px;
    min-height: 32px;
    place-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.language-link {
    color: var(--muted);
}

.language-link:hover {
    color: var(--primary-dark);
}

.language-current {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-primary {
    background: var(--primary);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-secondary {
    border-color: var(--border-strong);
    background: var(--surface);
    color: var(--foreground);
}

.button-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.button-light {
    background: #ffffff;
    color: var(--primary-dark);
}

.button-light:hover {
    background: var(--primary-soft);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, 0.36);
    color: #ffffff;
}

.button-ghost-light:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--foreground);
    cursor: pointer;
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

.menu-toggle .menu-close,
.menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 84px 0 78px;
}

.hero::before {
    position: absolute;
    top: -240px;
    right: -180px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(25, 118, 210, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(25, 118, 210, 0.025), 0 0 0 180px rgba(25, 118, 210, 0.02);
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: 68px;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.hero h1,
.section-heading h2,
.final-cta h2,
.legal-header h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 5.3vw, 68px);
}

.hero-description {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.75;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 18px 0 0;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 600;
}

.hero-note svg {
    width: 17px;
    height: 17px;
    color: var(--success);
}

.console-preview {
    position: relative;
    border: 1px solid #c9d5e2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.preview-topbar {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    padding: 11px 16px;
}

.preview-title-wrap,
.preview-status,
.deploy-row,
.deploy-meta {
    display: flex;
    align-items: center;
}

.preview-title-wrap {
    gap: 10px;
}

.preview-title-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary);
}

.preview-title-icon svg {
    width: 16px;
    height: 16px;
}

.preview-label {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-title {
    margin: 1px 0 0;
    font-size: 13px;
    font-weight: 750;
}

.preview-status {
    gap: 6px;
    border-radius: 999px;
    background: var(--success-soft);
    color: var(--success);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 750;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.preview-chat {
    display: grid;
    min-height: 312px;
    align-content: start;
    gap: 14px;
    background: #f8fafc;
    padding: 20px;
}

.chat-message {
    max-width: 86%;
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    background: #ffffff;
    padding: 12px 14px;
    color: var(--muted-strong);
    font-size: 12px;
    line-height: 1.55;
}

.chat-message-user {
    justify-self: end;
    border-color: transparent;
    border-radius: 14px 14px 4px 14px;
    background: var(--primary);
    color: #ffffff;
}

.deploy-card {
    margin-top: 2px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.deploy-row {
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    font-size: 11px;
}

.deploy-row + .deploy-row {
    border-top: 1px solid var(--border);
}

.deploy-meta {
    gap: 8px;
    color: var(--muted-strong);
    font-weight: 650;
}

.deploy-meta svg {
    width: 14px;
    height: 14px;
    color: var(--success);
}

.deploy-value {
    color: var(--primary-dark);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.proof-section {
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

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

.proof-item {
    position: relative;
    padding: 25px 24px;
}

.proof-item + .proof-item::before {
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 1px;
    background: var(--border);
    content: "";
}

.proof-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
}

.proof-text {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.section {
    padding: 104px 0;
    scroll-margin-top: 84px;
}

.section-white {
    background: var(--surface);
}

.section-blue {
    background: #f0f7ff;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 46px;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.final-cta h2,
.legal-header h1 {
    font-size: clamp(34px, 4.3vw, 52px);
}

.section-heading p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.feature-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.template-card,
.pricing-card,
.step-card {
    border: 1px solid var(--border);
    background: var(--surface);
}

.feature-card {
    border-radius: var(--radius);
    padding: 26px;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover {
    border-color: #9fc7ed;
    background: #fbfdff;
}

.icon-box {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

.feature-card h3,
.template-card h3,
.step-card h3,
.pricing-card h3 {
    margin: 20px 0 0;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.feature-card p,
.template-card p,
.step-card p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.steps-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    position: relative;
    border-radius: var(--radius);
    padding: 30px;
    overflow: hidden;
}

.step-number {
    color: #a9c8e9;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 38px;
    font-weight: 750;
    letter-spacing: -0.06em;
    line-height: 1;
}

.step-card h3 {
    margin-top: 28px;
}

.template-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.template-card {
    display: flex;
    min-height: 238px;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.template-card:hover {
    border-color: var(--primary);
    background: #fbfdff;
}

.template-card h3 {
    margin-top: 18px;
}

.template-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.template-link svg {
    width: 15px;
    height: 15px;
    transition: transform 180ms ease;
}

.template-card:hover .template-link svg {
    transform: translateX(3px);
}

.pricing-grid {
    display: grid;
    align-items: stretch;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 30px;
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.plan-label {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-top: 16px;
    font-size: 22px;
}

.price {
    margin: 18px 0 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.price span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.plan-specs {
    display: grid;
    gap: 0;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.plan-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding: 10px 0;
    color: var(--muted);
    font-size: 13px;
}

.plan-specs strong {
    color: var(--foreground);
    font-weight: 750;
}

.pricing-card .button {
    width: 100%;
    margin-top: auto;
}

.pricing-empty {
    grid-column: 1 / -1;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 28px;
    color: var(--muted-strong);
    text-align: center;
}

.pricing-note {
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

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

.faq-item summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--foreground);
    cursor: pointer;
    font-size: 16px;
    font-weight: 750;
    list-style: none;
}

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

.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.faq-toggle::before,
.faq-toggle::after {
    position: absolute;
    top: 9px;
    left: 3px;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.faq-toggle::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.faq-item[open] .faq-toggle::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-width: 760px;
    margin: -2px 0 0;
    padding: 0 50px 24px 0;
    color: var(--muted);
    font-size: 14px;
}

.final-wrap {
    padding: 0 0 104px;
    background: var(--surface);
}

.final-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #0d3a63;
    color: #ffffff;
    padding: 62px;
}

.final-cta::after {
    position: absolute;
    top: -160px;
    right: -80px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.025);
    content: "";
}

.final-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.final-cta .eyebrow {
    color: #b8dcff;
}

.final-cta .eyebrow::before {
    background: #64b5f6;
}

.final-cta p:not(.eyebrow) {
    max-width: 660px;
    margin: 18px 0 0;
    color: #d4e6f7;
    font-size: 17px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #f3f6f9;
    padding: 62px 0 26px;
}

.footer-grid {
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
}

.footer-brand p {
    max-width: 370px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-column h2 {
    margin: 0 0 15px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.legal-main {
    min-height: 70vh;
    background: var(--surface);
    padding: 74px 0 104px;
}

.legal-content {
    max-width: 820px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.back-link svg {
    width: 17px;
    height: 17px;
}

.legal-header {
    margin: 42px 0 52px;
}

.legal-header p {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.legal-updated {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

.legal-section {
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.legal-section h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.legal-section p {
    margin: 10px 0 0;
    color: var(--muted-strong);
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .hero-grid {
        gap: 48px;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    }

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

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 0.8fr);
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 820px) {
    .navbar > .nav-actions .button {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        inset: 73px 0 0;
        display: block;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        background: var(--surface);
        padding: 20px;
    }

    .mobile-menu-inner {
        display: grid;
        gap: 4px;
    }

    .mobile-menu .nav-link {
        display: flex;
        min-height: 48px;
        align-items: center;
        border-radius: 10px;
        padding: 8px 12px;
        font-size: 16px;
    }

    .mobile-menu .nav-link:hover {
        background: var(--surface-soft);
    }

    .mobile-menu .button {
        width: 100%;
        margin-top: 14px;
    }

    .hero {
        padding: 66px 0;
    }

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

    .console-preview {
        max-width: 600px;
    }

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

    .proof-item:nth-child(3)::before {
        display: none;
    }

    .proof-item:nth-child(n + 3) {
        border-top: 1px solid var(--border);
    }

    .section {
        padding: 78px 0;
    }

    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .final-wrap {
        padding-bottom: 78px;
    }

    .final-cta {
        padding: 46px 34px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .navbar {
        min-height: 66px;
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .nav-actions {
        gap: 8px;
    }

    .language-link,
    .language-current {
        min-width: 32px;
        min-height: 32px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        inset-block-start: 67px;
    }

    .hero {
        padding: 54px 0 58px;
    }

    .hero::before {
        display: none;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions,
    .final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .final-actions .button {
        width: 100%;
    }

    .hero-note {
        align-items: flex-start;
    }

    .preview-topbar {
        padding-inline: 13px;
    }

    .preview-chat {
        min-height: 330px;
        padding: 15px;
    }

    .chat-message {
        max-width: 94%;
    }

    .deploy-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .proof-grid,
    .feature-grid,
    .template-grid {
        grid-template-columns: 1fr;
    }

    .proof-item + .proof-item::before {
        display: none;
    }

    .proof-item:nth-child(n + 2) {
        border-top: 1px solid var(--border);
    }

    .proof-item {
        padding: 20px 8px;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .final-cta h2,
    .legal-header h1 {
        font-size: 34px;
    }

    .section-heading p:not(.eyebrow),
    .final-cta p:not(.eyebrow) {
        font-size: 15px;
    }

    .feature-card,
    .template-card,
    .step-card,
    .pricing-card {
        padding: 23px;
    }

    .faq-item summary {
        min-height: 68px;
        font-size: 15px;
    }

    .faq-answer {
        padding-right: 30px;
    }

    .final-wrap {
        padding-bottom: 66px;
    }

    .final-cta {
        border-radius: var(--radius);
        padding: 38px 24px;
    }

    .footer-grid {
        gap: 34px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

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

    .legal-main {
        padding: 52px 0 72px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
