:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-text: #111113;
  --color-muted: #686872;
  --color-primary: #8f1f2d;
  --color-primary-dark: #5f121d;
  --color-border: #e7e7eb;
  --color-on-primary: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 70px rgba(17, 17, 19, 0.08);
  --container: 1120px;

  --font-base: Arial, Helvetica, sans-serif;
  --radius-sm: 12px;
  --space-section: 92px;
  --space-section-mobile: 64px;
  --space-grid: 20px;
  --container-gutter: 24px;
  --header-height: 84px;
}

body[data-theme="dark"] {
  --color-bg: #0d0d10;
  --color-surface: #19191f;
  --color-text: #f7f3f4;
  --color-muted: #b8b2b5;
  --color-primary: #d94a5f;
  --color-primary-dark: #ff7a8c;
  --color-border: #2b2b33;
  --color-on-primary: #ffffff;
  --shadow-soft: 0 24px 76px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(143, 31, 45, 0.34);
  outline-offset: 4px;
}

.container {
  width: min(100% - (var(--container-gutter) * 2), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: var(--space-section);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.section-muted {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

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

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

p {
  color: var(--color-muted);
}

.lead {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 19px;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.text-stack p:last-child,
.card p:last-child,
.feature-card p:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  box-shadow: 0 18px 38px rgba(17, 17, 19, 0.1);
  transform: translateY(-2px);
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
  box-shadow: 0 14px 32px rgba(143, 31, 45, 0.2);
}

.button-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 18px 40px rgba(143, 31, 45, 0.28);
}

.button-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: 0 12px 26px rgba(17, 17, 19, 0.05);
}

.button-secondary:hover {
  border-color: rgba(143, 31, 45, 0.35);
  box-shadow: 0 16px 34px rgba(17, 17, 19, 0.08);
  color: var(--color-primary-dark);
}

.button-light {
  background: var(--color-bg);
  color: var(--color-primary-dark);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

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

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

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 56px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

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

.card,
.mini-card,
.feature-card,
.hero-panel {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .mini-card,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .hero-panel,
body[data-theme="dark"] .legal-card,
body[data-theme="dark"] .advertiser-card,
body[data-theme="dark"] .pizzeria-card,
body[data-theme="dark"] .final-cta-card,
body[data-theme="dark"] .contact-info-card,
body[data-theme="dark"] .contact-form {
  background: #15151a;
  border-color: var(--color-border);
}

.card {
  min-height: 260px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:not(.contact-form):hover {
  border-color: rgba(143, 31, 45, 0.22);
  box-shadow: 0 26px 70px rgba(17, 17, 19, 0.09);
  transform: translateY(-4px);
}

.card p {
  margin-bottom: 0;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.card-dark {
  display: grid;
  align-content: start;
  gap: 18px;
  background: var(--color-text);
  color: var(--color-on-primary);
  border-color: var(--color-text);
}

.card-dark h2,
.card-dark p {
  color: var(--color-on-primary);
}

.card-dark p {
  opacity: 0.74;
}

.card-dark .section-label {
  color: #f4c2c8;
}

.stat-card {
  display: grid;
  align-content: end;
  background: linear-gradient(145deg, rgba(143, 31, 45, 0.1), rgba(17, 17, 19, 0.02)), var(--color-bg);
}

.stat-number {
  display: block;
  color: var(--color-primary);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 900;
  line-height: 0.82;
}

.stat-label {
  display: block;
  margin: 18px 0 12px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.why-section {
  position: relative;
}

.why-heading {
  max-width: 850px;
}

.why-heading p:not(.section-label) {
  max-width: 790px;
  margin-bottom: 0;
  font-size: 18px;
}

.why-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(143, 31, 45, 0.045), rgba(255, 255, 255, 0) 42%),
    var(--color-bg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 0 0 999px 999px;
}

.why-card:hover {
  border-color: rgba(143, 31, 45, 0.26);
  box-shadow: 0 28px 78px rgba(17, 17, 19, 0.1);
  transform: translateY(-4px);
}

.process-grid {
  counter-reset: process;
}

.process-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 320px;
  padding-top: 34px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(143, 31, 45, 0.2);
  font-size: 15px;
  font-weight: 900;
}

.process-card h3 {
  max-width: 280px;
  margin-bottom: 0;
}

.benefits-section {
  background:
    linear-gradient(180deg, var(--color-bg), var(--color-surface) 52%, var(--color-bg));
}

.benefits-heading {
  max-width: 760px;
}

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

.benefit-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--color-bg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  background: rgba(143, 31, 45, 0.07);
  border-radius: 999px;
}

.benefit-card:hover {
  border-color: rgba(143, 31, 45, 0.24);
  box-shadow: 0 28px 78px rgba(17, 17, 19, 0.1);
  transform: translateY(-4px);
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  border: 1px solid rgba(143, 31, 45, 0.16);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body[data-theme="dark"] .site-header {
  background: rgba(13, 13, 16, 0.9);
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 12px 32px rgba(17, 17, 19, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-height);
  gap: 24px;
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(143, 31, 45, 0.18);
}

.brand-wordmark {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 999px;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button)[aria-current="page"] {
  background: var(--color-surface);
  color: var(--color-text);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding-inline: 16px;
  margin-left: 4px;
}

.nav-controls {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 17, 19, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(143, 31, 45, 0.3);
  transform: translateY(-2px);
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(143, 31, 45, 0.12);
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: var(--color-surface);
  border-radius: 999px;
  opacity: 0;
  transform: translate(3px, -3px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

body[data-theme="dark"] .theme-toggle-icon::after {
  opacity: 1;
  transform: translate(0, 0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
  border-color: rgba(143, 31, 45, 0.3);
  transform: translateY(-2px);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-of-type {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-of-type {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding-top: 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

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

.hero-panel {
  min-height: 470px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(143, 31, 45, 0.11), rgba(17, 17, 19, 0.03)),
    var(--color-surface);
}

.hero-mockup {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(143, 31, 45, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.mockup-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(143, 31, 45, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pizza-ad-card {
  position: relative;
  width: min(100%, 430px);
  margin: 46px auto 18px;
}

.pizza-box-frame {
  position: relative;
  padding: 18px;
  background: #fbfbfc;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: 0 24px 58px rgba(17, 17, 19, 0.12);
  transform: rotate(-2deg);
}

.box-fold {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  height: 78px;
  background:
    linear-gradient(135deg, rgba(143, 31, 45, 0.09), rgba(255, 255, 255, 0)),
    var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 22px 22px 12px 12px;
}

.ad-surface {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 24px;
  margin-top: 46px;
  background: var(--color-bg);
  border: 1px solid rgba(143, 31, 45, 0.18);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.ad-surface-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ad-surface-header > span {
  display: inline-flex;
  padding: 8px 10px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.qr-placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

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

.qr-placeholder span:nth-child(2),
.qr-placeholder span:nth-child(5),
.qr-placeholder span:nth-child(8),
.qr-placeholder span:nth-child(10) {
  background: var(--color-primary);
}

.qr-placeholder span:nth-child(4),
.qr-placeholder span:nth-child(7),
.qr-placeholder span:nth-child(11) {
  opacity: 0.16;
}

.ad-message {
  max-width: 260px;
  margin-top: 42px;
}

.ad-message span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-message strong {
  display: block;
  color: var(--color-text);
  font-size: 34px;
  line-height: 0.98;
}

.ad-lines {
  display: grid;
  gap: 8px;
  width: min(100%, 260px);
  margin-top: 24px;
}

.ad-lines span {
  height: 8px;
  background: var(--color-surface);
  border-radius: 999px;
}

.ad-lines span:nth-child(2) {
  width: 76%;
}

.ad-lines span:nth-child(3) {
  width: 52%;
}

.campaign-card {
  position: absolute;
  bottom: -34px;
  left: -18px;
  width: 218px;
  padding: 18px;
  background: var(--color-text);
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(17, 17, 19, 0.22);
  transform: rotate(2deg);
}

body[data-theme="dark"] .campaign-card,
body[data-theme="dark"] .advertiser-aside,
body[data-theme="dark"] .card-dark,
body[data-theme="dark"] .site-footer {
  background: #070708;
  border-color: #070708;
}

.campaign-card span,
.partner-stat span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-card span {
  color: #f1b6be;
}

.campaign-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-on-primary);
  font-size: 20px;
  line-height: 1.1;
}

.campaign-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.partner-stat {
  position: absolute;
  right: -8px;
  bottom: 20px;
  width: 190px;
  padding: 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(17, 17, 19, 0.12);
}

.partner-stat span {
  color: var(--color-muted);
}

.partner-stat strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 22px;
  line-height: 1.05;
}

.feature-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(143, 31, 45, 0.08), rgba(255, 255, 255, 0)),
    var(--color-bg);
}

.feature-card > div {
  max-width: 710px;
}

.advertiser-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: stretch;
  gap: 34px;
  padding: 46px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(143, 31, 45, 0.08), rgba(255, 255, 255, 0) 48%),
    var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.advertiser-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--color-primary);
}

.advertiser-copy {
  max-width: 720px;
}

.advertiser-copy > p {
  max-width: 680px;
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 28px;
  padding-left: 38px;
  color: var(--color-text);
  font-weight: 750;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--color-primary);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(143, 31, 45, 0.18);
}

.feature-list li::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 7px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-on-primary);
  border-left: 2px solid var(--color-on-primary);
  transform: rotate(-45deg);
}

.advertiser-aside {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 100%;
  padding: 30px;
  background: var(--color-text);
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(17, 17, 19, 0.18);
}

.aside-label {
  display: inline-flex;
  width: max-content;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1b6be;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advertiser-aside strong {
  display: block;
  max-width: 260px;
  color: var(--color-on-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.advertiser-aside p {
  max-width: 280px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.pizzeria-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 44px;
  padding: 46px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.pizzeria-visual {
  position: relative;
  min-height: 410px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(17, 17, 19, 0.04), rgba(143, 31, 45, 0.08)),
    var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
}

.pizzeria-box-label {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  padding: 9px 12px;
  background: var(--color-bg);
  color: var(--color-primary-dark);
  border: 1px solid rgba(143, 31, 45, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 17, 19, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.pizzeria-box {
  position: absolute;
  right: 34px;
  bottom: 64px;
  left: 34px;
  min-height: 230px;
  padding: 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(17, 17, 19, 0.12);
  transform: rotate(-3deg);
}

.pizzeria-box::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(143, 31, 45, 0.22);
  border-radius: 20px;
}

.pizzeria-box span,
.pizzeria-box strong {
  position: relative;
  z-index: 1;
  display: block;
}

.pizzeria-box span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pizzeria-box strong {
  max-width: 220px;
  margin-top: 78px;
  color: var(--color-text);
  font-size: 34px;
  line-height: 0.98;
}

.pizzeria-note {
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: 210px;
  padding: 18px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(143, 31, 45, 0.22);
}

.pizzeria-note span {
  display: block;
  margin-bottom: 8px;
  color: #ffd9de;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pizzeria-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.pizzeria-copy > p {
  max-width: 690px;
  font-size: 18px;
}

.partner-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.partner-list li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: var(--color-text);
  font-weight: 750;
}

.partner-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border: 4px solid #f4d8dc;
  border-radius: 999px;
}

.advertiser-card,
.pizzeria-card,
.final-cta-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.advertiser-card:hover,
.pizzeria-card:hover,
.final-cta-card:hover {
  border-color: rgba(143, 31, 45, 0.22);
  box-shadow: 0 30px 86px rgba(17, 17, 19, 0.1);
  transform: translateY(-3px);
}

.final-cta-section {
  background:
    linear-gradient(180deg, var(--color-surface), var(--color-bg));
}

.final-cta-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 58px 42px;
  overflow: hidden;
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(17, 17, 19, 0.1);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: -110px;
  width: 260px;
  height: 260px;
  background: rgba(143, 31, 45, 0.08);
  border-radius: 999px;
}

.final-cta-card > * {
  position: relative;
  z-index: 1;
}

.final-cta-card h2 {
  max-width: 760px;
}

.final-cta-card p:not(.section-label) {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 18px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.contact-hero {
  padding-top: 74px;
}

.legal-page {
  min-height: 58vh;
  padding-top: 74px;
}

.legal-card {
  max-width: 820px;
  padding: 54px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  margin-bottom: 24px;
}

.legal-card .lead {
  margin-bottom: 0;
}

.legal-notice {
  margin: 28px 0 34px;
  padding: 18px 20px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
  background: rgba(143, 31, 45, 0.06);
  border: 1px solid rgba(143, 31, 45, 0.16);
  border-radius: var(--radius-md);
}

.legal-content {
  display: grid;
  gap: 32px;
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section h2 {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.25;
}

.legal-section p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-section a {
  color: var(--color-primary);
  font-weight: 850;
}

.legal-section a:hover {
  color: var(--color-primary-dark);
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
  line-height: 1.75;
}

.legal-data-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-data-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 10px 18px;
  padding: 16px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
}

.legal-data-list dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-data-list dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 750;
  line-height: 1.55;
}

.contact-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.contact-heading h1 {
  margin-bottom: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: start;
  gap: 48px;
}

.contact-info-card {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(143, 31, 45, 0.07), rgba(255, 255, 255, 0) 48%),
    var(--color-bg);
}

.contact-info-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-info-list div {
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-info-list dt {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-list dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 850;
}

.contact-info-list a:hover {
  color: var(--color-primary-dark);
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.mini-card {
  padding: 22px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.point-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
}

.contact-form.is-loading {
  cursor: progress;
}

.form-row {
  margin-bottom: 18px;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  background: var(--color-bg);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(143, 31, 45, 0.1);
}

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

label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 850;
}

.optional-label {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--color-bg);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(143, 31, 45, 0.12);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
}

.form-error {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, opacity 180ms ease;
}

.form-status.is-success {
  color: #167347;
}

.form-status.is-error {
  color: var(--color-primary);
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--color-text);
  color: var(--color-on-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(140px, 0.72fr) minmax(170px, 0.78fr) minmax(210px, 0.9fr);
  align-items: start;
  gap: 34px;
}

.footer-brand-block,
.footer-column,
.footer-contact {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.footer-tagline {
  margin-bottom: 12px;
  color: var(--color-on-primary);
  font-size: 18px;
  font-weight: 850;
}

.footer-description {
  max-width: 320px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--color-on-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--color-on-primary);
  transform: translateX(2px);
}

.footer-column a[aria-current="page"] {
  color: var(--color-on-primary);
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 15px;
  font-weight: 750;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--color-on-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
}

body[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .button-secondary {
  background: #15151a;
  border-color: var(--color-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .button-light {
  background: #ffffff;
  color: #5f121d;
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .mini-card,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .hero-panel,
body[data-theme="dark"] .legal-card,
body[data-theme="dark"] .why-card,
body[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .advertiser-card,
body[data-theme="dark"] .pizzeria-card,
body[data-theme="dark"] .final-cta-card,
body[data-theme="dark"] .contact-info-card,
body[data-theme="dark"] .contact-form {
  background: #15151a;
  border-color: var(--color-border);
}

body[data-theme="dark"] .contact-info-list div,
body[data-theme="dark"] .legal-data-list div,
body[data-theme="dark"] .pizza-box-frame,
body[data-theme="dark"] .box-fold,
body[data-theme="dark"] .ad-surface,
body[data-theme="dark"] .qr-placeholder,
body[data-theme="dark"] .partner-stat,
body[data-theme="dark"] .pizzeria-box,
body[data-theme="dark"] .pizzeria-box-label {
  background: #111116;
  border-color: var(--color-border);
}

body[data-theme="dark"] .legal-notice {
  background: rgba(217, 74, 95, 0.12);
  border-color: rgba(217, 74, 95, 0.28);
}

body[data-theme="dark"] .campaign-card,
body[data-theme="dark"] .advertiser-aside,
body[data-theme="dark"] .card-dark,
body[data-theme="dark"] .site-footer {
  background: #070708;
  border-color: #070708;
}

body[data-theme="dark"] .campaign-card strong,
body[data-theme="dark"] .advertiser-aside strong,
body[data-theme="dark"] input,
body[data-theme="dark"] select,
body[data-theme="dark"] textarea {
  border-color: #24242c;
}

body[data-theme="dark"] .form-row.has-error input,
body[data-theme="dark"] .form-row.has-error select,
body[data-theme="dark"] .form-row.has-error textarea {
  box-shadow: 0 0 0 4px rgba(217, 74, 95, 0.18);
}

body[data-theme="dark"] .form-status.is-success {
  color: #6ee7a5;
}

body[data-theme="dark"] a:focus-visible,
body[data-theme="dark"] button:focus-visible,
body[data-theme="dark"] input:focus-visible,
body[data-theme="dark"] select:focus-visible,
body[data-theme="dark"] textarea:focus-visible {
  outline-color: rgba(217, 74, 95, 0.5);
}

body[data-theme="dark"] .card:not(.contact-form):hover,
body[data-theme="dark"] .advertiser-card:hover,
body[data-theme="dark"] .pizzeria-card:hover,
body[data-theme="dark"] .final-cta-card:hover {
  border-color: rgba(217, 74, 95, 0.3);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 2px;
    font-size: 13px;
  }

  .site-nav a:not(.button) {
    padding-inline: 9px;
  }
}

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

@media (max-width: 960px) {
  :root {
    --container-gutter: 18px;
    --header-height: 74px;
    --space-section: var(--space-section-mobile);
    --space-grid: 16px;
  }

  .lead {
    font-size: 17px;
  }

  .nav-logo {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--container-gutter);
    left: var(--container-gutter);
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-header {
    border-color: var(--color-border);
    box-shadow: 0 14px 36px rgba(17, 17, 19, 0.08);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.button),
  .site-nav .nav-cta {
    justify-content: center;
    min-height: 46px;
    margin-left: 0;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-grid,
  .split-grid,
  .contact-layout,
  .advertiser-card,
  .pizzeria-card,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 420px;
  }

  .contact-layout,
  .advertiser-card,
  .pizzeria-card {
    gap: 32px;
  }

  .feature-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .contact-intro,
  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 28px;
  }

  .hero-panel {
    width: 100%;
    max-width: 520px;
    min-height: 0;
    margin: 0 auto;
    padding: 16px;
    border-radius: 26px;
  }

  .hero-mockup {
    align-items: start;
    overflow: hidden;
  }

  .hero-mockup::before,
  .box-fold,
  .ad-lines,
  .ad-surface-header > span,
  .campaign-card p {
    display: none;
  }

  .mockup-badge {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    min-height: 30px;
    margin-bottom: 10px;
    padding: 0 11px;
    font-size: 10px;
    box-shadow: 0 10px 22px rgba(143, 31, 45, 0.18);
  }

  .pizza-ad-card {
    display: grid;
    width: 100%;
    gap: 8px;
    margin: 0;
  }

  .pizza-box-frame {
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(17, 17, 19, 0.1);
    transform: none;
  }

  .ad-surface {
    min-height: 158px;
    margin-top: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .ad-surface-header {
    justify-content: flex-end;
  }

  .qr-placeholder {
    width: 54px;
    height: 54px;
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
  }

  .ad-message {
    max-width: 230px;
    margin-top: 14px;
  }

  .ad-message span {
    display: none;
  }

  .ad-message strong {
    font-size: 25px;
    line-height: 1.05;
  }

  .campaign-card,
  .partner-stat {
    position: static;
    width: 100%;
    transform: none;
  }

  .campaign-card {
    padding: 13px 14px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(17, 17, 19, 0.18);
  }

  .campaign-card span,
  .partner-stat span {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .campaign-card strong {
    margin-bottom: 0;
    font-size: 16px;
  }

  .partner-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(17, 17, 19, 0.08);
  }

  .partner-stat span {
    margin-bottom: 0;
  }

  .partner-stat strong {
    flex: 0 0 auto;
    font-size: 15px;
    text-align: right;
  }

  .site-footer {
    padding: 52px 0 24px;
  }

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

  .footer-brand-block,
  .footer-column,
  .footer-contact-column {
    width: 100%;
  }

  .footer-column {
    justify-items: start;
  }

  .footer-column h2 {
    margin-bottom: 6px;
  }

  .footer-column a {
    max-width: 100%;
  }

  .footer-contact {
    width: 100%;
    gap: 9px;
    justify-items: start;
  }

  .footer-contact a,
  .footer-contact span {
    width: min(100%, 340px);
    min-height: 40px;
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .footer-contact a[href^="tel"] {
    white-space: nowrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .section-label,
  .eyebrow {
    font-size: 11px;
  }

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

  .card,
  .contact-form,
  .feature-card,
  .hero-panel {
    border-radius: 24px;
  }

  .card,
  .contact-form {
    padding: 24px;
  }

  .legal-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .legal-notice {
    margin: 22px 0 28px;
    padding: 16px;
    font-size: 14px;
  }

  .legal-content {
    gap: 26px;
  }

  .legal-section h2 {
    font-size: 19px;
  }

  .legal-section p,
  .legal-list {
    font-size: 15px;
  }

  .legal-data-list div {
    grid-template-columns: 1fr;
    padding: 15px 16px;
  }

  .card,
  .why-card,
  .process-card,
  .benefit-card {
    min-height: auto;
  }

  .contact-heading {
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 28px;
  }

  .site-footer {
    padding: 46px 0 24px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-description {
    max-width: none;
  }

  .footer-bottom {
    margin-top: 32px;
  }

  .advertiser-card {
    padding: 28px;
    border-radius: 24px;
  }

  .advertiser-card::before {
    right: 28px;
    bottom: auto;
    left: 28px;
    width: auto;
    height: 3px;
    border-radius: 0 0 999px 999px;
  }

  .advertiser-aside {
    padding: 24px;
    border-radius: 22px;
  }

  .pizzeria-card {
    gap: 28px;
    padding: 28px;
    border-radius: 24px;
  }

  .pizzeria-visual {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .pizzeria-box-label,
  .pizzeria-box {
    width: 100%;
    min-height: auto;
    padding: 22px;
    transform: none;
  }

  .pizzeria-box-label {
    position: static;
    display: flex;
    width: fit-content;
    padding: 9px 12px;
  }

  .pizzeria-box {
    position: relative;
    inset: auto;
  }

  .pizzeria-box strong {
    margin-top: 12px;
    font-size: 24px;
  }

  .pizzeria-note {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .final-cta-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .final-cta-actions {
    width: 100%;
  }

  .feature-list li {
    padding-left: 34px;
  }

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

  .hero-panel {
    padding: 14px;
  }

  .hero-mockup {
    min-height: auto;
    overflow: hidden;
  }

  .hero-mockup::before {
    display: none;
  }

  .mockup-badge {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    margin-bottom: 10px;
  }

  .pizza-ad-card {
    display: grid;
    gap: 8px;
    margin: 0;
  }

  .pizza-box-frame {
    padding: 10px;
    transform: none;
  }

  .ad-surface {
    min-height: 148px;
    padding: 14px;
  }

  .ad-surface-header {
    align-items: flex-start;
  }

  .qr-placeholder {
    width: 50px;
    height: 50px;
    padding: 7px;
  }

  .ad-message strong {
    font-size: 23px;
  }

  .campaign-card,
  .partner-stat {
    position: static;
    width: 100%;
    transform: none;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
