:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --panel: #ffffff;
    --text: #19202a;
    --muted: #697386;
    --line: #dce2ea;
    --nav: #111827;
    --nav-2: #172033;
    --primary: #1664d9;
    --primary-2: #0f4fb4;
    --primary-soft: #e9f1ff;
    --danger: #b42318;
    --success: #087443;
    --warning: #a15c07;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 120px, #d9fff0 0, #d9fff0 150px, transparent 151px),
        linear-gradient(180deg, #eef3f9 0, var(--bg) 340px);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: var(--primary);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 22px;
    background: var(--nav);
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    box-shadow: 0 8px 24px rgb(16 24 40 / 14%);
}

.brand,
.topnav a {
    color: #fff;
    text-decoration: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand img {
    width: 146px;
    max-height: 38px;
    object-fit: contain;
}

.brand span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding-left: 12px;
    border-left: 1px solid rgb(255 255 255 / 24%);
    color: #d8e5f7;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.topnav a {
    opacity: 0.9;
}

.topnav a:hover {
    opacity: 1;
}

.topnav form {
    margin: 0;
}

.topnav button {
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
}

.page {
    width: min(1160px, calc(100% - 32px));
    margin: 28px auto 56px;
}

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-between { justify-content: space-between; }
.text-end { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-danger { color: var(--danger); }
.fw-semibold { font-weight: 600; }
.small { font-size: 0.875rem; }
.h3 { font-size: 1.65rem; }
.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.card-body {
    padding: 20px;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgb(16 24 40 / 8%);
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
    white-space: nowrap;
}

.table th {
    text-align: left;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.table-hover tbody tr:hover {
    background: #f9fbff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.92rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-2);
}

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

.btn-outline-secondary {
    border-color: #aab4c2;
    color: #344054;
    background: #fff;
}

.btn-lg {
    min-height: 42px;
    padding: 10px 16px;
}

.btn-group {
    display: inline-flex;
    gap: 6px;
}

.btn-group-sm .btn {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.82rem;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.text-bg-success { color: #fff; background: var(--success); }
.text-bg-warning { color: #2b1a00; background: #ffd17a; }
.text-bg-secondary { color: #fff; background: #667085; }

.alert {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 16px;
    background: #fff;
}

.alert-danger {
    border-color: #f5b5b0;
    color: var(--danger);
    background: #fff4f2;
}

.alert-light {
    background: #f8fafc;
}

.alert-success {
    border-color: #9bdfbd;
    color: var(--success);
    background: #f0fff6;
}

.border {
    border: 1px solid var(--line);
}

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

.g-3 {
    gap: 16px;
}

.col-md-4,
.col-md-6,
.col-md-8 {
    grid-column: span 12;
}

@media (min-width: 760px) {
    .col-md-4 { grid-column: span 4; }
    .col-md-6 { grid-column: span 6; }
    .col-md-8 { grid-column: span 8; }
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #b9c2cf;
    border-radius: 6px;
    background: #fff;
    color: var(--text);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 16px;
    height: 16px;
}

.login-shell {
    min-height: calc(100vh - 130px);
    display: grid;
    place-items: center;
}

.login-card {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 32px rgb(16 24 40 / 12%);
}

.login-logo {
    width: 180px;
    max-height: 54px;
    object-fit: contain;
    margin-bottom: 18px;
}

.login-card h1 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
    align-items: center;
    min-height: min(620px, calc(100vh - 118px));
    padding: 46px 0 38px;
}

.landing-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 42px;
    align-items: center;
    min-height: min(660px, calc(100vh - 116px));
    padding: 52px 0 42px;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    right: -120px;
    bottom: 18px;
    height: 130px;
    z-index: -1;
    background: #dffcf3;
    border-radius: 46% 54% 0 0 / 70% 62% 0 0;
    transform: rotate(-1deg);
}

.landing-hero__copy {
    max-width: 650px;
}

.landing-hero h1,
.config-hero h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.landing-hero p,
.config-hero p {
    max-width: 670px;
    margin: 20px 0 0;
    color: #4d5b70;
    font-size: 1.08rem;
    line-height: 1.65;
}

.dashboard-stack {
    position: relative;
    min-height: 430px;
}

.wave-shape {
    position: absolute;
    inset: 18px -10px auto 18%;
    height: 250px;
    background: #c9f7e8;
    border-radius: 34% 66% 52% 48% / 38% 32% 68% 62%;
    transform: rotate(8deg);
}

.mock-window {
    position: absolute;
    background: rgb(255 255 255 / 94%);
    border: 1px solid #d7e0ec;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgb(16 24 40 / 14%);
}

.mock-window--main {
    top: 46px;
    left: 0;
    right: 0;
    padding: 18px;
}

.mock-window--float {
    left: 14%;
    right: 8%;
    bottom: 18px;
    padding: 16px;
}

.mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5ebf3;
    font-size: 0.9rem;
}

.mock-head span {
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 700;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 14px;
}

.mock-tile {
    min-height: 126px;
    padding: 16px;
    border-radius: 12px;
}

.mock-tile--blue { background: #eaf3ff; }
.mock-tile--green { background: #e8faef; }
.mock-tile--rose { background: #fff0f2; }

.mock-tile span,
.source-list span {
    display: block;
    color: #516070;
    font-size: 0.84rem;
}

.mock-tile strong {
    display: block;
    margin-top: 14px;
    font-size: 2rem;
}

.mock-tile small {
    color: var(--muted);
}

.source-list {
    display: grid;
    gap: 10px;
    padding-top: 14px;
}

.source-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 10px;
    background: #f7fafd;
    border-radius: 8px;
}

.landing-band {
    margin-top: 32px;
    padding: 38px 0;
    border-top: 1px solid var(--line);
}

.landing-band--mint {
    margin-left: calc((100vw - min(1160px, calc(100vw - 32px))) / -2);
    margin-right: calc((100vw - min(1160px, calc(100vw - 32px))) / -2);
    padding-left: calc((100vw - min(1160px, calc(100vw - 32px))) / 2);
    padding-right: calc((100vw - min(1160px, calc(100vw - 32px))) / 2);
    background: linear-gradient(180deg, #e9fff8 0, #f5f7fb 100%);
}

.landing-band--split,
.config-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.product-row article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-row article:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgb(16 24 40 / 10%);
}

.product-row h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.product-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.product-row--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.config-hero {
    padding: 36px 0 18px;
}

.configurator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.config-panel,
.quote-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 14px 34px rgb(16 24 40 / 9%);
}

.billing-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 5px;
    margin-bottom: 24px;
    background: #eef3f9;
    border-radius: 999px;
}

.billing-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    background: transparent;
    color: #3e4b5d;
    cursor: pointer;
    font-weight: 700;
}

.billing-toggle button.is-active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 10px rgb(16 24 40 / 10%);
}

.range-field {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    margin-bottom: 22px;
    font-weight: 700;
}

.range-field input {
    grid-column: 1 / -1;
    accent-color: var(--primary);
}

.range-field strong {
    color: var(--primary);
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.addon-grid label {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 13px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    background: #f9fbff;
    font-weight: 700;
}

.addon-grid label span {
    display: grid;
    gap: 4px;
}

.addon-grid small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.35;
}

.addon-grid input {
    margin-top: 2px;
    accent-color: var(--primary);
}

.quote-panel {
    position: sticky;
    top: 86px;
    background: linear-gradient(180deg, #ffffff 0, #f4fbff 100%);
}

.quote-panel > span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.quote-panel h2 {
    margin: 0 0 12px;
    font-size: 1.8rem;
}

.quote-price {
    margin-bottom: 18px;
}

.quote-price strong {
    font-size: 2.2rem;
}

.quote-price small {
    color: var(--muted);
    margin-left: 6px;
}

.quote-panel ul {
    margin: 0 0 20px;
    padding-left: 20px;
    color: #435166;
    line-height: 1.7;
}

.wizard-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.wizard-steps,
.wizard-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgb(16 24 40 / 8%);
}

.wizard-steps {
    position: sticky;
    top: 86px;
    padding: 22px;
}

.wizard-steps strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.wizard-steps ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: wizard;
}

