:root {
    --bg-top: #f4eee2;
    --bg-bottom: #d8e3de;
    --ink-strong: #102028;
    --ink: #243843;
    --ink-soft: #48616d;
    --surface: #fffdf8;
    --surface-strong: #fff8ee;
    --line: #d1ddd8;
    --accent: #e05b2e;
    --accent-strong: #b73d16;
    --accent-cool: #0b8f8f;
    --accent-warm: #f0a92f;
    --shadow: 0 14px 36px rgba(16, 32, 40, 0.14);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --content-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Work Sans", "Trebuchet MS", sans-serif;
    line-height: 1.55;
    background:
        radial-gradient(circle at 12% -6%, rgba(240, 169, 47, 0.26), transparent 42%),
        radial-gradient(circle at 88% -16%, rgba(11, 143, 143, 0.2), transparent 45%),
        linear-gradient(165deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(16, 32, 40, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 40, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
    color: var(--ink-strong);
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(249, 245, 236, 0.8);
    border-bottom: 1px solid rgba(16, 32, 40, 0.1);
}

.site-header-inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.03rem;
    color: var(--ink-strong);
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background:
        conic-gradient(from 90deg, #e05b2e, #f0a92f, #0b8f8f, #e05b2e);
    box-shadow: 0 8px 20px rgba(16, 32, 40, 0.22);
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-nav-link {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--ink-strong);
    background: rgba(11, 143, 143, 0.12);
}

.nav-cta {
    margin-left: 10px;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 10px;
    background: rgba(16, 32, 40, 0.1);
    color: var(--ink-strong);
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    cursor: pointer;
}

.hero {
    padding: 78px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid rgba(16, 32, 40, 0.14);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

h1.display {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.03;
    max-width: 16ch;
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--ink-soft);
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.96rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fffaf5;
    box-shadow: 0 12px 24px rgba(183, 61, 22, 0.25);
}

.button-secondary {
    background: rgba(16, 32, 40, 0.06);
    color: var(--ink-strong);
    border-color: rgba(16, 32, 40, 0.12);
}

.button-ghost {
    background: transparent;
    color: var(--ink-strong);
    border-color: rgba(16, 32, 40, 0.2);
}

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

.hero-stat {
    border: 1px solid rgba(16, 32, 40, 0.1);
    background: rgba(255, 253, 248, 0.82);
    border-radius: 14px;
    padding: 12px;
}

.hero-stat strong {
    display: block;
    font-size: 1.2rem;
    color: var(--ink-strong);
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.hero-visual {
    border-radius: var(--radius-xl);
    background: linear-gradient(150deg, #fff9ef, #f1ece1);
    border: 1px solid rgba(16, 32, 40, 0.11);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.hero-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(11, 143, 143, 0.28), transparent 72%);
    right: -70px;
    top: -70px;
    animation: float-blob 7s ease-in-out infinite;
}

@keyframes float-blob {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-12px, 10px);
    }
}

.mock-mosaic {
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(16, 32, 40, 0.12);
    background:
        linear-gradient(130deg, rgba(16, 32, 40, 0.92), rgba(16, 32, 40, 0.44)),
        repeating-linear-gradient(
            90deg,
            #d84f30 0,
            #d84f30 10%,
            #f0a92f 10%,
            #f0a92f 20%,
            #0b8f8f 20%,
            #0b8f8f 30%,
            #f4e1b8 30%,
            #f4e1b8 40%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(16, 32, 40, 0.25) 0,
            rgba(16, 32, 40, 0.25) 8%,
            rgba(255, 255, 255, 0) 8%,
            rgba(255, 255, 255, 0) 16%
        );
    background-size: auto, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

.mock-mosaic::before {
    content: "BEFORE / AFTER";
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fef8ef;
    background: rgba(16, 32, 40, 0.58);
    border-radius: 999px;
}

.section {
    padding: 52px 0;
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 14px;
}

.section-intro {
    max-width: 64ch;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 14px;
}

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

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

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

.card {
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(16, 32, 40, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 10px 24px rgba(16, 32, 40, 0.06);
}

.card h3 {
    font-size: 1.23rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--ink-soft);
}

.path-card {
    position: relative;
    overflow: hidden;
}

.path-card::after {
    content: "";
    position: absolute;
    inset: auto -26px -34px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 91, 46, 0.2), transparent 68%);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 40, 0.13);
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.54);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(11, 143, 143, 0.16);
    color: var(--ink-strong);
    font-weight: 700;
    margin-bottom: 10px;
}

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

