:root,
[data-theme='light'] {
  --font-display: 'Cabinet Grotesk', 'Arial', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.7rem, 1.1rem + 5vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --color-bg: #f7f3e8;
  --color-surface: #fffaf0;
  --color-surface-2: #eee4d0;
  --color-surface-offset: #e8ddc6;
  --color-border: #d1c3aa;
  --color-divider: #ddcfb7;
  --color-text: #211d16;
  --color-text-muted: #756b5d;
  --color-text-faint: #a99d8c;
  --color-text-inverse: #fff8ea;
  --color-primary: #09645f;
  --color-primary-hover: #074c49;
  --color-primary-active: #073b39;
  --color-primary-highlight: #d6e7df;
  --color-warning: #9b4b18;
  --color-success: #3f7428;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgb(50 37 19 / 0.08);
  --shadow-md: 0 10px 26px rgb(50 37 19 / 0.11);
  --shadow-lg: 0 24px 64px rgb(50 37 19 / 0.16);
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

[data-theme='dark'] {
  --color-bg: #15130f;
  --color-surface: #1f1b15;
  --color-surface-2: #2a241b;
  --color-surface-offset: #30291f;
  --color-border: #493f31;
  --color-divider: #352e24;
  --color-text: #efe6d5;
  --color-text-muted: #b6aa98;
  --color-text-faint: #746a5c;
  --color-text-inverse: #15130f;
  --color-primary: #83c7bd;
  --color-primary-hover: #a0dad1;
  --color-primary-active: #c0efe8;
  --color-primary-highlight: #203b38;
  --color-warning: #df9460;
  --color-success: #9ed37b;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3);
  --shadow-md: 0 10px 30px rgb(0 0 0 / 0.35);
  --shadow-lg: 0 24px 70px rgb(0 0 0 / 0.5);
}

body {
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-2) var(--space-4);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  background: color-mix(in oklab, var(--color-bg), transparent 8%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - var(--space-8), var(--content-wide));
  min-height: 72px;
  margin-inline: auto;
  gap: var(--space-4);
}

.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.nav-links {
  gap: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

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

.nav-actions {
  gap: var(--space-2);
}

.theme-toggle {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-full);
  background: var(--color-surface);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-sm);
}

.button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-secondary {
  background: transparent;
  color: var(--color-text);
}

.button-secondary:hover {
  background: var(--color-primary-highlight);
  color: var(--color-text);
}

.button-small {
  min-height: 40px;
  padding: var(--space-2) var(--space-4);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - var(--space-8), var(--content-wide));
  min-height: calc(100dvh - 72px);
  margin-inline: auto;
  gap: var(--space-12);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.hero-copy {
  align-self: center;
}

.eyebrow,
.section-kicker,
.package-label {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 58ch;
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-stats div {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface), transparent 15%);
  padding: var(--space-4);
}

.hero-stats dt {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats dd {
  margin-top: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.mockup-frame {
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, color-mix(in oklab, var(--color-surface), white 16%), var(--color-surface-2)),
    var(--color-surface);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--space-3), 3vw, var(--space-6));
}

.mockup-frame img,
.proof-strip figure img {
  border-radius: var(--radius-lg);
}

.offer-card {
  position: static;
  width: min(220px, 50vw);
  margin: var(--space-4) 0 0 auto;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 85%);
  border-radius: var(--radius-xl);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}

.offer-card span,
.offer-card small {
  display: block;
  color: color-mix(in oklab, var(--color-bg), transparent 22%);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin-block: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.section-tight,
.packages,
.how,
.poster-section,
.targets,
.proof-strip,
.final-cta {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.problem h2,
.section-heading h2,
.poster-copy h2,
.target-copy h2,
.proof-strip h2,
.final-cta h2 {
  max-width: 860px;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.problem-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
  color: var(--color-text-muted);
}

.packages {
  border-block: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
}

.section-heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.section-heading.compact {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  gap: var(--space-4);
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  background:
    linear-gradient(180deg, var(--color-primary-highlight), var(--color-surface)),
    var(--color-surface);
  box-shadow: var(--shadow-md);
}

.price-card h3 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}

.price-card p:not(.package-label) {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-6) var(--space-2);
}

.was {
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -0.05em;
}

.launch-price {
  display: inline-flex;
  align-self: flex-start;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary) !important;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: var(--space-2) var(--space-3);
}

.price-card ul {
  display: grid;
  gap: var(--space-3);
  margin-top: auto;
  padding-left: var(--space-5);
  color: var(--color-text-muted);
}

.price-card li::marker {
  color: var(--color-primary);
}

.pricing-note {
  max-width: 760px;
  margin-top: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.platforms {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.platforms .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-text-muted);
}

.platform-grid {
  display: grid;
  gap: var(--space-4);
}

