:root {
  --bg: #f6f2ee;
  --surface: #ffffff;
  --surface-soft: #fffaf6;
  --surface-dark: #111111;
  --surface-dark-soft: #181818;
  --text: #171717;
  --muted: #5f5a56;
  --muted-on-dark: rgba(255, 242, 235, 0.78);
  --line: rgba(23, 23, 23, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #ee4c2c;
  --accent-strong: #ff5d19;
  --accent-soft: rgba(238, 76, 44, 0.12);
  --gold: #f4b03e;
  --success: #2f9c5b;
  --shadow-xl: 0 30px 80px rgba(21, 17, 15, 0.12);
  --shadow-lg: 0 20px 48px rgba(21, 17, 15, 0.1);
  --shadow-md: 0 12px 30px rgba(21, 17, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 151, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #fffefc 0%, var(--bg) 42%, #fffaf7 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.page-glow--left {
  top: 9rem;
  left: -10rem;
  background: rgba(255, 105, 58, 0.34);
}

.page-glow--right {
  top: 24rem;
  right: -9rem;
  background: rgba(255, 193, 138, 0.3);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 240, 0.96));
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(255, 94, 0, 0.16), transparent 24%),
    linear-gradient(135deg, #101010 0%, #171717 50%, #0f0f0f 100%);
  color: #f5efe9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 76, 44, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffaf81;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.hero h1,
.dashboard-copy h2,
.trust-intro h2,
.pricing-copy h2,
.final-cta__copy h2 {
  margin: 0.9rem 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.hero__lead,
.dashboard-copy p,
.trust-intro p,
.pricing-copy p,
.final-cta__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 250, 0.9);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.5rem;
  flex-wrap: nowrap;
  padding: 0.7rem 0;
}