.metric {
    border-radius: var(--radius-md);
    padding: 14px;
    border: 1px dashed rgba(16, 32, 40, 0.2);
    background: rgba(255, 248, 236, 0.64);
}

.metric strong {
    display: block;
    font-size: 1.35rem;
    color: var(--ink-strong);
}

.metric span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

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

.plan {
    background: rgba(255, 253, 248, 0.95);
    border: 1px solid rgba(16, 32, 40, 0.13);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
}

.plan.featured {
    border: 2px solid rgba(224, 91, 46, 0.48);
    box-shadow: 0 18px 34px rgba(183, 61, 22, 0.18);
    position: relative;
}

.plan.featured::before {
    content: "Most popular";
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 999px;
}

.plan-name {
    font-size: 1.35rem;
    margin-top: 4px;
}

.plan-price {
    font-size: 2rem;
    color: var(--ink-strong);
    font-weight: 700;
}

.plan-price small {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.plan-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 32, 40, 0.12);
    background: rgba(255, 253, 248, 0.93);
}

.comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(16, 32, 40, 0.1);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
    color: var(--ink-strong);
    font-size: 0.94rem;
}

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

.pricing-table-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 24px;
    border: 1px solid rgba(16, 32, 40, 0.18);
    background:
        radial-gradient(circle at 8% 0%, rgba(240, 169, 47, 0.16), transparent 38%),
        radial-gradient(circle at 92% 12%, rgba(11, 143, 143, 0.14), transparent 40%),
        linear-gradient(165deg, rgba(255, 252, 246, 0.98), rgba(247, 241, 231, 0.96));
    box-shadow: 0 24px 46px rgba(16, 32, 40, 0.16);
}

.pricing-table {
    min-width: 1080px;
    table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
    width: 25%;
    padding: 15px 16px;
}

.pricing-table thead th {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.65);
}

.pricing-table thead th:first-child {
    border-top-left-radius: 18px;
}

.pricing-table thead th:last-child {
    border-top-right-radius: 18px;
}

.pricing-table td {
    font-size: 0.94rem;
    line-height: 1.42;
}

.pricing-table td:first-child {
    font-weight: 700;
    color: var(--ink-strong);
}

.pricing-table tbody tr:nth-child(odd) td:not(.paid-column):not(:last-child) {
    background: rgba(255, 255, 255, 0.44);
}

.pricing-table tbody tr:hover td:not(.paid-column):not(:last-child) {
    background: rgba(240, 169, 47, 0.12);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(202, 216, 224, 0.16) 0,
            rgba(202, 216, 224, 0.16) 8px,
            rgba(255, 255, 255, 0.5) 8px,
            rgba(255, 255, 255, 0.5) 16px
        );
    color: var(--ink-soft);
}

.pricing-table .paid-column {
    background: linear-gradient(180deg, rgba(255, 236, 212, 0.98), rgba(255, 248, 236, 0.99));
    border-left: 2px solid rgba(224, 91, 46, 0.62);
    border-right: 2px solid rgba(224, 91, 46, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.pricing-table .paid-column-top {
    border-top: 2px solid rgba(224, 91, 46, 0.62);
    position: relative;
}

.pricing-table .paid-column-top::after {
    content: "Most popular";
    position: absolute;
    top: 8px;
    right: 10px;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(224, 91, 46, 0.95);
    color: #fff;
}

.pricing-table .paid-column-bottom {
    border-bottom: 2px solid rgba(224, 91, 46, 0.62) !important;
}

.size-help {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-left: 6px;
    border-radius: 50%;
    border: 1px solid rgba(16, 32, 40, 0.24);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 222, 0.94));
    color: var(--ink-strong);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    cursor: help;
    box-shadow: 0 7px 14px rgba(16, 32, 40, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.size-help::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    transform: translate(-50%, 6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 7px solid rgba(16, 32, 40, 0.94);
    z-index: 11;
}

.size-help::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    top: calc(100% + 11px);
    transform: translate(-50%, 6px);
    min-width: 230px;
    max-width: 270px;
    white-space: pre-line;
    text-align: left;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(16, 32, 40, 0.95);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.79rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    box-shadow: 0 16px 28px rgba(16, 32, 40, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 10;
}

.size-help:hover,
.size-help:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(16, 32, 40, 0.2);
}

.size-help:hover::before,
.size-help:hover::after,
.size-help:focus-visible::before,
.size-help:focus-visible::after,
.size-help:focus::before,
.size-help:focus::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.size-help:focus-visible {
    outline: 2px solid rgba(11, 143, 143, 0.68);
    outline-offset: 2px;
}

.notice {
    border-left: 4px solid var(--accent-cool);
    background: rgba(11, 143, 143, 0.09);
    padding: 14px 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--ink);
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
    align-items: start;
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(16, 32, 40, 0.12);
    border-radius: var(--radius-lg);
    padding: 14px;
}

