:root {
    --bg: #f5f7fa;
    --surface: #ffffff;
    --surface-alt: #f0f3f8;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #d1d5db;
    --accent: #0a7f5a;
    --accent-strong: #065f46;
    --danger: #b42318;
    --warn: #b54708;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

.container {
    width: min(1200px, 94vw);
    margin: 0 auto;
}

.page-shell {
    padding: 24px 0 48px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 24;
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid #d7deea;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(17, 35, 56, 0.08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 76px;
    padding: 10px 0;
}

.topbar__left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar__right form {
    margin: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    border-radius: 11px;
    padding: 7px 10px;
    border: 1px solid #c9d8e9;
    background: linear-gradient(150deg, #f7fbff 0%, #eef5ff 100%);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #13283f;
}

.topbar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #5d6e85;
}

.topbar__nav a:hover {
    color: #183758;
    background: #edf4ff;
    border-color: #d2dff0;
}

.topbar__nav a.is-active {
    color: #0d6650;
    background: #e8f7f2;
    border-color: #c0e7da;
}

.topbar-store-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-store-switch__label {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5d6f86;
    white-space: nowrap;
}

.topbar-store-switch select {
    width: auto;
    min-width: 180px;
    max-width: 240px;
    padding: 8px 10px;
    border-color: #c5d4e6;
    background: #ffffff;
}

.topbar-subscription {
    font-size: 11px;
    font-weight: 600;
    color: #5d6f86;
    text-decoration: none;
    white-space: nowrap;
}

.topbar-subscription:hover {
    color: #1b4f7f;
    text-decoration: underline;
}

.topbar-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c5d4e6;
    border-radius: 999px;
    background: #f7fbff;
    padding: 4px 10px 4px 4px;
    min-height: 38px;
    max-width: 320px;
}

.topbar-account__avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #143553;
    border: 1px solid #8fc0e1;
    background: linear-gradient(145deg, #9ad8ff 0%, #c9eefc 100%);
}

.topbar-account__meta {
    min-width: 0;
    display: grid;
    line-height: 1.1;
}

.topbar-account__meta strong {
    font-size: 13px;
    color: #1d3048;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-account__meta small {
    margin-top: 2px;
    font-size: 11px;
    color: #5f7289;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

h1,
h2,
h3 {
    margin-top: 0;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

label {
    font-size: 14px;
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    font: inherit;
    background: #fff;
    color: var(--text);
}

textarea {
    min-height: 120px;
}

.form-help {
    margin: 0;
    font-size: 12px;
    color: #5f6f84;
}

.advanced-block {
    border: 1px solid #d4dcea;
    border-radius: 10px;
    padding: 10px;
    margin: 12px 0;
    background: #f9fbff;
}

.advanced-block > summary {
    cursor: pointer;
    font-weight: 600;
    color: #1c3552;
}

.btn {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}

.btn--compact {
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.2;
}

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

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

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.notice {
    border: 1px solid var(--border);
    border-left-width: 4px;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: var(--surface);
}

.notice--success {
    border-left-color: var(--accent);
}

.notice--error {
    border-left-color: var(--danger);
}

.notice--info {
    border-left-color: var(--warn);
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid var(--border);
    background: var(--surface-alt);
}

.plain-list {
    margin: 0;
    padding-left: 18px;
}

.plain-list li + li {
    margin-top: 6px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd7e8;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    background: #f4f8ff;
    color: #28425f;
}

.hero {
    padding: 48px 0;
}

.hero p {
    max-width: 70ch;
}

footer {
    margin-top: 24px;
    color: var(--muted);
}

.layout-marketing {
    background:
        radial-gradient(1200px 420px at 8% -5%, #d8f3ea 0%, rgba(216, 243, 234, 0) 65%),
        radial-gradient(900px 380px at 92% 0%, #e0ecff 0%, rgba(224, 236, 255, 0) 62%),
        #eef2f7;
}

.layout-marketing,
.layout-marketing .merch-sales,
.layout-marketing .merch-sales-header,
.layout-marketing .marketing-footer {
    font-family: "IBM Plex Sans", "Manrope", "Segoe UI", sans-serif;
}

.layout-marketing[data-page="landing"] {
    padding-bottom: 92px;
}

.merch-sales {
    color: #102033;
}

.merch-page h1 {
    margin: 0 0 0.62rem;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    line-height: 1.12;
    color: #102033;
}

.merch-page-hero {
    padding-top: 3.4rem;
    padding-bottom: 2.2rem;
}

.merch-page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    align-items: start;
}

.merch-sales .container,
.merch-sales-header .container,
.marketing-footer .container {
    width: min(1240px, calc(100% - 2rem));
}

.merch-sales-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid #c9d5e4;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.merch-sales-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.merch-sales-brand {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #102033;
}

.merch-sales-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.merch-sales-nav a {
    color: #4a5a70;
    border-radius: 10px;
    padding: 0.4rem 0.62rem;
    font-size: 0.92rem;
}

.merch-sales-nav a:hover {
    background: #eaf3ff;
    color: #123860;
}

.merch-sales-nav a.is-active {
    background: #e8f7f2;
    color: #0d6a55;
    border: 1px solid #bfe5d8;
}

.merch-sales-header__actions {
    display: flex;
    gap: 0.55rem;
}

.merch-sales-hero {
    padding: 4.4rem 0 2.9rem;
}

.merch-sales-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    align-items: start;
}

.merch-sales-kicker {
    margin: 0 0 0.8rem;
    color: #0b7a61;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.79rem;
    font-weight: 700;
}

.merch-sales-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.1;
    max-width: 18ch;
}