.brand img {
  width: 9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.header-login,
.site-footer nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.header-login:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-login {
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button--small {
  min-height: 2.6rem;
  padding-inline: 1rem;
  border-radius: 14px;
}

.button--block {
  width: 100%;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(238, 76, 44, 0.26);
}

.button--primary:hover {
  box-shadow: 0 18px 36px rgba(238, 76, 44, 0.32);
}

.button--ghost {
  border-color: rgba(23, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.button--ghost-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff6f1;
}

.hero {
  padding-top: 2.4rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.hero h1 span {
  color: var(--accent);
}

.hero__lead {
  max-width: 38rem;
  font-size: 1.12rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.mini-feature {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: var(--shadow-md);
}

.mini-feature__icon {
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(238, 76, 44, 0.18), rgba(255, 186, 116, 0.18));
  color: var(--accent);
  font-weight: 800;
}

.mini-feature strong,
.hero-proof li,
.step-card h3,
.qr-card h3,
.benefit-card h3,
.industry-card h3,
.testimonial-card h3,
.pricing-card h3 {
  font-weight: 800;
}

.mini-feature p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-proof {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-proof li {
  position: relative;
  padding-left: 1.4rem;
  color: #2b2826;
}

.hero-proof li::before,
.check-list li::before,
.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(238, 76, 44, 0.1);
}

.hero__visual {
  position: relative;
}

.hero-stage {
  position: relative;
  min-height: 39rem;
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: 2rem;
  background: linear-gradient(135deg, #f4ddd1 0%, #f7e1ce 100%);
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-stage__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 11, 8, 0.14) 0%, rgba(20, 11, 8, 0.02) 28%, rgba(20, 11, 8, 0.05) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80")
      center / cover;
  transform: scale(1.04);
  filter: saturate(0.92);
}

.hero-stage__ambient {
  position: absolute;
  inset: 8% auto auto 10%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 146, 84, 0.24), transparent 66%);
  filter: blur(20px);
}

.poster-card,
.phone-card,
.hero-metric,
.step-card,
.qr-card,
.benefit-card,
.industry-card,
.dashboard-shot,
.stat-card,
.testimonial-card,
.pricing-card,
.final-cta__panel {
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.poster-card {
  position: absolute;
  left: 1.6rem;
  top: 4.2rem;
  width: min(100%, 19rem);
  padding: 1rem;
  border-radius: 28px;
  background: rgba(17, 17, 17, 0.94);
  color: #fff4ef;
  box-shadow: 0 22px 44px rgba(18, 12, 10, 0.28);
  transform: rotate(-10deg);
}

.poster-card__media {
  aspect-ratio: 0.8;
  border-radius: 20px;
  background-image: url("images/qr-examples.png");
  background-size: 260%;
  background-position: 50% 42%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-card__caption {
  margin-top: 0.9rem;
}

.poster-card__caption span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #ffb48f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.poster-card__caption strong {
  display: block;
  font-family: "Sora", sans-serif;
  line-height: 1.3;
}

.phone-card {
  position: absolute;
  right: 2.25rem;
  top: 1rem;
  width: min(100%, 18.5rem);
  padding: 0.9rem 0.82rem 1rem;
  border-radius: 38px;
  background: linear-gradient(180deg, #202020 0%, #090909 100%);
  box-shadow: 0 28px 60px rgba(17, 10, 7, 0.3);
}

.phone-card__speaker {
  width: 34%;
  height: 0.42rem;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  background: rgba(255, 255, 255, 0.12);
}

.phone-card__screen {
  border-radius: 28px;
  background: linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
  padding: 1rem 0.95rem 1rem;
}

.phone-card__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.phone-card__top img {
  width: 1.6rem;
  height: 1.6rem;
}

.phone-card__top span,
.feedback-option,
.phone-field span,
.phone-submit {
  font-size: 0.87rem;
}

.phone-card__top span {
  font-weight: 800;
}

.hero-stage__food {
  position: absolute;
  right: -0.4rem;
  bottom: 2.6rem;
  width: 8.7rem;
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(20, 10, 8, 0.08), rgba(20, 10, 8, 0.08)),
    url("https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=700&q=80")
      center / cover;
  box-shadow: 0 24px 46px rgba(18, 12, 10, 0.22);
}

.feedback-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  margin-top: 0.6rem;
  border: 1px solid rgba(23, 23, 23, 0.07);
  background: #fff;
  font-weight: 700;
}

.feedback-option--danger {
  background: rgba(255, 92, 70, 0.1);
}

.feedback-option--warning {
  background: rgba(255, 186, 95, 0.13);
}

.feedback-option--success {
  background: rgba(77, 180, 111, 0.12);
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.feedback-option--danger .dot {
  color: #ef4f33;
}

.feedback-option--warning .dot {
  color: #ff9d33;
}

.feedback-option--success .dot {
  color: #45aa67;
}

.phone-field {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.phone-field span {
  color: var(--muted);
  font-weight: 700;
}

.phone-field__box {
  display: block;
  min-height: 4.6rem;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 251, 248, 0.9);
  color: #393331;
}

.phone-field__box--soft {
  min-height: 3rem;
  color: #6b6663;
}

.phone-submit {
  width: 100%;
  margin-top: 1rem;
  min-height: 3rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 800;
}

.hero-metric {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  max-width: 15rem;
}

.hero-metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero-metric span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-metric--left {
  left: 1.5rem;
  bottom: 2rem;
}

.hero-metric--right {
  right: 7.1rem;
  bottom: 1.6rem;
}

.steps-grid,
.benefits-grid,
.industries-grid,
.stats-grid,
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

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

.step-card,
.benefit-card,
.industry-card,
.stat-card,
.testimonial-card,
.pricing-card,
.dashboard-shot {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.step-card {
  position: relative;
  padding: 1.4rem 1.2rem 1.25rem;
  border-radius: 24px;
}

.step-card:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  top: 4.1rem;
  right: -0.9rem;
  z-index: 2;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: rgba(23, 23, 23, 0.42);
  font-family: "Font Awesome 6 Free";
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(14, 10, 8, 0.08);
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 234, 221, 0.9));
  border: 1px solid rgba(238, 76, 44, 0.12);
}

.step-card__icon i {
  color: #121212;
  font-size: 1.8rem;
}

.step-card__index {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
}

.step-card h3,
.qr-card h3,
.benefit-card h3,
.industry-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.04rem;
  line-height: 1.35;
}

.step-card p,
.qr-card p,
.benefit-card p,
.industry-card p,
.stat-card span,
.testimonial-card p,
.testimonial-card span,
.pricing-card p,
.pricing-card__list li {
  margin: 0;
  color: var(--muted);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.qr-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.qr-card:hover,
.industry-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(21, 17, 15, 0.12);
}

.qr-card__media {
  aspect-ratio: 0.82;
  background-image: url("images/qr-examples.png");
  background-repeat: no-repeat;
  background-size: 300%;
}

.qr-card__media--receipt {
  background-position: 9% 42%;
}

.qr-card__media--stand {
  background-position: 28% 42%;
}

.qr-card__media--poster {
  background-position: 44% 42%;
}

.qr-card__media--door {
  background-position: 8% 89%;
}

.qr-card__media--bag {
  background-position: 92% 42%;
}

.qr-card__media--bathroom {
  background-position: 27% 89%;
}

.qr-card__body {
  padding: 1rem 1rem 1.2rem;
}

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

.benefit-card {
  padding: 1.45rem;
  border-radius: 24px;
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  background: rgba(238, 76, 44, 0.11);
  color: var(--accent);
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(238, 76, 44, 0.08);
}

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

.industry-card {
  overflow: hidden;
  padding: 0;
  border-radius: 26px;
}

