:root {
  --red: #e31e24;
  --red-dark: #c4181e;
  --red-deep: #b01016;
  --red-soft: #fff1f1;
  --black: #111111;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --line: #e7e7e7;
  --bg: #f6f6f7;
  --white: #ffffff;
  --navy: #07111f;
  --footer: #060f20;
  --green: #1f8a4c;
  --green-soft: #e9f7ee;
  --purple: #5b3cc4;
  --purple-soft: #efeafb;
  --blue: #1b6fd8;
  --blue-soft: #e8f1fc;
  --orange: #e85d04;
  --orange-soft: #fff1e6;
  --shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
  --container: 1180px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Montserrat", "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.03em; margin: 0; color: var(--black); }
p { margin: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; background: var(--red); color: #fff; padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { left: 8px; }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(227, 30, 36, 0.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red-soft); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: #fff4f4; }
.btn-lg { padding: 16px 26px; font-size: 14px; }
.btn-block { width: 100%; }
.link-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 14px;
}
.link-more:hover { gap: 10px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr auto;
  align-items: center;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.brand img { width: 46px; height: 46px; border-radius: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--display); font-size: 22px; font-weight: 800;
  letter-spacing: 0.04em; color: var(--black);
}
.brand-text span {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #888; margin-top: 4px;
}
.nav { display: flex; justify-content: center; }
.nav-list {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list > li > a,
.nav-drop > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 9px; background: none; border: 0;
  font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer;
  border-radius: 8px;
}
.nav-list > li > a:hover,
.nav-drop > button:hover { color: var(--red); }
.nav-list > li > a.active,
.nav-drop.is-active > button { color: var(--red); position: relative; }
.nav-list > li > a.active::after,
.nav-drop.is-active > button::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-drop { position: relative; }
.nav-drop .chev { width: 12px; height: 12px; opacity: 0.6; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-30%);
  min-width: 320px; padding: 14px 8px 8px;
  display: none; z-index: 60;
}
.dropdown-inner {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 8px;
}
.nav-drop.open .dropdown,
.nav-drop:hover .dropdown { display: block; }
.dropdown a {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px; border-radius: 12px; font-size: 14px; font-weight: 700;
}
.dropdown a small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 2px; }
.dropdown a:hover { background: var(--bg); color: var(--red); }
.dropdown a.active { background: var(--red-soft); color: var(--red); }
.dropdown img { width: 28px; height: 28px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 12px 14px; font-size: 11.5px; letter-spacing: 0.04em; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: #111; margin: 4px auto; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 12px 0 0;
  background: #fff;
}
.hero-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: 12px;
  align-items: stretch;
  min-height: 620px;
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
}
.hero-copy { padding: 36px 20px 100px 0; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: var(--red-soft); color: var(--red);
  border-radius: 999px; padding: 7px 14px;
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 800;
  margin: 18px 0 16px;
  letter-spacing: -0.045em;
}
.hero h1 .accent { color: var(--red); }
.hero-lead { font-size: 18px; color: #333; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  max-width: 520px;
  margin: 0;
  padding: 0;
}
.hero-trust li {
  list-style: none; display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  font-size: 12px; font-weight: 700; color: #444; line-height: 1.25;
}
.hero-trust img { width: 28px; height: 28px; }
.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 0;
  overflow: hidden;
  background: #1a120c center/cover no-repeat;
}
.hero-visual img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.15) 18%, transparent 42%);
  pointer-events: none;
}
.mascot {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: min(72%, 460px); z-index: 2; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}
.float-card {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 16px; padding: 12px 14px 12px 12px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  min-width: 188px;
}
.float-card img { width: 36px; height: 36px; }
.float-card strong { display: block; font-size: 13.5px; font-weight: 800; line-height: 1.2; }
.float-card span { font-size: 12px; color: var(--muted); }
.float-card.c1 { top: 12%; left: 8%; }
.float-card.c1 strong { color: var(--green); }
.float-card.c2 { bottom: 24%; left: 6%; }
.float-card.c2 strong { color: var(--red); }
.float-card.c3 { top: 10%; right: 8%; }
.float-card.c3 strong { color: var(--purple); }
.float-card.c4 { bottom: 20%; right: 6%; }
.float-card.c4 strong { color: var(--blue); }
.float-card {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 16px; padding: 12px 14px 12px 12px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  min-width: 188px;
}
.float-card img { width: 36px; height: 36px; }
.float-card strong { display: block; font-size: 13.5px; font-weight: 800; line-height: 1.2; }
.float-card span { font-size: 12px; color: var(--muted); }
.float-card.c1 { top: 18%; left: 4%; }
.float-card.c1 strong { color: var(--green); }
.float-card.c2 { bottom: 22%; left: 2%; }
.float-card.c2 strong { color: var(--red); }
.float-card.c3 { top: 14%; right: 4%; }
.float-card.c3 strong { color: var(--purple); }
.float-card.c4 { bottom: 18%; right: 2%; }
.float-card.c4 strong { color: var(--blue); }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 90px; z-index: 4;
  color: var(--red); pointer-events: none;
}