.merch-sales-lead {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 1.4vw, 1.19rem);
    line-height: 1.55;
    max-width: 66ch;
    color: #33445d;
}

.merch-sales-checks {
    margin: 0 0 1.2rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.42rem;
}

.merch-sales-checks li {
    color: #1f2f42;
}

.merch-sales-checks--compact {
    gap: 0.34rem;
    margin-bottom: 0;
}

.merch-sales-hero__actions {
    margin-bottom: 1rem;
}

.merch-sales-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.merch-sales-trust-strip span {
    border: 1px solid #c9d5e4;
    border-radius: 999px;
    padding: 0.36rem 0.56rem;
    background: #ffffff;
    font-size: 0.79rem;
    text-align: center;
    color: #37506c;
}

.merch-sales-hero__panel {
    background: #ffffff;
    border: 1px solid #cfdae8;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(16, 32, 51, 0.06);
}

.merch-sales-hero__panel h2 {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
}

.merch-sales-hero-visual {
    margin: 0 0 0.8rem;
}

.merch-sales-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #d6e1ee;
}

.merch-sales-kpi-grid {
    display: grid;
    gap: 0.62rem;
}

.merch-sales-kpi-card {
    border: 1px solid #d8e2ee;
    background: linear-gradient(180deg, #f6fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 0.72rem;
}

.merch-sales-kpi-card__range {
    margin: 0 0 0.35rem;
    color: #0a6e57;
    font-size: 1.18rem;
    font-weight: 700;
}

.merch-sales-kpi-card h3 {
    margin: 0 0 0.32rem;
    font-size: 0.97rem;
}

.merch-sales-kpi-card p {
    margin: 0;
    font-size: 0.89rem;
    color: #44576f;
}

.merch-sales-meta-note {
    margin: 0.8rem 0 0;
    color: #5f6f84;
    font-size: 0.82rem;
}

.merch-sales-section {
    padding: 3.1rem 0;
}

.merch-sales-section h2 {
    margin: 0 0 0.62rem;
    font-size: clamp(1.56rem, 3vw, 2.3rem);
}

.merch-sales-section__lead {
    margin: 0 0 1.1rem;
    color: #4a5d74;
    max-width: 76ch;
}

.merch-sales-section--problem {
    background: #f8fbff;
    border-top: 1px solid #dde6f2;
    border-bottom: 1px solid #dde6f2;
}

.merch-sales-problem-grid,
.merch-sales-feature-grid,
.merch-sales-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.merch-sales-card {
    background: #ffffff;
    border: 1px solid #cfdae8;
    border-radius: 14px;
    padding: 0.88rem;
}

.merch-sales-card p {
    margin: 0;
    color: #42566f;
}

.merch-sales-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.03rem;
    color: #112338;
}

.merch-sales-card--problem {
    border-left: 4px solid #9eb5d0;
}