.platform-card {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.platform-card h3 {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.platform-card p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.dark-card {
  background:
    radial-gradient(circle at 70% 30%, color-mix(in oklab, #00b67a, transparent 50%), transparent 36%),
    var(--color-text);
  color: var(--color-bg);
}

.dark-card p {
  color: color-mix(in oklab, var(--color-bg), transparent 24%);
}

.platform-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}

.trustpilot-icon {
  background: #00b67a;
  color: #ffffff;
}

.dual-icon {
  background: var(--color-text);
  color: var(--color-bg);
}

.card-showcase {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.showcase-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #29aee8;
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-4), 5vw, var(--space-8));
}

.sample-card {
  position: absolute;
  width: min(58%, 315px);
  aspect-ratio: 0.68;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgb(0 0 0 / 0.2);
}

.back-card {
  top: 12%;
  right: 10%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: var(--space-2);
  background: linear-gradient(145deg, #4e7df2, #3f89db);
  color: #ffffff;
  padding: var(--space-6);
  text-align: center;
}

.trust-back {
  background: linear-gradient(145deg, #151a35, #00b67a);
}

.nfc-waves {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: rgb(255 255 255 / 0.8);
  font-weight: 800;
  transform: rotate(-20deg);
}

.back-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1;
}

.back-card small {
  color: rgb(255 255 255 / 0.8);
}

.front-card {
  left: 8%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: #ffffff;
  color: #111111;
  padding: var(--space-5);
  text-align: center;
}

.platform-word {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.google-word {
  color: #4285f4;
}

.big-g {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.trust-front {
  background: linear-gradient(160deg, #151a35, #00b67a);
  color: #ffffff;
}

.trust-star {
  color: #00b67a;
  font-size: 5rem;
  line-height: 0.8;
}

.front-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.front-card p {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
}

.mini-stars {
  color: #fbbc05;
  letter-spacing: 0.08em;
}

.trust-stars {
  color: #20d698;
}

.mini-qr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 92px;
  aspect-ratio: 1;
  gap: 3px;
  border: 7px solid #ffffff;
  background: #ffffff;
}

.mini-qr span {
  background: #111111;
}

.trust-front .mini-qr span {
  background: #111111;
}

.mini-qr span:nth-child(2),
.mini-qr span:nth-child(5),
.mini-qr span:nth-child(9),
.mini-qr span:nth-child(12),
.mini-qr span:nth-child(14),
.mini-qr span:nth-child(18),
.mini-qr span:nth-child(20),
.mini-qr span:nth-child(23),
.mini-qr span:nth-child(27),
.mini-qr span:nth-child(31),
.mini-qr span:nth-child(34) {
  background: transparent;
}

.front-card small {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.style-label {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-6);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.88);
  color: #245fa7;
  font-weight: 800;
  padding: var(--space-2) var(--space-3);
}

.trustpilot-panel .style-label {
  background: rgb(21 26 53 / 0.92);
  color: #ffffff;
}

.steps {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-10);
  list-style: none;
}

.steps li {
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  padding-block: var(--space-6);
}

.steps span {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
}

.steps h3 {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.steps p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.poster-section {
  display: grid;
  align-items: center;
  gap: var(--space-10);
}

.poster-copy p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.poster-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.poster-points li {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
}

.poster-mockup {
  display: grid;
  justify-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 15%, color-mix(in oklab, var(--color-primary), transparent 74%), transparent 32%),
    linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-5), 5vw, var(--space-12));
}

.poster-paper {
  width: min(100%, 360px);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 82%);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.poster-tag {
  align-self: flex-start;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-3);
  text-transform: uppercase;
}

.poster-paper h3 {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.poster-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.qr-demo {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(150px, 44vw);
  aspect-ratio: 1;
  gap: 5px;
  border: 10px solid var(--color-surface);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--color-text), transparent 84%);
}

.qr-demo span {
  border-radius: 2px;
  background: var(--color-text);
}

.qr-demo span:nth-child(2),
.qr-demo span:nth-child(6),
.qr-demo span:nth-child(8),
.qr-demo span:nth-child(12),
.qr-demo span:nth-child(15),
.qr-demo span:nth-child(17),
.qr-demo span:nth-child(20),
.qr-demo span:nth-child(23),
.qr-demo span:nth-child(27),
.qr-demo span:nth-child(30),
.qr-demo span:nth-child(34) {
  background: color-mix(in oklab, var(--color-primary), var(--color-bg) 30%);
}

.poster-paper strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.poster-paper small {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.targets {
  display: grid;
  align-items: start;
  gap: var(--space-10);
  border-radius: var(--radius-xl);
  background: var(--color-text);
  color: var(--color-bg);
  padding: clamp(var(--space-8), 6vw, var(--space-16));
}

.targets .eyebrow {
  color: color-mix(in oklab, var(--color-primary), white 45%);
}

.target-copy p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: color-mix(in oklab, var(--color-bg), transparent 28%);
}

.target-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.target-list span {
  border: 1px solid color-mix(in oklab, var(--color-bg), transparent 76%);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-4);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 700;
}

.proof-strip {
  display: grid;
  align-items: center;
  gap: var(--space-8);
}

.proof-strip figure {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
}

.proof-strip p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.final-cta {
  display: grid;
  justify-items: start;
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
}

.final-cta p:not(.eyebrow) {
  margin-block: var(--space-5) var(--space-8);
  color: var(--color-text-muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-4);
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding-block: var(--space-8);
}

.site-footer a {
  color: var(--color-primary);
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  }

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

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

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

  .steps li {
    display: grid;
    grid-template-columns: 90px minmax(180px, 0.6fr) minmax(0, 1fr);
    gap: var(--space-6);
  }

  .steps h3,
  .steps p {
    margin-top: 0;
  }

  .targets {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  }

  .poster-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  }

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

  .proof-strip {
    grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1fr) minmax(180px, 0.7fr);
  }
}

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

  .brand span {
    font-size: var(--text-base);
  }

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

  .offer-card {
    width: 100%;
    margin-top: var(--space-4);
  }

  .showcase-panel {
    min-height: 410px;
  }

  .sample-card {
    width: min(64%, 270px);
  }

  .front-card {
    left: 5%;
  }

  .back-card {
    right: 5%;
  }

  .style-label {
    left: var(--space-4);
    right: auto;
  }
}