.industry-card__visual {
  position: relative;
  min-height: 10.7rem;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), transparent 42%);
}

.industry-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 8, 0.03), rgba(10, 8, 8, 0.36));
}

.industry-card__visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff8f2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.industry-card--hotels .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card--clinics .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card--retail .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1604719312566-8912e9c8a213?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card--fitness .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card--auto .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1485291571150-772bcfc10da5?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card--restaurants .industry-card__visual {
  background:
    linear-gradient(180deg, rgba(13, 11, 10, 0.08), rgba(13, 11, 10, 0.56)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=80")
      center / cover;
}

.industry-card h3,
.industry-card p {
  padding-inline: 1.35rem;
}

.industry-card h3 {
  margin-top: 1.25rem;
}

.industry-card p {
  padding-bottom: 1.45rem;
}

.industries-cta {
  margin-top: 1.2rem;
  text-align: center;
}

.industries-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 800;
}

.dashboard-section__grid,
.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
}

.dashboard-copy,
.pricing-copy {
  max-width: 32rem;
}

.check-list,
.pricing-card__list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.check-list li,
.pricing-card__list li {
  position: relative;
  padding-left: 1.45rem;
}

.dashboard-shot {
  padding: 1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dashboard-shot img {
  border-radius: 24px;
}

.trust-panel {
  display: grid;
  gap: 2rem;
}

.trust-intro {
  max-width: 42rem;
}

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

.stat-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.stat-card i {
  color: var(--gold);
  font-size: 1.2rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: #fff6ee;
}

.stat-card span,
.testimonial-card span {
  font-size: 0.94rem;
  color: rgba(255, 243, 234, 0.7);
}

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

.testimonial-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
}

.testimonial-card h3 {
  margin: 0 0 0.65rem;
  color: var(--text);
}

.testimonial-card p {
  margin-bottom: 1rem;
}

.testimonial-card span {
  color: #71675f;
  font-weight: 700;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.5), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at right top, rgba(255, 135, 70, 0.14), transparent 35%);
}

.pricing-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 28px;
}

.pricing-card__badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(238, 76, 44, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
}

.pricing-card__price {
  font-size: 1rem;
}

.final-cta {
  padding-top: 0;
}

.final-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(28, 21, 19, 0.96)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.24), transparent 40%);
  color: #fff7f3;
  box-shadow: var(--shadow-lg);
}

.final-cta__actions {
  display: grid;
  gap: 0.9rem;
}

.final-cta__qr {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  max-width: 11rem;
}

.final-cta__qr-image {
  width: 8.25rem;
  aspect-ratio: 1;
  border-radius: 20px;
  background-color: #fff;
  background-image: url("images/qr-examples.png");
  background-size: 410%;
  background-position: 42% 42%;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.final-cta__qr p {
  margin: 0;
  color: rgba(255, 241, 234, 0.76);
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.8rem 0 2.8rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  color: #6c635e;
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hero-highlights,
  .steps-grid,
  .qr-grid,
  .benefits-grid,
  .industries-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero__grid,
  .dashboard-section__grid,
  .pricing-shell,
  .final-cta__panel {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .dashboard-copy,
  .pricing-copy,
  .trust-intro {
    max-width: none;
  }

  .final-cta__actions,
  .final-cta__qr {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 3.8rem 0;
  }

  .site-header__inner {
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-stage {
    min-height: 46rem;
    padding: 1.3rem;
  }

  .poster-card {
    left: 0.9rem;
    top: 5rem;
    width: min(62vw, 16rem);
  }

  .phone-card {
    right: 1rem;
    width: min(58vw, 17rem);
  }

  .hero-stage__food {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-metric--left {
    left: 1rem;
    bottom: 1.1rem;
  }

  .hero-metric--right {
    right: 10rem;
    bottom: 1rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .section-heading h2,
  .dashboard-copy h2,
  .trust-intro h2,
  .pricing-copy h2,
  .final-cta__copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .site-nav,
  .header-actions {
    font-size: 0.92rem;
  }

  .hero-highlights,
  .steps-grid,
  .qr-grid,
  .benefits-grid,
  .industries-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-stage {
    min-height: 43rem;
  }

  .poster-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .phone-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-stage__food {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-stage {
    display: grid;
    gap: 1rem;
    align-content: start;
  }

  .hero-stage__ambient,
  .hero-metric,
  .hero-stage__backdrop {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    filter: none;
  }

  .hero-stage__ambient {
    display: none;
  }

  .hero-stage__backdrop {
    position: absolute;
    inset: 0;
  }

  .hero-metric {
    max-width: none;
  }

  .step-card::after {
    display: none;
  }

  .pricing-card {
    padding: 1.35rem;
  }

  .final-cta__panel {
    padding: 1.5rem;
  }
}