.merch-sales-card__outcome {
    margin-top: 0.62rem;
    color: #0d6a55;
    font-weight: 600;
}

.merch-sales-card--feature {
    display: grid;
    gap: 0.52rem;
}

.merch-sales-feature-icon {
    width: 48px;
    height: 48px;
}

.merch-sales-cta-band {
    margin-top: 1rem;
    border: 1px solid #b8dcca;
    border-radius: 14px;
    background: linear-gradient(130deg, #ebf9f4 0%, #f3fbf8 52%, #ffffff 100%);
    padding: 0.95rem;
}

.merch-sales-cta-band h3 {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
}

.merch-sales-cta-band p {
    margin: 0 0 0.65rem;
    color: #3b526a;
}

.merch-sales-section--steps {
    background: #ffffff;
    border-top: 1px solid #dbe4f1;
    border-bottom: 1px solid #dbe4f1;
}

.merch-sales-steps {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.merch-sales-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    border: 1px solid #cfdae8;
    border-radius: 14px;
    background: #f9fcff;
    padding: 0.82rem;
}

.merch-sales-step__index {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(140deg, #0f8f72 0%, #0a6e57 100%);
    font-weight: 700;
}

.merch-sales-step h3 {
    margin: 0 0 0.32rem;
    font-size: 1rem;
}

.merch-sales-step p {
    margin: 0;
    color: #4b6179;
}

.merch-sales-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
}

.merch-sales-card--screenshot {
    display: grid;
    gap: 0.45rem;
}

.merch-sales-screenshot-placeholder {
    min-height: 185px;
    border: 1px dashed #9fb5ce;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f8ff;
    color: #486178;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem;
}

.merch-sales-visual-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 0.82rem;
    align-items: start;
}

.merch-sales-visual-frame {
    margin: 0;
}

.merch-sales-visual-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid #cfdae8;
    box-shadow: 0 14px 30px rgba(16, 32, 51, 0.12);
}

.merch-sales-card--visual-points {
    display: grid;
    gap: 0.52rem;
}

.merch-sales-card--visual-points h3 {
    margin: 0;
}

.merch-sales-before-after {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.82rem;
    align-items: center;
}

.merch-page-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
}

.merch-page-step-card {
    display: grid;
    gap: 0.55rem;
}