.wizard-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4d5b70;
    font-size: 0.92rem;
    line-height: 1.35;
    counter-increment: wizard;
}

.wizard-steps li::before {
    content: counter(wizard);
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #eef4fb;
    color: #41506a;
    font-size: 0.78rem;
    font-weight: 700;
}

.wizard-steps li.is-active {
    color: var(--primary);
    font-weight: 700;
}

.wizard-steps li.is-active::before {
    background: var(--primary);
    color: #fff;
}

.wizard-steps--compact li {
    align-items: flex-start;
}

.wizard-steps--compact small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
}

.wizard-card {
    overflow: hidden;
}

.wizard-card__head {
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 100% 0, #dffcf3 0, #dffcf3 96px, transparent 97px),
        linear-gradient(135deg, #fff 0, #f7fbff 100%);
}

.wizard-card__head span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wizard-card__head h2 {
    margin: 0 0 8px;
    font-size: 1.7rem;
}

.wizard-card__head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.wizard-form {
    display: grid;
    gap: 20px;
    padding: 28px;
}

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

.form-grid label {
    display: grid;
    gap: 7px;
    color: #1f2937;
    font-weight: 700;
}

.form-control {
    width: 100%;
    height: 42px;
    padding: 8px 11px;
    border: 1px solid #b9c6d8;
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(22 100 217 / 16%);
    outline: none;
}

.wizard-notice {
    padding: 15px 16px;
    border: 1px solid #cfe0f4;
    border-radius: 8px;
    background: #f4f9ff;
    color: #435166;
    line-height: 1.5;
}

.legal-consent-box {
    padding: 16px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    background: #fff;
}

.legal-consent-box strong {
    display: block;
    margin-bottom: 5px;
}

.legal-consent-box p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.5;
}