/* Trust */
.trust { padding: 56px 0 20px; background: #fafafa; }
.trust .section-head { margin-bottom: 28px; }
.logo-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; align-items: center;
}
.logo-row a, .logo-row span {
  display: grid; place-items: center; min-height: 72px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px;
  filter: grayscale(1); opacity: 0.85; transition: 0.2s;
}
.logo-row a:hover { filter: none; opacity: 1; }
.logo-row img { max-height: 42px; width: auto; max-width: 120px; margin: 0 auto; }
.trust-link { text-align: center; margin-top: 22px; }
.trust-link a { color: var(--red); }

/* Services 4 */
.services { padding: 64px 0; }
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 22px 22px; box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; min-height: 280px;
}
.svc-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
}
.svc-card .icon-wrap img { width: 30px; height: 30px; }
.svc-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.svc-card.online .icon-wrap { background: var(--green-soft); }
.svc-card.online h3, .svc-card.online .link-more { color: var(--green); }
.svc-card.qr .icon-wrap { background: var(--red-soft); }
.svc-card.qr h3, .svc-card.qr .link-more { color: var(--red); }
.svc-card.book .icon-wrap { background: var(--purple-soft); }
.svc-card.book h3, .svc-card.book .link-more { color: var(--purple); }
.svc-card.mkt .icon-wrap { background: var(--blue-soft); }
.svc-card.mkt h3, .svc-card.mkt .link-more { color: var(--blue); }

