/* ==========================================================================
   Regurbusiness — styles (mobile-first)
   ========================================================================== */
:root {
  /* Brand palette (adopted from the Register Your Business identity) */
  --brand: #009C94;          /* teal, for icons/highlights/large text */
  --brand-btn: #007D76;      /* button fill: AA contrast with white text */
  --brand-text: #007D76;     /* small teal text on light backgrounds */
  --brand-light: #4FD1C5;    /* teal on dark backgrounds */
  --deep: #062E2C;           /* dark sections & footer */
  --deep-900: #04201F;
  --ink: #09161A;
  --body: #4A5A5E;
  --muted: #57666A;
  --line: #DBE5E5;
  --tint: #ECF3F1;
  --tint-2: #E6F3F1;
  --soft: #D6F2EE;
  --white: #FFFFFF;
  --bg: #F7FBF9;
  --wa: #25D366;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(6, 46, 44, .06), 0 1px 3px rgba(6, 46, 44, .06);
  --shadow: 0 10px 30px -12px rgba(6, 46, 44, .22);
  --shadow-lg: 0 24px 60px -20px rgba(6, 46, 44, .32);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 64px;

  /* legacy aliases kept so older rules keep working */
  --navy: var(--deep);
  --navy-900: var(--deep);
  --navy-950: var(--deep-900);
  --navy-700: #0B4744;
  --navy-50: var(--tint);
  --navy-100: #CFE2E0;
  --gold: var(--brand);
  --gold-text: var(--brand-text);
  --gold-light: var(--brand-light);
  --gold-50: var(--soft);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--body); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
a { color: var(--navy); }
ul, ol { margin: 0; padding: 0; }
em { font-style: normal; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand-btn); outline-offset: 3px; border-radius: 6px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--deep); color: #fff; padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.skip-link:focus { top: 12px; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 20px; }