.timeline-item strong {
    font-size: 0.95rem;
    color: var(--ink-strong);
}

.timeline-item p {
    color: var(--ink-soft);
}

.timeline-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(240, 169, 47, 0.2);
    font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
    font-size: 1.05rem;
    color: var(--ink-strong);
    height: 42px;
}

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

.before-after {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 32, 40, 0.12);
    background: rgba(255, 253, 248, 0.95);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.before-after-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 40, 0.16);
    --split: 50%;
}

.after-layer,
.before-layer {
    position: absolute;
    inset: 0;
}

.after-layer {
    background:
        linear-gradient(135deg, rgba(16, 32, 40, 0.8), rgba(16, 32, 40, 0.38)),
        radial-gradient(circle at 20% 30%, rgba(224, 91, 46, 0.9), transparent 48%),
        radial-gradient(circle at 78% 68%, rgba(11, 143, 143, 0.8), transparent 44%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 246, 226, 0.94) 0,
            rgba(255, 246, 226, 0.94) 9%,
            rgba(230, 95, 43, 0.72) 9%,
            rgba(230, 95, 43, 0.72) 18%,
            rgba(11, 143, 143, 0.72) 18%,
            rgba(11, 143, 143, 0.72) 27%
        );
}

.before-layer {
    clip-path: inset(0 calc(100% - var(--split)) 0 0);
    background:
        linear-gradient(145deg, #f0d9ad, #f4c58f 43%, #a24f35),
        radial-gradient(circle at 30% 36%, rgba(255, 246, 226, 0.6), transparent 40%);
}

.before-after-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    width: 2px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 1px rgba(16, 32, 40, 0.25);
    transform: translateX(-1px);
}

.before-after-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(16, 32, 40, 0.22);
    transform: translate(-50%, -50%);
}

.before-after input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.before-after-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.86rem;
    color: var(--ink-soft);
}

.kicker {
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 32, 40, 0.14);
    background: rgba(255, 253, 248, 0.9);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--ink-strong);
}

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

.faq-item p {
    padding: 0 16px 14px;
    color: var(--ink-soft);
}

.split-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.callout {
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(16, 32, 40, 0.12);
    background: rgba(255, 253, 248, 0.92);
}

.callout strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-strong);
}

.footer {
    margin-top: 56px;
    border-top: 1px solid rgba(16, 32, 40, 0.14);
    background: rgba(255, 251, 243, 0.84);
}

.footer-inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.footer-links a:hover {
    color: var(--ink-strong);
}

.center-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.93rem;
}

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

.form-grid .full {
    grid-column: 1 / -1;
}

.input,
.textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(16, 32, 40, 0.2);
    padding: 11px 12px;
    font: inherit;
    color: var(--ink-strong);
    background: rgba(255, 255, 255, 0.88);
}

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

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .site-nav {
        margin-left: auto;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav-list {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        min-width: 210px;
        background: rgba(255, 253, 248, 0.98);
        border: 1px solid rgba(16, 32, 40, 0.12);
        border-radius: 12px;
        padding: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open .site-nav-list {
        display: flex;
    }

    .site-nav-link {
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .grid-3,
    .grid-2,
    .pricing-grid,
    .split-callout,
    .before-after-grid,
    .form-grid,
    .spec-highlight {
        grid-template-columns: 1fr;
    }

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

    .size-help::after {
        min-width: 200px;
        max-width: 220px;
        left: 0;
        transform: translate(0, 6px);
    }

    .size-help::before {
        left: 10px;
        transform: translate(0, 6px);
    }

    .size-help:hover::before,
    .size-help:hover::after,
    .size-help:focus-visible::before,
    .size-help:focus-visible::after,
    .size-help:focus::before,
    .size-help:focus::after {
        transform: translate(0, 0);
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .main-container,
    .site-header-inner,
    .footer-inner {
        width: min(var(--content-width), calc(100% - 24px));
    }

    .hero {
        padding-top: 54px;
    }

    .section {
        padding: 42px 0;
    }

    .plan,
    .card,
    .timeline-item,
    .callout,
    .before-after {
        padding: 16px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}