.merch-page-step-card__index {
    margin: 0;
    color: #0d6a55;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merch-page-step-card h2,
.merch-page-faq-grid h2 {
    margin: 0;
    font-size: 1.08rem;
}

.merch-page-step-card p {
    margin: 0;
}

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

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

.merch-sales-section--trust {
    background: #f6f9fe;
    border-top: 1px solid #dde6f2;
    border-bottom: 1px solid #dde6f2;
}

.merch-sales-logo-strip {
    margin-top: 0.78rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.merch-sales-logo-strip span {
    border: 1px dashed #c1d2e5;
    border-radius: 10px;
    padding: 0.42rem 0.52rem;
    background: #ffffff;
    color: #34506f;
    text-align: center;
    font-size: 0.79rem;
    font-weight: 600;
}

.security-snippet {
    border: 1px solid #c8d7e9;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.security-snippet h2 {
    margin: 0 0 0.38rem;
    font-size: 1.2rem;
}

.security-snippet__intro {
    margin: 0 0 0.6rem;
    color: #4a5e77;
}

.security-snippet__list {
    margin: 0;
    padding-left: 1.12rem;
    display: grid;
    gap: 0.35rem;
}

.security-snippet__list li {
    color: #25384e;
}

.merch-sales-compare-wrap {
    border: 1px solid #cfdae8;
    border-radius: 14px;
    overflow: auto;
    background: #ffffff;
}

.merch-sales-compare-table {
    margin: 0;
    min-width: 720px;
}

.merch-sales-compare-table th {
    background: #eff5ff;
    color: #1c3350;
    font-weight: 700;
}

.merch-sales-compare-table td {
    color: #324962;
}

.merch-sales-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.merch-sales-card--pricing {
    display: grid;
    gap: 0.7rem;
}

.merch-sales-card--pricing.is-featured {
    border-color: #7fd1b8;
    box-shadow: 0 0 0 1px #d3f3e8 inset;
    background: linear-gradient(180deg, #f4fffb 0%, #ffffff 100%);
}

.merch-sales-pricing-badge {
    margin: 0;
    width: fit-content;
    padding: 0.2rem 0.52rem;
    border-radius: 999px;
    background: #d9f6ec;
    color: #0b6f58;
    font-size: 0.78rem;
    font-weight: 700;
}

.merch-sales-pricing-price {
    margin: 0;
    font-size: 1.76rem;
    font-weight: 700;
    line-height: 1.1;
}

.merch-sales-pricing-price span {
    font-size: 0.95rem;
    color: #5f7083;
    font-weight: 500;
}

.merch-sales-pricing-meta {
    margin: 0.9rem 0 0;
    color: #4d6078;
}

.merch-sales-card--faq h3 {
    font-size: 1rem;
}

.merch-sales-section--final {
    padding-top: 2.6rem;
    padding-bottom: 3.2rem;
}

.merch-sales-final-cta {
    border: 1px solid #c4d5e7;
    border-radius: 16px;
    background: linear-gradient(145deg, #10253d 0%, #183f62 56%, #1f5677 100%);
    color: #ffffff;
    padding: 1.2rem;
}

.merch-sales-final-cta h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.merch-sales-final-cta p {
    margin: 0 0 0.82rem;
    color: #d6e6f8;
}

.merch-sales-final-cta .btn {
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.merch-sales-final-cta .btn--primary {
    border-color: #22b38f;
    background: #0f8f72;
}

.merch-sales-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    border-top: 1px solid #c5d4e6;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.merch-sales-sticky__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.62rem 0;
}

.merch-sales-sticky p {
    margin: 0;
    color: #1d3248;
    font-weight: 600;
}

.marketing-footer {
    border-top: 1px solid #c9d5e4;
    background: #ffffff;
    margin-top: 0;
    color: #5d6e82;
}

.marketing-footer__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.marketing-footer__inner p {
    margin: 0.18rem 0 0;
}

.marketing-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.marketing-footer__nav a {
    color: #4f6279;
    padding: 0.28rem 0.52rem;
    border-radius: 8px;
}

.marketing-footer__nav a:hover {
    background: #edf4ff;
    color: #2b4360;
}

.merch-security-page {
    padding-top: 2rem;
}

.merch-security-grid {
    margin-top: 1rem;
}

@media (max-width: 980px) {
    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: 0;
        padding: 12px 0;
    }

    .topbar__left,
    .topbar__right {
        width: 100%;
    }

    .topbar__right {
        justify-content: flex-start;
    }

    .topbar-store-switch {
        width: 100%;
        max-width: 420px;
        display: flex;
    }

    .topbar-store-switch select {
        width: auto;
        min-width: 0;
        max-width: none;
        flex: 1 1 auto;
    }
}

@media (max-width: 680px) {
    .topbar__nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-account {
        max-width: 100%;
    }
}

@media (max-width: 1080px) {
    .merch-sales-hero__grid,
    .merch-page-hero__grid,
    .merch-page-steps-grid,
    .merch-sales-problem-grid,
    .merch-sales-feature-grid,
    .merch-sales-faq-grid,
    .merch-page-faq-grid,
    .merch-page-security-grid,
    .merch-sales-screenshot-grid,
    .merch-sales-visual-grid,
    .merch-sales-before-after {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 820px) {
    .merch-sales-header {
        position: static;
    }

    .merch-sales-header__inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .merch-sales-nav {
        justify-content: center;
    }

    .merch-sales-header__actions {
        width: 100%;
        justify-content: center;
    }

    .merch-sales-pricing-grid {
        grid-template-columns: 1fr;
    }

    .merch-sales-sticky__inner,
    .marketing-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .merch-sales-sticky p {
        font-size: 0.92rem;
    }
}

@media (max-width: 600px) {
    .layout-marketing[data-page="landing"] {
        padding-bottom: 122px;
    }

    .merch-sales-hero {
        padding-top: 2.2rem;
    }

    .merch-sales-section {
        padding: 2.1rem 0;
    }

    .merch-sales-trust-strip {
        grid-template-columns: 1fr;
    }

    .merch-sales-logo-strip {
        grid-template-columns: 1fr;
    }

    .merch-sales-screenshot-placeholder {
        min-height: 145px;
    }

    .merch-sales-sticky__inner {
        min-height: 96px;
    }
}