/* ---------- Placeholder labels (toggle in js/config.js) ---------- */
.ph-label { display: none; }
.show-placeholders .ph-label { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #8A5A00; background: #FFF3CD; border: 1px dashed #D9A400; padding: 1px 6px; border-radius: 4px; margin-top: 6px; }
.show-placeholders .ph-label--block { display: block; width: fit-content; margin: 0 44px 14px 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; min-height: 48px; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 15px; line-height: 1.2; text-decoration: none; text-align: center; border: 2px solid transparent; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s; }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn--lg { min-height: 54px; padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--gold, .btn--brand { background: var(--brand-btn); color: #fff; box-shadow: 0 8px 20px -10px rgba(0, 156, 148, .85); }
.btn--gold:hover, .btn--brand:hover { background: #00655F; }
.btn--dark { background: var(--deep); color: #fff; }
.btn--dark:hover { background: #0B4744; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--navy-100); }
.btn--outline:hover { border-color: var(--navy); background: var(--navy-50); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy-100); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: var(--brand-light); color: var(--brand-light); }
@media (max-width: 599px) { .btn--block-mobile { width: 100%; } }

/* ---------- Tags / pills ---------- */
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.tag--gold, .tag--brand { background: var(--brand-btn); color: #fff; }
.tag--muted { background: var(--navy-50); color: var(--navy); }
.tag--gold-outline, .tag--brand-outline { color: var(--brand-light); border: 1px solid rgba(79, 209, 197, .45); }
.pill { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.pill--gold, .pill--brand { background: var(--soft); color: #024E4A; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,251,249,.92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.brand__logo { width: 40px; height: 40px; border-radius: 10px; background: #000; flex: none; }
.brand__text { line-height: 1.15; max-width: 9ch; }
.brand__text span { color: var(--brand-text); }
.brand--light { color: #fff; }
.brand--light .brand__text span { color: var(--brand-light); }
@media (min-width: 420px) { .brand__text { max-width: none; } }
@media (min-width: 960px) { .brand { font-size: 19px; } .brand__logo { width: 46px; height: 46px; border-radius: 12px; } }

.nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: transform .2s, background-color .2s; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

.nav { position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 20px 20px; display: none; }
.nav.is-open { display: block; }
.nav ul { list-style: none; }
.nav li a { display: block; padding: 13px 4px; color: var(--ink); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--line); }
.nav__cta { width: 100%; margin-top: 16px; }

@media (min-width: 960px) {
  :root { --header-h: 74px; }
  .nav-toggle { display: none; }
  .nav { position: static; display: flex !important; align-items: center; gap: 28px; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .nav ul { display: flex; gap: 26px; }
  .nav li a { padding: 6px 0; border: 0; font-size: 15px; color: var(--body); }
  .nav li a:hover { color: var(--navy); }
  .nav__cta { width: auto; margin: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 40px 0 28px; background:
  radial-gradient(1000px 420px at 85% -10%, rgba(0,156,148,.12), transparent 60%),
  linear-gradient(180deg, var(--tint) 0%, var(--bg) 100%); overflow: hidden; }
.hero__grid { display: grid; gap: 40px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(0,156,148,.18); }
.hero h1 { font-size: clamp(2rem, 7.4vw, 3.5rem); font-weight: 800; letter-spacing: -.035em; margin-bottom: 18px; }
.hero h1 em { color: var(--brand-text); background: linear-gradient(transparent 62%, rgba(0,156,148,.22) 62%); padding: 0 .06em; }
.hero__lede { font-size: clamp(1.02rem, 2.6vw, 1.2rem); max-width: 40ch; color: var(--body); margin-bottom: 28px; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__assurances { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; font-size: 14px; font-weight: 500; color: var(--ink); }
.hero__assurances li { display: inline-flex; align-items: center; gap: 6px; }
.hero__assurances .icon { color: var(--brand); }
@media (min-width: 560px) { .hero__actions { flex-direction: row; flex-wrap: wrap; } }
@media (min-width: 960px) {
  .hero { padding: 72px 0 40px; }
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: 56px; }
}

.hero__card { display: none; }
@media (min-width: 960px) { .hero__card { display: block; } }
.launch-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; position: relative; }
.launch-card::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border-radius: var(--radius-lg); background: var(--deep); z-index: -1; opacity: .9; }
.launch-card__head { display: flex; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.launch-card__seal { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--soft); color: var(--brand-text); }
.launch-card__seal .icon { width: 24px; height: 24px; }
.launch-card__title { margin: 0; font-weight: 700; color: var(--ink); }
.launch-card__sub { margin: 0; font-size: 13px; color: var(--muted); }
.launch-steps { list-style: none; padding: 18px 0; display: grid; gap: 14px; }
.launch-steps li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); }
.launch-steps li span { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; position: relative; }
.launch-steps li.is-done { color: var(--ink); }
.launch-steps li.is-done span { background: var(--brand-btn); border-color: var(--brand-btn); }
.launch-steps li.is-done span::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.launch-steps li.is-active { color: var(--ink); font-weight: 600; }
.launch-steps li.is-active span { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,156,148,.15); }
.launch-steps li.is-active span::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--brand); }
.launch-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.launch-card__chat { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.launch-card__chat .icon { color: #1DA851; }

/* Trust bar */
.trust-bar { list-style: none; margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.trust-bar li { display: flex; flex-direction: column; align-items: flex-start; padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar li:nth-child(2n) { border-right: 0; }
.trust-bar li:nth-child(n+3) { border-bottom: 0; }
.trust-bar strong { font-size: clamp(1.35rem, 5vw, 1.8rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.trust-bar strong::after { content: ""; display: block; width: 22px; height: 3px; border-radius: 2px; background: var(--brand); margin: 8px 0 6px; }
.trust-bar span { font-size: 13px; line-height: 1.35; color: var(--body); font-weight: 500; }
@media (min-width: 760px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
  .trust-bar li { border-bottom: 0; padding: 22px 24px; }
  .trust-bar li:nth-child(2n) { border-right: 1px solid var(--line); }
  .trust-bar li:last-child { border-right: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: var(--tint); }
@media (min-width: 960px) { .section { padding: 96px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head--left { text-align: left; margin: 0; }
.section-head h2 { font-size: clamp(1.65rem, 4.6vw, 2.5rem); font-weight: 800; letter-spacing: -.03em; }
.section-head p { font-size: 1.05rem; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 12px !important; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--brand); }
.kicker--center { justify-content: center; }

/* Checklists */
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.45; color: var(--ink); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--soft); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid var(--brand-text); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checklist--light li { color: rgba(255,255,255,.9); }
.checklist--light li::before { background: rgba(79,209,197,.18); }
.checklist--light li::after { border-color: var(--brand-light); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; gap: 18px; }
@media (min-width: 680px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.price-card:hover { box-shadow: var(--shadow); }
.price-card .tag { align-self: flex-start; margin-bottom: 12px; }
.price-card__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.price-card__for { font-size: 14px; color: var(--muted); margin-bottom: 18px; min-height: 2.9em; }
.price { margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.price__amount { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.price__dash { margin: 0 .1em; color: var(--muted); font-weight: 600; }
.price-card .checklist { margin-bottom: 24px; flex: 1; }
.price-card--popular { border: 2px solid var(--brand); box-shadow: var(--shadow); background: linear-gradient(180deg, var(--soft) 0, #fff 150px); }
.price-card--popular .price__amount { font-size: 1.6rem; }
@media (min-width: 1200px) { .price-card { padding-inline: 20px; } .price-card .btn { font-size: 14px; padding-inline: 8px; gap: .4em; white-space: nowrap; } .price-card--popular { transform: translateY(-8px); } .price-card--popular:hover { transform: translateY(-10px); } .price-card--popular .price__amount { font-size: 1.45rem; } }

.ultimate-card { display: grid; gap: 28px; background: var(--deep); background-image: radial-gradient(700px 300px at 0% 0%, rgba(0,156,148,.3), transparent 60%); color: rgba(255,255,255,.85); border-radius: var(--radius-lg); padding: 30px 22px; box-shadow: var(--shadow-lg); }
.ultimate-card h4 { color: #fff; font-size: clamp(1.3rem, 3.6vw, 1.7rem); font-weight: 800; margin: 14px 0 10px; }
.ultimate-card h5 { color: var(--brand-light); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.price--light { border-color: rgba(255,255,255,.14); }
.price--light .price__amount { color: #fff; }
.ultimate-card .price { border: 0; padding: 0; margin: 18px 0 22px; }
.ultimate-card__features { display: grid; gap: 24px; }
@media (min-width: 680px) { .ultimate-card__features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ultimate-card { grid-template-columns: .9fr 1.6fr; padding: 40px; gap: 48px; align-items: center; } }

/* ---------- Bundle (flagship) ---------- */
.bundle { position: relative; background: var(--deep); color: rgba(255,255,255,.82); overflow: hidden; }
.bundle::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(600px 320px at 100% 0%, rgba(0,156,148,.35), transparent 60%),
  radial-gradient(500px 300px at 0% 100%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none; }
.bundle::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--brand-light), transparent); }
.bundle .container { position: relative; }
.bundle__head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.bundle__head h2 { color: #fff; font-size: clamp(1.65rem, 4.8vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; margin: 18px 0 16px; }
.bundle__head h2 em { color: var(--brand-light); }
.bundle__head p { font-size: 1.05rem; }
.bundle__head strong { color: #fff; }
.bundle__grid { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (min-width: 760px) { .bundle__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.bundle-card { display: flex; flex-direction: column; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 28px 24px 24px; }
.bundle-card--featured { background: rgba(255,255,255,.1); border: 2px solid var(--brand-light); }
.bundle-card__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-light); font-weight: 700; margin-bottom: 8px; }
.bundle-card h3 { color: #fff; font-size: 1.3rem; font-weight: 700; }
.bundle-card .price { margin: 12px 0 20px; }
.bundle-card .price__amount { font-size: 2.4rem; }
.bundle-card .checklist { flex: 1; margin-bottom: 24px; }
.bundle__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; margin-top: 36px; }
.bundle__cta p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px 12px; margin: 0 -20px 16px; padding-inline: 20px; scroll-snap-type: x proximity; }
.gallery-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .gallery-tabs { flex-wrap: wrap; justify-content: center; overflow: visible; margin-inline: 0; padding-inline: 0; } }
.gallery-tab { flex: none; scroll-snap-align: start; min-height: 42px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--navy-100); background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background-color .2s, color .2s, border-color .2s; }
.gallery-tab:hover { border-color: var(--navy); }
.gallery-tab[aria-pressed="true"] { background: var(--deep); color: #fff; border-color: var(--deep); }

.gallery-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 680px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1040px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.g-item { margin: 0; }
.g-item__btn { display: block; width: 100%; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: zoom-in; text-align: left; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.g-item__btn:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.g-item__frame { display: block; position: relative; aspect-ratio: 3 / 4; background: var(--navy-50); overflow: hidden; }
.g-item--websites .g-item__frame { aspect-ratio: 4 / 3; }
@media (min-width: 680px) { .g-item__frame, .g-item--websites .g-item__frame { aspect-ratio: 4 / 5; } }
.g-item__frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; padding: 6px; transition: transform .35s; }
.g-item__btn:hover img { transform: scale(1.04); }
.g-item__zoom { position: absolute; right: 8px; bottom: 8px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(13,27,56,.78); color: #fff; opacity: 0; transition: opacity .2s; }
.g-item__btn:hover .g-item__zoom, .g-item__btn:focus-visible .g-item__zoom { opacity: 1; }
.g-item__meta { display: block; padding: 10px 12px 12px; }
.g-item__cat { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-text); margin-bottom: 2px; }
.g-item__caption { display: block; font-size: 13px; line-height: 1.35; color: var(--ink); font-weight: 500; }

/* Upload-slot placeholder */
.slot { position: absolute; inset: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; border: 2px dashed #C5CEDD; border-radius: 10px; color: var(--muted); padding: 10px; background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(31,56,100,.025) 10px 20px); }
.slot__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.slot__icon .icon { width: 24px; height: 24px; }
.slot__title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--deep); }
.slot__hint { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; line-height: 1.3; }
.slot__hint .icon { width: 12px; height: 12px; }
.gallery-empty { grid-column: 1 / -1; text-align: center; padding: 30px; color: var(--muted); }
.noscript-note { text-align: center; }

.inline-cta { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; }
.inline-cta p { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.inline-cta--plain { background: transparent; border: 0; padding: 0; }
@media (min-width: 760px) { .inline-cta { flex-direction: row; justify-content: space-between; padding: 26px 32px; text-align: left; } .inline-cta--plain { justify-content: center; gap: 22px; } }

/* Lightbox */
.lightbox { width: min(100% - 24px, 920px); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.lightbox::backdrop { background: rgba(13,27,56,.82); backdrop-filter: blur(3px); }
.lightbox__inner { position: relative; display: flex; flex-direction: column; max-height: calc(100dvh - 24px); }
.lightbox__close { position: absolute; top: 10px; right: 10px; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(13,27,56,.8); color: #fff; cursor: pointer; }
.lightbox__figure { margin: 0; display: flex; flex-direction: column; min-height: 0; }
.lightbox__media { position: relative; background: var(--navy-50); display: grid; place-items: center; min-height: 300px; max-height: calc(100dvh - 160px); overflow: auto; }
.lightbox__media img { max-height: calc(100dvh - 160px); width: auto; object-fit: contain; }
.lightbox__media .slot { position: relative; inset: auto; width: calc(100% - 32px); min-height: 50vh; margin: 16px; }
.lightbox__caption { padding: 14px 20px 4px; font-size: 15px; color: var(--ink); font-weight: 500; }
.lightbox__caption small { display: block; font-size: 12px; color: var(--brand-text); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lightbox__nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px 14px; }
.lightbox__btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer; }
.lightbox__btn:hover { border-color: var(--navy); }
.lightbox__count { font-size: 13px; color: var(--muted); }

/* ---------- How it works ---------- */
.steps { list-style: none; display: grid; gap: 0; position: relative; max-width: 560px; margin: 0 auto; }
.step { position: relative; display: flex; gap: 18px; padding-bottom: 28px; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 50px; bottom: 4px; width: 2px; background: linear-gradient(var(--brand), var(--line)); }
.step__num { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--deep); color: #fff; font-weight: 800; font-size: 18px; box-shadow: 0 0 0 6px var(--tint); }
.step:last-child .step__num { background: var(--brand-btn); color: #fff; }
.step h3 { font-size: 1.1rem; margin: 10px 0 4px; }
.step p { margin: 0; font-size: 15px; }
@media (min-width: 960px) {
  .steps { max-width: none; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .step { flex-direction: column; gap: 10px; padding: 0; text-align: left; }
  .step:not(:last-child)::before { left: 60px; right: -12px; top: 23px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--brand), var(--line)); }
}

/* ---------- Why ---------- */
.why { display: grid; gap: 36px; }
.why .section-head .btn { margin-top: 8px; }
.why-grid { list-style: none; display: grid; gap: 14px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why { grid-template-columns: .8fr 1.4fr; gap: 56px; align-items: start; } .why .section-head { position: sticky; top: 110px; } }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }

.why-item__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--deep); color: var(--brand-light); margin-bottom: 14px; }
.why-item__icon .icon { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { margin: 0; font-size: 15px; }

/* ---------- Testimonials ---------- */
.testimonials { list-style: none; display: grid; gap: 18px; }
@media (min-width: 860px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: 8px; right: 20px; font-size: 72px; line-height: 1; color: var(--brand); opacity: .3; font-family: Georgia, serif; }
.testimonial blockquote { margin: 0 0 20px; flex: 1; }
.testimonial blockquote p { margin: 0; color: var(--ink); font-size: 16px; }
.testimonial__by { margin: 0; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.testimonial__by strong { color: var(--ink); }
.testimonial__by span { font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq details[open] { border-color: var(--navy-100); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; font-weight: 600; color: var(--ink); font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--navy-50) no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23007D76' stroke-width='3' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--soft); }
.faq__body { padding: 0 20px 18px; }
.faq__body p:last-child { margin: 0; }
.faq-wrap .inline-cta { margin-top: 32px; }

/* ---------- Closing band ---------- */
.closing { background: var(--bg); padding: 0 0 64px; }
.closing__inner { background: var(--deep); background-image: radial-gradient(600px 240px at 50% 0%, rgba(0,156,148,.4), transparent 70%); border-radius: var(--radius-lg); padding: 44px 24px; text-align: center; color: rgba(255,255,255,.85); }
.closing h2 { color: #fff; font-size: clamp(1.6rem, 4.5vw, 2.3rem); font-weight: 800; }
.closing p { margin-bottom: 24px; }
@media (max-width: 559px) { .closing .btn { width: 100%; } .closing .container { padding-inline: 16px; } }
@media (min-width: 960px) { .closing { padding-bottom: 96px; } .closing__inner { padding: 64px 40px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-900); color: rgba(255,255,255,.72); padding: 56px 0 96px; font-size: 15px; }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr .8fr; } }
.footer-brand p { margin-top: 14px; max-width: 34ch; }
.footer-parent { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-parent strong { color: var(--brand-light); font-weight: 600; }
.footer-title { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; display: grid; gap: 4px; }
.footer-links a, .footer-links span { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--brand-light); }
.socials { list-style: none; display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: #fff; transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--brand-light); color: var(--brand-light); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; } .site-footer { padding-bottom: 32px; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 150; display: inline-flex; align-items: center; gap: 10px; height: 60px; min-width: 60px; padding: 0 18px; justify-content: center; border-radius: 999px; background: var(--wa); color: #fff; text-decoration: none; font-weight: 700; box-shadow: 0 10px 28px -6px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s; }
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--wa); animation: wa-pulse 2.4s ease-out infinite; }
.wa-float__label { display: none; font-size: 15px; }
@media (min-width: 760px) { .wa-float__label { display: inline; } .wa-float { padding: 0 22px 0 16px; } }
@media (max-width: 759px) { .wa-float { padding: 0; width: 60px; } }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 80%, 100% { transform: scale(1.35); opacity: 0; } }

/* ==========================================================================
   Sections added with the Register Your Business content
   ========================================================================== */

/* ---------- The reality / the solution ---------- */
.reality-list { list-style: none; display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
@media (min-width: 760px) { .reality-list { grid-template-columns: 1fr 1fr; gap: 14px 22px; } }
.reality-list li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px 14px 46px; font-size: 15px; color: var(--ink); box-shadow: var(--shadow-sm); }
.reality-list li::before { content: ""; position: absolute; left: 15px; top: 17px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #E4B4B4; background: #FDF1F1; }
.reality-list li::after { content: ""; position: absolute; left: 20px; top: 22px; width: 8px; height: 8px; background:
  linear-gradient(45deg, transparent 44%, #C25B5B 44% 56%, transparent 56%),
  linear-gradient(-45deg, transparent 44%, #C25B5B 44% 56%, transparent 56%); }

.solution { margin-top: 44px; background: var(--deep); background-image: radial-gradient(700px 300px at 50% 0%, rgba(0,156,148,.35), transparent 65%); border-radius: var(--radius-lg); padding: 34px 22px; text-align: center; color: rgba(255,255,255,.82); box-shadow: var(--shadow-lg); }
.solution h3 { color: #fff; font-size: clamp(1.35rem, 4vw, 2rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
.solution .kicker { color: var(--brand-light); }
.solution .kicker::before { background: var(--brand-light); }
.solution__lede { max-width: 52ch; margin: 0 auto 28px; }
.rbl-strip { list-style: none; display: grid; gap: 14px; text-align: left; }
@media (min-width: 620px) { .rbl-strip { grid-template-columns: repeat(5, 1fr); gap: 12px; } }
.rbl-strip li { display: grid; gap: 4px; align-content: start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px; }
.rbl-strip__num { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--brand-light); }
.rbl-strip strong { color: #fff; font-size: 1.05rem; }
.rbl-strip span { font-size: 14px; line-height: 1.4; }
@media (min-width: 1000px) { .solution { padding: 44px 40px; } }

/* ---------- Pricing group headings ---------- */
.tier-group { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-text); margin: 34px 0 16px; }
.tier-group::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pricing-grid:first-of-type + .tier-group { margin-top: 40px; }
.pricing-grid--2 { gap: 18px; }
@media (min-width: 680px) { .pricing-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .pricing-grid--2 { grid-template-columns: 1fr 1fr; } .pricing-grid--2 .price-card--popular { transform: none; } .pricing-grid--2 .price-card--popular:hover { transform: none; } .pricing-grid--2 .price-card { padding-inline: 26px; } .pricing-grid--2 .price-card .btn { font-size: 15px; padding-inline: 20px; white-space: normal; } .pricing-grid--2 .price-card--popular .price__amount { font-size: 1.9rem; } }
.launch-grid { display: grid; gap: 20px; }
@media (min-width: 1100px) { .launch-grid { grid-template-columns: 1fr 1fr; align-items: start; } .launch-grid .ultimate-card { grid-template-columns: 1fr; padding: 32px; } .launch-grid .ultimate-card__features { grid-template-columns: 1fr 1fr; } }
.ultimate-card--max { background-image: radial-gradient(700px 300px at 100% 0%, rgba(79,209,197,.28), transparent 60%); }
.pricing-note { margin-top: 22px; font-size: 14px; color: var(--muted); text-align: center; }

/* ---------- After registration: benefit grid ---------- */
.after { display: grid; gap: 34px; }
@media (min-width: 1000px) { .after { grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; } .after .section-head { position: sticky; top: 110px; } }
.after .section-head .btn { margin-top: 8px; }
.benefit-grid { list-style: none; display: grid; gap: 12px; }
@media (min-width: 560px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-grid li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--radius); padding: 16px 18px; }
.benefit-grid h3 { font-size: 1rem; margin-bottom: 4px; }
.benefit-grid p { margin: 0; font-size: 14px; }

/* ---------- Journey ---------- */
.journey { margin-top: 56px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 20px; box-shadow: var(--shadow-sm); }
.journey h3 { font-size: clamp(1.3rem, 3.6vw, 1.8rem); font-weight: 800; letter-spacing: -.03em; }
.journey__lede { max-width: 52ch; margin: 0 auto 28px; }
.journey-list { list-style: none; display: grid; gap: 10px; text-align: left; margin-bottom: 26px; }
@media (min-width: 720px) { .journey-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .journey-list { grid-template-columns: repeat(7, 1fr); gap: 8px; } }
.journey-list li { display: grid; gap: 3px; align-content: start; background: var(--tint); border-radius: var(--radius); padding: 14px; }
.journey-list span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-btn); color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.journey-list strong { color: var(--ink); font-size: 14px; }
.journey-list em { font-style: normal; font-size: 13px; line-height: 1.35; color: var(--muted); }
@media (min-width: 1000px) { .journey { padding: 44px 40px; } }

/* ---------- Who this is for ---------- */
.who-grid { list-style: none; display: grid; gap: 14px; }
@media (min-width: 620px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }
.who-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.who-grid h3 { font-size: 1.05rem; margin-bottom: 6px; }
.who-grid p { margin: 0; font-size: 15px; }

/* ---------- Closing logo ---------- */
.closing__logo { width: min(260px, 70%); height: auto; margin: 0 auto 22px; border-radius: var(--radius); }
.closing__note { margin: 16px 0 0; font-size: 14px; color: rgba(255,255,255,.65); }

/* Footer brand logo sizing */
.site-footer .brand__logo { width: 44px; height: 44px; }

/* ==========================================================================
   Legal pages (privacy, terms, refunds)
   ========================================================================== */
.legal-hero { background: linear-gradient(180deg, var(--tint) 0%, var(--bg) 100%); padding: 40px 0 32px; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .legal-hero { padding: 64px 0 48px; } }
.legal-crumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.legal-crumb a { color: var(--brand-text); text-decoration: none; font-weight: 600; }
.legal-crumb a:hover { text-decoration: underline; }
.legal-crumb span { margin: 0 6px; }
.legal-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.legal-lede { font-size: 1.05rem; max-width: 60ch; }
.legal-dates { font-size: 14px; color: var(--muted); margin: 0; }
.legal-dates strong { color: var(--ink); font-weight: 600; }

.legal-body { display: grid; gap: 32px; padding-block: 40px 64px; }
@media (min-width: 1000px) { .legal-body { grid-template-columns: 260px 1fr; gap: 56px; padding-block: 56px 96px; } }

.legal-toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
@media (min-width: 1000px) { .legal-toc { position: sticky; top: 100px; align-self: start; max-height: calc(100dvh - 140px); overflow-y: auto; } }
.legal-toc h2 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-text); margin-bottom: 12px; }
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 2px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a { display: block; padding: 7px 0 7px 26px; position: relative; font-size: 14px; line-height: 1.35; color: var(--body); text-decoration: none; }
.legal-toc a::before { content: counter(toc) "."; position: absolute; left: 0; color: var(--brand); font-weight: 700; font-size: 12px; top: 8px; }
.legal-toc a:hover { color: var(--brand-text); }

.legal-content { max-width: 72ch; counter-reset: sec; }
.legal-content section { counter-increment: sec; padding-bottom: 8px; scroll-margin-top: calc(var(--header-h) + 20px); }
.legal-content section + section { border-top: 1px solid var(--line); padding-top: 28px; }
.legal-content h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); font-weight: 700; margin-bottom: 14px; }
.legal-content h2::before { content: counter(sec) ". "; color: var(--brand-text); }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 22px 0 8px; }
.legal-content p { font-size: 15.5px; line-height: 1.7; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--brand-text); font-weight: 600; }
.legal-list { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; }
.legal-list li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.65; }
.legal-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.legal-list--numbered { counter-reset: step; }
.legal-list--numbered li { padding-left: 30px; }
.legal-list--numbered li::before { counter-increment: step; content: counter(step); left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--soft); color: #024E4A; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.legal-list--contact { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; gap: 8px; }
.legal-list--contact li { padding-left: 0; font-size: 15px; }
.legal-list--contact li::before { display: none; }

.legal-contact { margin-top: 36px; background: var(--deep); background-image: radial-gradient(500px 220px at 20% 0%, rgba(0,156,148,.35), transparent 65%); border-radius: var(--radius-lg); padding: 28px 24px; color: rgba(255,255,255,.85); }
.legal-contact h2 { color: #fff; }
.legal-contact h2::before { content: none; }
.legal-contact__links { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.legal-contact .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.legal-contact .btn--outline:hover { border-color: var(--brand-light); color: var(--brand-light); }

.footer-legal-links { margin: 0; }
.footer-legal-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-legal-links a:hover { color: var(--brand-light); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr .8fr 1fr 1.1fr .7fr; } }
.legal-content .btn--brand { color: #fff; }
.legal-content .btn--outline { color: var(--brand-text); }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner { position: fixed; z-index: 160; left: 12px; right: 12px; bottom: 12px; display: grid; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 18px; transform: translateY(120%); transition: transform .35s ease; }
.cookie-banner.is-in { transform: none; }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; transform: none; } }
.cookie-banner__text strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.cookie-banner__text p { margin: 0; font-size: 13.5px; line-height: 1.5; }
.cookie-banner__text a { color: var(--brand-text); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__actions .btn { flex: 1; }
@media (max-width: 759px) {
  .cookie-banner { bottom: max(12px, env(safe-area-inset-bottom)); padding-right: 16px; }
  body.has-cookie-banner .wa-float { bottom: calc(max(16px, env(safe-area-inset-bottom)) + 168px); }
}
@media (min-width: 760px) {
  .cookie-banner { left: max(16px, env(safe-area-inset-left)); right: auto; bottom: max(16px, env(safe-area-inset-bottom)); max-width: 460px; grid-template-columns: 1fr; padding: 22px; }
  .cookie-banner__actions .btn { flex: 0 1 auto; min-width: 120px; }
}

/* ---------- About page ---------- */
.about-hero .hero__actions { margin-top: 24px; }
.about-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1000px) { .about-grid { grid-template-columns: 1.25fr .75fr; gap: 56px; } }
.about-grid .kicker { margin-bottom: 12px !important; }
.about-grid h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; }
.about-stats { margin-top: 0; grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) { .about-stats { grid-template-columns: 1fr 1fr; } .about-stats li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); } .about-stats li:nth-child(2n) { border-right: 0; } .about-stats li:nth-child(n+3) { border-bottom: 0; } }
.about-services { grid-template-columns: 1fr; }
@media (min-width: 640px) { .about-services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .about-services { grid-template-columns: repeat(4, 1fr); } }
.about-values { grid-template-columns: 1fr; }
@media (min-width: 640px) { .about-values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .about-values { grid-template-columns: repeat(3, 1fr); } }
.about-values li { padding: 20px 22px; }

/* ==========================================================================
   Discount pricing (was / now) + offer bar
   ========================================================================== */
.price__was { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 15px; line-height: 1.2; }
.price__was s { color: var(--muted); text-decoration-thickness: 2px; text-decoration-color: #C25B5B; }
.price--light .price__was s { color: rgba(255,255,255,.65); }
.price__off { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; background: #C2402F; color: #fff; }
.price--light .price__off { background: var(--brand-light); color: var(--deep-900); }
.price-card--popular .price__off { background: #C2402F; }

/* Offer bar above the header */
.offer-bar { background: var(--deep); color: #fff; text-align: center; font-size: 14px; font-weight: 600; padding: 9px 16px; line-height: 1.35; }
.offer-bar strong { color: var(--brand-light); }
.offer-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 559px) { .offer-bar { font-size: 13px; padding: 8px 12px; } }
.offer-bar__count { display: inline-block; margin-left: 4px; padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; font-size: 12px; font-weight: 700; }
.g-item__visit { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--brand-text); }
.lightbox__visit { margin-top: 12px; }

/* ==========================================================================
   Photography
   ========================================================================== */
.hero__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--tint); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 959px) {
  .hero__card { display: block; margin-top: 30px; }
  .hero__card .launch-card { display: none; }
  .hero__photo { max-height: 380px; }
  .hero__photo img { aspect-ratio: 4 / 3; object-position: center 25%; }
}
@media (min-width: 960px) {
  .hero__card { position: relative; padding-bottom: 54px; }
  .hero__photo { aspect-ratio: 4 / 5; }
  .hero__card .launch-card { position: absolute; left: -46px; bottom: 0; width: 330px; padding: 18px; z-index: 2; }
  .hero__card .launch-card::before { display: none; }
  .hero__card .launch-card__head { padding-bottom: 12px; gap: 10px; }
  .hero__card .launch-card__seal { width: 36px; height: 36px; border-radius: 10px; }
  .hero__card .launch-card__seal .icon { width: 18px; height: 18px; }
  .hero__card .launch-card__title { font-size: 14px; }
  .hero__card .launch-card__sub { font-size: 11px; }
  .hero__card .launch-steps { padding: 12px 0; gap: 9px; }
  .hero__card .launch-steps li { font-size: 12.5px; gap: 9px; }
  .hero__card .launch-steps li span { width: 17px; height: 17px; }
  .hero__card .launch-steps li.is-done span::after { left: 4px; top: 1px; width: 4px; height: 8px; }
  .hero__card .launch-card__foot { padding-top: 11px; }
  .hero__card .pill, .hero__card .launch-card__chat { font-size: 11px; }
}

/* Strip of real businesses */
.photo-strip { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
@media (min-width: 680px) { .photo-strip { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.photo-strip li { margin: 0; }
.photo-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow-sm); }

.after__photo { margin: 0 0 20px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.after__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (min-width: 1000px) { .after__photo { grid-column: 1; margin-bottom: 0; } .after .section-head { position: static; } }

.about__photo { margin: 0 0 8px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