.legal-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-link-row button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-dialog {
    width: min(720px, calc(100% - 32px));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    color: var(--text);
    box-shadow: 0 24px 70px rgb(16 24 40 / 28%);
}

.legal-dialog::backdrop {
    background: rgb(15 23 42 / 45%);
}

.legal-dialog h2 {
    margin: 0 36px 14px 0;
    font-size: 1.45rem;
}

.legal-dialog p {
    margin: 0 0 12px;
    color: #435166;
    line-height: 1.6;
}

.legal-dialog__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
}

.privacy-request-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.privacy-request-info {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0, #f4fbff 100%);
    box-shadow: 0 14px 34px rgb(16 24 40 / 8%);
}

.privacy-request-info h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.privacy-request-info ul {
    margin: 0;
    padding-left: 20px;
    color: #435166;
    line-height: 1.7;
}

.form-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.hero__content {
    max-width: 720px;
}

.eyebrow {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0;
    font-size: 3.1rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero p {
    max-width: 660px;
    margin: 20px 0 0;
    color: #4d5b70;
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__panel {
    display: grid;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgb(16 24 40 / 12%);
}

.metric {
    padding: 18px;
    border: 1px solid #e3e9f1;
    border-radius: 8px;
    background: #f9fbff;
}

.metric span,
.price-card span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.metric strong {
    display: block;
    font-size: 1.08rem;
}

.section-band {
    margin-top: 26px;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 780px;
    margin-bottom: 22px;
}

.section-head h2,
.section-band h2 {
    margin: 0 0 10px;
    font-size: 1.7rem;
}

.section-head p,
.section-band > div > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

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

.feature,
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.feature h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.feature p,
.price-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.section-band--split {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
    gap: 26px;
    align-items: start;
}

.section-band--setup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.price-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.9rem;
}

.price-card strong::after {
    content: " / Monat";
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 400;
}

.price-card--highlight {
    border-color: #9cc2ff;
    background: var(--primary-soft);
}

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

.wizard-preview article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.wizard-preview span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
}

.wizard-preview h2 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.wizard-preview p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.site-footer {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

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

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

@media (max-width: 900px) {
    .hero,
    .landing-hero,
    .section-band--split,
    .landing-band--split,
    .config-hero,
    .configurator,
    .wizard-shell,
    .privacy-request-shell {
        grid-template-columns: 1fr;
    }

    .landing-band--split,
    .config-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero h1,
    .landing-hero h1,
    .config-hero h1 {
        font-size: 2.2rem;
    }

    .feature-grid,
    .price-grid,
    .wizard-preview,
    .product-row,
    .product-row--compact {
        grid-template-columns: 1fr 1fr;
    }

    .section-band--setup {
        align-items: flex-start;
        flex-direction: column;
    }

    .wizard-steps {
        position: static;
    }
}

@media (max-width: 620px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .brand img {
        width: 128px;
    }

    .topnav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .feature-grid,
    .price-grid,
    .wizard-preview,
    .product-row,
    .product-row--compact,
    .mock-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .landing-hero {
        padding-top: 28px;
    }

    .dashboard-stack {
        min-height: 560px;
    }

    .mock-window,
    .mock-window--main,
    .mock-window--float {
        position: relative;
        inset: auto;
        margin-bottom: 14px;
    }

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

    .wave-shape {
        display: none;
    }
}