/* Rewards */
.rewards { padding: 30px 0 70px; }
.rewards-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 36px; align-items: center;
}
.rewards h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 8px; }
.cycle { font-family: var(--display); font-size: 22px; font-weight: 800; margin: 8px 0 12px; }
.cycle .g { color: var(--green); }
.cycle .r { color: var(--red); }
.cycle .b { color: var(--blue); }
.rewards-copy > p { color: var(--muted); max-width: 460px; }
.reward-points { margin: 22px 0; display: grid; gap: 16px; }
.reward-point { display: flex; gap: 12px; align-items: flex-start; }
.reward-point .dot {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
}
.reward-point .dot img { width: 22px; height: 22px; }
.reward-point h4 { font-size: 16px; margin-bottom: 2px; }
.reward-point p { font-size: 14px; color: var(--muted); }
.rewards-visual { position: relative; }
.rewards-stage {
  position: relative; min-height: 340px;
  display: flex; align-items: flex-end; justify-content: center;
}
.rewards-stage .mascot-sm { width: 210px; position: relative; z-index: 2; margin-right: auto; }
.example-chip {
  position: absolute; top: 0; right: 0;
  background: var(--green); color: #fff; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  padding: 7px 12px; text-transform: uppercase;
}
.order-track {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 8px;
}
.order-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 8px; text-align: center; font-size: 12px;
}
.order-card b { display: block; font-size: 16px; }
.order-card .pct { color: var(--red); font-weight: 700; font-size: 11px; }
.order-card .tot {
  margin-top: 6px; background: var(--green-soft); color: var(--green);
  border-radius: 999px; font-size: 10px; font-weight: 800; padding: 3px 0;
}
.order-card.redeem {
  background: linear-gradient(180deg, var(--purple) 0 48%, #163a7a 48% 100%);
  color: #fff; border: 0;
}
.order-card.redeem b { font-size: 18px; }
.hand-note {
  font-family: "Caveat", cursive; font-size: 22px; text-align: right; margin-top: 12px;
}

/* Marketing flow */
.marketing { padding: 20px 0 70px; }
.flow {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  margin: 36px 0 40px; position: relative;
}
.flow-step { text-align: center; position: relative; }
.flow-ico {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px;
  display: grid; place-items: center;
}
.flow-ico img { width: 34px; height: 34px; }
.flow-step p { font-size: 13px; font-weight: 700; line-height: 1.3; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; left: calc(50% + 42px); right: calc(-50% + 42px);
  border-top: 2px dashed var(--red); opacity: 0.7;
}
.mkt-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.mkt-benefits article { text-align: center; padding: 8px; }
.mkt-benefits img { width: 42px; height: 42px; margin: 0 auto 10px; }
.mkt-benefits h3 { font-size: 16px; margin-bottom: 6px; }
.mkt-benefits p { font-size: 14px; color: var(--muted); }

/* Manager */
.manager { padding: 30px 0 80px; }
.manager-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center;
}
.phone {
  width: 280px; margin: 0 auto; background: #111; border-radius: 36px;
  padding: 12px; box-shadow: var(--shadow-lg); color: #fff;
}
.phone-notch { width: 110px; height: 18px; background: #000; border-radius: 0 0 14px 14px; margin: 0 auto 8px; }
.phone-screen { background: #16161c; border-radius: 26px; padding: 14px 12px 18px; min-height: 460px; }
.phone-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.phone-top img { width: 28px; height: 28px; border-radius: 7px; }
.phone-top span { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: #f0c36d; }
.dash-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dash-card { background: #fff; color: #111; border-radius: 12px; padding: 12px; }
.dash-card small { color: #777; font-size: 11px; font-weight: 700; }
.dash-card b { display: block; font-size: 22px; margin-top: 4px; }
.dash-card.purple b { color: var(--purple); }
.dash-card.green b { color: var(--green); }
.dash-card.blue b { color: var(--blue); }
.dash-card.orange b { color: var(--orange); }
.phone-nav {
  display: flex; justify-content: space-between; margin-top: 16px;
  font-size: 9px; font-weight: 700; color: #aaa; text-align: center;
}
.store-badges { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 8px; background: #111; color: #fff;
  border-radius: 8px; padding: 8px 12px; font-size: 11px; min-width: 140px;
}
.store-badge small { display: block; opacity: 0.8; font-size: 9px; }
.store-badge strong { font-size: 13px; }
.app-flow {
  display: flex; justify-content: center; gap: 8px; margin-top: 18px; flex-wrap: wrap;
  font-size: 11px; font-weight: 700; text-align: center;
}
.app-flow span { display: block; max-width: 80px; }
.manager-copy h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 6px 0 10px; }
.manager-copy > p { color: var(--muted); margin-bottom: 22px; }
.mgr-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mgr-feats article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.mgr-feats img { width: 28px; height: 28px; flex: none; }
.mgr-feats h3 { font-size: 14.5px; margin-bottom: 2px; }
.mgr-feats p { font-size: 13px; color: var(--muted); }
.mgr-feats article.wide { grid-column: 1 / -1; }

/* Why + How */
.why { padding: 20px 0 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center;
}
.why-grid img { width: 42px; height: 42px; margin: 0 auto 10px; }
.why-grid h3 { font-size: 14.5px; margin-bottom: 6px; }
.why-grid p { font-size: 13px; color: var(--muted); }
.how { padding: 30px 0 70px; }
.how-flow {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center; gap: 8px; max-width: 900px; margin: 0 auto; text-align: center;
}
.how-node img, .how-node .how-photo {
  width: 160px; height: 120px; object-fit: cover; border-radius: 16px; margin: 0 auto 10px;
  box-shadow: var(--shadow);
}
.how-node .mark { width: 92px; height: 92px; border-radius: 22px; }
.how-node .kicker { font-family: var(--display); font-weight: 800; font-size: 18px; }
.how-node .kicker.g { color: var(--green); }
.how-node .kicker.r { color: var(--red); }
.how-node .kicker.b { color: var(--blue); }
.how-arrow { height: 2px; background: repeating-linear-gradient(90deg, var(--red) 0 8px, transparent 8px 14px); }

/* Website offer */
.offer {
  padding: 10px 0 70px;
}
.offer-banner {
  background: var(--navy); color: #fff; border-radius: 28px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px;
  padding: 42px 40px; position: relative; overflow: hidden;
}
.offer-banner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); }
.offer-banner h2 span { color: #ff7a1a; }
.offer-banner p { color: #c9d2de; margin: 12px 0 18px; max-width: 420px; }
.offer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.offer-list li { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.check {
  width: 22px; height: 22px; border-radius: 50%; background: #ff7a1a;
  display: grid; place-items: center; flex: none; color: #fff; font-size: 12px;
}
.zero-badge {
  position: absolute; left: 48%; top: 50%; transform: translate(-50%, -50%);
  width: 118px; height: 118px; border-radius: 50%; background: #fff; color: var(--blue);
  display: grid; place-items: center; text-align: center; font-family: var(--display);
  font-weight: 800; font-size: 18px; line-height: 1.15; box-shadow: var(--shadow-lg); z-index: 2;
}
.offer-visual img { border-radius: 16px; width: 100%; }

/* Testimonials */
.testimonials { padding: 10px 0 40px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 24px;
  background: #fff; display: flex; flex-direction: column; min-height: 240px;
}
.quote-mark { font-family: Georgia, serif; font-size: 48px; color: #ff7a1a; line-height: 0.6; margin-bottom: 12px; }
.t-card blockquote { font-style: italic; color: #333; flex: 1; margin: 0; }
.stars { color: #ff7a1a; letter-spacing: 2px; margin: 12px 0; }
.t-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.t-foot strong { display: block; font-size: 14px; }
.t-foot span { font-size: 13px; color: var(--muted); }
.t-foot img { height: 36px; width: auto; max-width: 90px; }

/* CTA banner */
.cta-wrap { padding: 20px 0 0; }
.cta-banner {
  background: var(--red); color: #fff; border-radius: 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: center; padding: 32px 36px; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; }
.cta-left { display: flex; gap: 16px; align-items: flex-start; }
.cta-ico {
  width: 54px; height: 54px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px; display: grid; place-items: center; flex: none;
}
.cta-right { text-align: center; position: relative; z-index: 1; }
.cta-note { font-size: 13px; margin-top: 8px; opacity: 0.9; }
.cta-banner::after {
  content: ""; position: absolute; right: -20px; bottom: -30px; width: 180px; height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.12;
}

/* Footer */
.site-footer { background: var(--footer); color: #c9d2de; margin-top: 28px; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 0.8fr 0.95fr 0.8fr 0.8fr 1.15fr; gap: 22px;
  padding-bottom: 36px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: #9aa6b5; }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 280px; }
.site-footer h4 {
  color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 800;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: #fff; }
.touch p { margin-bottom: 8px; font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; }
.touch .footer-address { max-width: 220px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: grid; place-items: center; color: #fff;
}
.socials a:hover { background: var(--red); border-color: var(--red); }

/* Inner pages */
.page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); margin: 8px 0 12px; }
.page-hero h1 .accent { color: var(--red); }
.page-hero .lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--red); }
.section { padding: 64px 0; }
.section.alt { background: var(--bg); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--red);
  color: #fff; display: grid; place-items: center; font-size: 12px; flex: none; margin-top: 2px;
}
.feature-list strong { display: block; }
.feature-list span { color: var(--muted); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card, .card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.step-num {
  font-family: var(--display); font-weight: 800; color: var(--red); font-size: 13px;
  letter-spacing: 0.12em; margin-bottom: 8px;
}
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 20px;
  display: flex; flex-direction: column; min-height: 280px;
}
.price-card .tag { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card h3 { font-size: 20px; margin: 8px 0; }
.price .amount { font-family: var(--display); font-size: 32px; font-weight: 800; }
.price .unit { color: var(--muted); font-size: 13px; }
.price-card p { color: var(--muted); font-size: 14px; flex: 1; margin: 10px 0 16px; }
.reassurance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.reassurance article {
  text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 12px;
}
.reassurance img { width: 36px; height: 36px; margin: 0 auto 8px; }
.reassurance h3 { font-size: 14px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.contact-aside { display: grid; gap: 14px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
}
.info-card h3 { font-size: 16px; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--muted); }
.form {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 12px;
  font-size: 16px; background: #fafafa; width: 100%; max-width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(227,30,36,0.25); border-color: var(--red); background: #fff;
}
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checks label { display: flex; gap: 8px; align-items: center; font-weight: 600; font-size: 14px; }
.form-msg { display: none; padding: 12px 14px; border-radius: 10px; margin-bottom: 12px; font-weight: 600; }
.form-msg.ok { display: block; background: var(--green-soft); color: var(--green); }
.form-msg.err { display: block; background: var(--red-soft); color: var(--red); }
.hp { position: absolute; left: -9999px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; padding: 16px 0;
  font-size: 16px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between;
}
.faq-item .faq-answer { display: none; padding: 0 0 16px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pkg { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: #fff; }
.pkg.featured { border-color: var(--red); box-shadow: 0 12px 30px rgba(227,30,36,0.12); }
.pkg h3 { margin: 6px 0 10px; }
.pkg ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; display: grid; gap: 6px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Service pages */
.svc-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 28px; align-items: center;
  padding: 28px 0 20px;
}
.svc-hero > * { min-width: 0; }
.svc-hero h1 { font-size: clamp(34px, 4.4vw, 56px); margin: 8px 0 14px; }
.checks-inline { display: flex; flex-wrap: wrap; gap: 14px 22px; margin: 18px 0 24px; }
.checks-inline span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.checks-inline i {
  width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-style: normal; font-size: 11px; font-weight: 800;
}
.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-play .play {
  width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; font-size: 10px;
}
.svc-visual {
  position: relative; min-height: 420px; border-radius: 0 0 0 36px; overflow: hidden;
  background: #1a120c center/cover no-repeat;
}
.svc-visual > img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); }
.devices { position: relative; z-index: 2; min-height: 420px; padding: 28px 18px 36px; }
.notice {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 10px 12px;
  box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 700;
}
.notice small { display: block; color: var(--muted); font-weight: 600; }
.happy-badge {
  position: absolute; left: 18px; bottom: 24px; z-index: 3;
  background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg);
  font-weight: 800; font-size: 14px;
}
.happy-badge span { color: var(--green); display: block; font-size: 12px; }
.panel {
  border: 1px solid var(--line); border-radius: 24px; padding: 36px 28px; background: #fff;
}
.process {
  display: grid; gap: 12px; text-align: center;
}
.process.cols-4 { grid-template-columns: repeat(4, 1fr); }
.process.cols-5 { grid-template-columns: repeat(5, 1fr); }
.process.cols-6 { grid-template-columns: repeat(6, 1fr); }
.process article { position: relative; }
.p-ico {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px;
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.p-ico img { width: 32px; height: 32px; }
.process h3 { font-size: 15px; margin-bottom: 6px; }
.process p { font-size: 13px; color: var(--muted); }
.feat-grid { display: grid; gap: 14px; }
.feat-grid.g3 { grid-template-columns: repeat(3, 1fr); }
.feat-grid.g4 { grid-template-columns: repeat(4, 1fr); }
.feat-grid.g6 { grid-template-columns: repeat(6, 1fr); }
.feat {
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  display: flex; gap: 12px; align-items: flex-start; background: #fff;
}
.feat img, .feat .ico { width: 36px; height: 36px; flex: none; }
.feat h3 { font-size: 15px; margin-bottom: 4px; }
.feat p { font-size: 13px; color: var(--muted); }
.feat.stack { flex-direction: column; text-align: left; }
.ui-phone {
  width: 230px; background: #111; border-radius: 32px; padding: 10px; color: #111;
  box-shadow: var(--shadow-lg);
}
.ui-phone .screen { background: #fff; border-radius: 24px; overflow: hidden; min-height: 390px; }
.ui-phone .bar { background: #111; color: #fff; padding: 10px 12px; font-size: 12px; font-weight: 800; display: flex; justify-content: space-between; }
.ui-phone .pad { padding: 12px; }
.ui-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding: 8px 0; font-size: 12px; }
.add { color: var(--red); border: 1px solid var(--red); border-radius: 6px; padding: 2px 8px; font-size: 11px; font-weight: 800; }
.ui-laptop {
  background: #222; border-radius: 12px 12px 6px 6px; padding: 10px 10px 0; width: min(100%, 420px);
  box-shadow: var(--shadow-lg);
}
.ui-laptop .lid { background: #fff; border-radius: 6px; min-height: 220px; overflow: hidden; }
.ui-laptop .base { height: 12px; background: #333; border-radius: 0 0 8px 8px; }
.menu-hero { height: 110px; background: #1a1a1a center/cover no-repeat; color: #fff; display: grid; place-content: end start; padding: 12px; }
.stat { background: #f6f6f7; border-radius: 10px; padding: 10px; }
.stat b { display: block; font-size: 20px; }
.pkg { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.pkg .price { font-family: var(--display); font-size: 32px; font-weight: 800; margin: 4px 0 8px; }
.pkg .price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.pkg .fit {
  margin-top: auto; text-align: center; border-radius: 10px; padding: 8px 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
}
.pkg.starter { border-color: #f3c9a8; }
.pkg.starter .tag { color: var(--orange); }
.pkg.starter .fit { background: #fff1e6; color: var(--orange); }
.pkg.growth { border-color: var(--green); box-shadow: 0 12px 30px rgba(31,138,76,.12); }
.pkg.growth .tag { color: var(--green); }
.pkg.growth .fit { background: var(--green-soft); color: var(--green); }
.pkg.scale { border-color: #d9d0f5; }
.pkg.scale .tag { color: var(--purple); }
.pkg.scale .fit { background: var(--purple-soft); color: var(--purple); }
.pkg.custom { border-color: #bfe6e4; }
.pkg.custom .tag { color: #0f766e; }
.most {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #14532d; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 6px;
}
.tick-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; font-size: 13.5px; }
.tick-list li { display: flex; gap: 8px; }
.phones-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.phone-sm {
  width: 178px;
  padding: 8px;
  border-radius: 28px;
  margin: 0;
  flex: none;
}
.phone-sm .phone-notch { width: 72px; height: 12px; margin-bottom: 6px; }
.phone-sm .phone-screen {
  min-height: 310px;
  padding: 10px 8px 12px;
  border-radius: 20px;
}
.phone-sm .phone-top { margin-bottom: 8px; }
.phone-sm .phone-top img { width: 20px; height: 20px; }
.phone-sm .phone-top span { font-size: 9px; }
.phone-sm .dash-title { font-size: 12px; margin-bottom: 8px; }
.phone-sm .dash-card { padding: 7px 8px; }
.phone-sm .dash-card b { font-size: 14px; margin-top: 2px; }
.phone-sm .dash-card small { font-size: 9px; }
.phone-sm .dash-grid { gap: 6px; }
.mgr-mini { margin-top: 8px; }
.mgr-mini div {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 700; color: #d8d8de;
  padding: 6px 2px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mgr-mini span { color: #8b8b96; font-size: 11px; }
.offer-hero-visual {
  overflow: hidden;
  min-height: 500px;
}
.offer-stage {
  position: relative;
  z-index: 2;
  height: 500px;
  width: 100%;
}
.offer-stage .ui-laptop {
  position: absolute;
  left: 4%;
  bottom: 14%;
  width: 54%;
  max-width: 280px;
  margin: 0;
  z-index: 1;
}
.offer-stage .ui-laptop .lid { min-height: 168px; }
.offer-stage .ui-laptop .pad { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.offer-stage .phone-sm {
  position: absolute;
  left: 46%;
  bottom: 6%;
  z-index: 3;
  margin: 0;
}
.offer-stage .qr-prop {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 76px;
  margin: 0;
  z-index: 2;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.compare article { min-height: 100%; }
.compare ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.compare li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14.5px; }
.compare .mark {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 800; flex: none; margin-top: 1px; color: #fff;
}
.compare .no { background: #d1d5db; }
.compare .yes { background: var(--green); }
.compare.vs-feasto { border-color: #c8ead4; box-shadow: 0 10px 28px rgba(31,138,76,.08); }

.crumb-current { color: var(--red); font-weight: 700; }

.offer-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.offer-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px 20px 20px; display: flex; flex-direction: column; min-height: 240px;
}
.offer-card .ico {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px;
}
.offer-card .ico img { width: 26px; height: 26px; }
.offer-card h3 { font-size: 18px; letter-spacing: 0.02em; margin-bottom: 10px; }
.offer-card .amt { font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1; }
.offer-card .amt small { font-size: 14px; font-weight: 700; color: #555; }
.offer-card .vat { color: var(--muted); font-size: 13px; margin: 4px 0 10px; }
.offer-pill {
  display: inline-flex; align-self: flex-start; border-radius: 999px; padding: 5px 10px;
  font-size: 12px; font-weight: 800; margin-bottom: 12px;
}
.offer-card p { color: var(--muted); font-size: 14px; flex: 1; }
.offer-card.red .ico { background: var(--red-soft); }
.offer-card.red .offer-pill { background: var(--red-soft); color: var(--red); }
.offer-card.red .link-more { color: var(--red); }
.offer-card.green .ico { background: var(--green-soft); }
.offer-card.green .offer-pill { background: var(--green-soft); color: var(--green); }
.offer-card.green .link-more { color: var(--green); }
.offer-card.orange .ico { background: var(--orange-soft); }
.offer-card.orange .link-more { color: var(--orange); }
.offer-card.purple .ico { background: var(--purple-soft); }
.offer-card.purple .offer-pill { background: var(--purple-soft); color: var(--purple); }
.offer-card.purple .link-more { color: var(--purple); }
.offer-two { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; margin-top: 18px; }
.eco {
  display: grid; gap: 18px;
}
.eco-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; }
.eco-node { text-align: center; width: 92px; }
.eco-node .dot {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 6px;
  display: grid; place-items: center;
}
.eco-node .dot img { width: 24px; height: 24px; }
.eco-node span { font-size: 11px; font-weight: 700; line-height: 1.25; display: block; }
.eco-arrow { color: var(--red); font-weight: 800; }
.zero-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-weight: 800; color: var(--red); }
.zero-gift {
  width: 42px; height: 42px; border-radius: 12px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; flex: none;
}
.combo {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px;
}
.combo-item { text-align: center; font-size: 11px; font-weight: 800; }
.combo-item img, .combo-item .dot { width: 40px; height: 40px; margin: 0 auto 4px; }
.combo .plus, .combo .eq { font-size: 22px; font-weight: 800; color: #999; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.navy-cta {
  background: var(--navy); color: #fff; border-radius: 28px;
  display: grid; grid-template-columns: 180px 1fr auto; gap: 24px; align-items: center;
  padding: 28px 32px; margin: 10px 0 8px;
}
.navy-cta h2 { color: #fff; font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 8px; }
.navy-cta p { color: #c9d2de; max-width: 460px; }
.navy-cta img { width: 160px; }
.navy-checks { display: flex; gap: 14px; margin-top: 12px; font-size: 13px; font-weight: 700; flex-wrap: wrap; }
.btn-wa { gap: 8px; }
.checks-green .tick { background: var(--green); }

.t-grid > *, .offer-two > *, .navy-cta > *, .svc-grid > *, .pkg-grid > *,
.offer-cards > *, .cta-banner > *, .footer-grid > *, .contact-grid > * {
  min-width: 0;
}

@media (max-width: 1024px) {
  .svc-grid, .price-grid, .pkg-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .flow, .mkt-benefits, .reassurance, .logo-row { grid-template-columns: repeat(3, 1fr); }
  .rewards-grid, .manager-grid, .split, .contact-grid, .offer-banner, .svc-hero,
  .offer-two, .navy-cta, .t-grid { grid-template-columns: 1fr; }
  .feat-grid.g3, .feat-grid.g4, .feat-grid.g6 { grid-template-columns: repeat(2, 1fr); }
  .process.cols-4, .process.cols-5, .process.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .zero-badge { position: relative; left: auto; top: auto; transform: none; margin: 16px auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-flow { grid-template-columns: 1fr; }
  .how-arrow { width: 2px; height: 28px; margin: 0 auto; background: repeating-linear-gradient(180deg, var(--red) 0 8px, transparent 8px 14px); }
  .offer-hero-visual, .offer-stage { min-height: 460px; }
  .offer-stage { height: 460px; }
  .compare { grid-template-columns: 1fr; }
  .navy-cta { justify-items: start; }
  .navy-cta img { width: 140px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .menu-toggle { display: inline-block; }
  .brand { min-width: 0; }
  .brand img { width: 40px; height: 40px; }
  .brand-text strong { font-size: 18px; }
  .header-inner { grid-template-columns: 1fr auto; justify-content: space-between; height: var(--header-h); }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 20px;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto; z-index: 60;
    grid-column: 1 / -1;
  }
  .nav.open { display: block; }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li > a,
  .nav-drop > button { padding: 12px 8px; font-size: 16px; }
  .dropdown { position: static; transform: none; padding: 0; display: none; min-width: 0; }
  .dropdown-inner { box-shadow: none; border: 0; padding: 0 0 0 8px; }
  .nav-drop.open .dropdown { display: block; }
  .header-cta .btn { display: none; }

  .hero-trust, .form-row, .checks, .mgr-feats, .cta-banner, .steps { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; padding: 0 16px; min-height: 0; }
  .hero-copy { padding: 24px 0 72px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-visual { min-height: 380px; border-radius: 20px; }
  .hero-wave { height: 56px; }
  .hero-visual::after { background: linear-gradient(180deg, #fff 0%, transparent 22%); }
  .mascot { width: min(78%, 280px); bottom: 56px; }
  .float-card {
    min-width: 0; max-width: calc(50% - 10px); padding: 8px 10px;
  }
  .float-card img { width: 28px; height: 28px; }
  .float-card strong { font-size: 11px; }
  .float-card span { font-size: 11px; }
  .float-card span span { display: none; }
  .float-card.c1 { top: 12px; left: 8px; }
  .float-card.c2 { bottom: 48px; left: 8px; }
  .float-card.c3 { top: 12px; right: 8px; left: auto; }
  .float-card.c4 { bottom: 48px; right: 8px; left: auto; }

  .offer-hero-visual { min-height: 380px; }
  .offer-stage { height: 380px; }
  .offer-stage .phone-sm { left: 42%; width: 148px; }
  .offer-stage .qr-prop { width: 56px; }
  .cta-banner { display: flex; flex-direction: column; align-items: stretch; padding: 24px 20px; }
  .cta-banner .btn { width: 100%; white-space: normal; }
  .cta-left { align-items: flex-start; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { display: none; }
  .order-track { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
  .page-hero { padding: 32px 0 24px; }
  .page-hero .lead { font-size: 16px; }
  .offer-banner { padding: 28px 20px; border-radius: 20px; }
  .form { padding: 20px 16px; }
  .svc-visual { min-height: 340px; border-radius: 20px; }
  .devices { min-height: 300px; padding: 20px 12px 24px; }
  .notice { max-width: min(200px, calc(100% - 28px)); font-size: 12px; }
  .phone { width: min(280px, 100%); }
  .btn { white-space: normal; }
  .navy-cta { padding: 24px 20px; gap: 16px; }
  .navy-cta .btn { width: 100%; }
  .svc-hero { padding: 20px 0 12px; }
  .svc-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-trust li { flex-direction: row; align-items: center; gap: 10px; }
}

@media (max-width: 600px) {
  .svc-grid, .price-grid, .pkg-grid, .mkt-benefits, .reassurance, .values,
  .feat-grid.g3, .feat-grid.g4, .feat-grid.g6, .process.cols-4, .process.cols-5,
  .process.cols-6, .offer-cards, .value-grid, .compare, .why-grid {
    grid-template-columns: 1fr;
  }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .offer-hero-visual { min-height: 320px; }
  .offer-stage { height: 320px; }
  .offer-stage .ui-laptop { width: 62%; bottom: 18%; }
  .offer-stage .phone-sm { left: auto; right: 8%; width: 132px; bottom: 8%; }
  .offer-stage .qr-prop { display: none; }
  .phone-sm .phone-screen { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .svc-card, .offer-card, .t-card { min-height: 0; }
  .zero-row { flex-wrap: wrap; }
  .combo { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .example-chip { position: static; display: inline-flex; margin-bottom: 12px; }
  .rewards-stage { min-height: 0; }
  .rewards-stage .mascot-sm { width: 160px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
:focus-visible { outline: 3px solid rgba(227,30,36,0.45); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
:focus-visible { outline: 3px solid rgba(227,30,36,0.45); outline-offset: 2px; }
