/* ============================================================
   SAMPARK — Brand stylesheet
   Fonts: Fredoka (headings/buttons), Nunito (body/UI)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --yellow:  #FFED00;   /* primary — buttons, accents */
  --ink:     #17160F;   /* text & dark sections */
  --paper:   #FBFAF5;   /* page background */
  --sand:    #F1EFE6;   /* image / panel fill */
  --muted:   #6B6860;   /* body / secondary text */
  --muted-2: #8D8A7F;   /* tertiary text */
  --label:   #A7A395;   /* eyebrow labels */
  --border:  #ECE9DE;   /* hairlines & card borders */
  --border-2:#DCD8CC;   /* input borders */
  --white:   #FFFFFF;

  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1320px;
  --pad-x: 7vw;
  --product-card-radius: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
a.btn, button.btn { color: unset; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: 70px var(--pad-x); }
.section--white  { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark   { background: var(--ink); color: #fff; }
.section--yellow { background: var(--yellow); }
.section__inner  { max-width: var(--container); margin: 0 auto; }
.narrow { max-width: 860px; margin: 0 auto; }

/* Page rhythm — intro band → content band (FAQ, cart, blog, auto tools, etc.) */
.page-hero,
.blog-post-hero,
.auto-hero,
.pay-hero,
.blog-hero {
  padding: 56px var(--pad-x) 48px;
  background: var(--paper);
}
.page-main,
.blog-post-main,
.auto-main,
.pay-main {
  padding: 48px var(--pad-x) 80px;
}
.page-main.section--white,
.blog-post-main.section--white,
.auto-main.section--white {
  border-top: none;
}
.page-shell { max-width: 720px; margin: 0 auto; width: 100%; }
.page-shell--wide { max-width: var(--container); }
.page-hero .display { margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; }
.page-hero .lead a,
.page-shell a.inline {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.page-hero.center .lead { margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .page-hero,
  .blog-post-hero,
  .auto-hero,
  .pay-hero,
  .blog-hero { padding: 40px var(--pad-x) 36px; }
  .page-main,
  .blog-post-main,
  .auto-main,
  .pay-main { padding: 32px var(--pad-x) 56px; }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  color: var(--label); text-transform: uppercase; margin-bottom: 12px;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; }
.display { font-size: clamp(38px, 5vw, 56px); margin-bottom: 22px; text-wrap: balance; }
.h2 { font-size: clamp(28px, 3.4vw, 36px); letter-spacing: -.01em; }
.h3 { font-size: 20px; }
.lead { font-size: 19px; line-height: 1.55; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: var(--radius-pill); border: none;
  transition: filter .15s ease, transform .15s ease, background .15s ease, color .15s ease;
}
.btn--lg { font-size: 17px; padding: 16px 32px; }
.btn--sm { font-size: 15px; padding: 11px 22px; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { filter: brightness(.96); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { filter: brightness(1.25); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-2); font-weight: 500; }
.btn--outline:hover { border-color: var(--ink); }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 21px; letter-spacing: -.02em; }
.brand-logo-wrap { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.brand-logo-wrap--light { background: var(--white); border-radius: 12px; padding: 8px 14px; }
.brand-logo { display: block; height: 50px; width: auto; }
.nav__logo--header .brand-logo { height: 32px; }
.nav__logo--footer .brand-logo { height: 50px; }
.nav__logo--footer .brand-logo-wrap--light { padding: 8px 14px; }
.nav__logo--mobile .brand-logo { height: 28px; }
.brand-mark { width: 15px; height: 15px; border-radius: 5px; background: var(--yellow); display: inline-block; }
.nav__links { display: flex; gap: 34px; font-size: 15px; font-weight: 700; color: #54514a; }
.nav__link:hover, .nav__link.is-active { color: var(--ink); }

/* ---------- Badge / pill ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 15px; border-radius: var(--radius-pill);
}
.badge .star { color: var(--yellow); }
.badge--outline { background: transparent; color: #54514a; border: 1.5px solid var(--border-2); }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; padding: 80px var(--pad-x) 70px; max-width: var(--container); margin: 0 auto; }
.hero__media { position: relative; }
.hero__blob { position: absolute; top: -18px; right: -10px; width: 120px; height: 120px; border-radius: 50%; background: var(--yellow); z-index: 0; }
.hero__panel { position: relative; z-index: 1; background: var(--sand); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 400px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.hero__cta { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; flex-wrap: wrap; }
.trust-line { font-size: 14px; font-weight: 700; color: var(--muted-2); }

/* ---------- Cards & grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.card--hover { transition: transform .2s ease, box-shadow .2s ease; }
.card--hover:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(20,18,8,.09); }
.card p { font-size: 15px; line-height: 1.55; color: var(--muted); }
.card h3 { margin-bottom: 8px; }

.icon-box { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 18px; }
.icon-chip { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }

/* numbered steps */
.step-num { font-family: var(--font-head); font-weight: 600; font-size: 18px; width: 42px; height: 42px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-row { display: flex; gap: 14px; }
.step-row .num { font-family: var(--font-head); font-weight: 600; background: var(--yellow); width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-row h3 { font-size: 18px; margin-bottom: 5px; }
.step-row p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* big step rail (how it works) */
.steprail { display: flex; flex-direction: column; gap: 18px; max-width: 1100px; margin: 0 auto; padding: 0 var(--pad-x); }
.steprail__item { background: var(--white); border: 1px solid var(--border); border-radius: 20px; display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: center; padding: 30px 34px; }
.steprail__item.is-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.steprail__item h3 { font-size: 23px; margin-bottom: 7px; }
.steprail__item p { font-size: 16px; line-height: 1.55; color: var(--muted); }
.steprail__item.is-dark h3 { color: #fff; }
.steprail__item.is-dark p { color: #b9b6ab; }
.steprail__num { font-family: var(--font-head); font-weight: 600; font-size: 26px; width: 72px; height: 72px; border-radius: 18px; background: var(--yellow); color: var(--ink); display: flex; align-items: center; justify-content: center; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; max-width: 1100px; margin: 0 auto; }
.stat__num { font-family: var(--font-head); font-weight: 600; font-size: 48px; color: var(--yellow); letter-spacing: -.02em; }
.stat__label { font-size: 15px; font-weight: 600; color: #b9b6ab; margin-top: 6px; }
.stat--divided { border-left: 1px solid #34322a; border-right: 1px solid #34322a; }

/* ---------- Product ---------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 20px var(--pad-x) 60px; max-width: var(--container); margin: 0 auto; }
.product__gallery { min-width: 0; }
.product__stage {
  height: 440px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--product-card-radius);
  padding: 32px 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
.product__stage img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: calc(var(--product-card-radius) - 6px);
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 12px;
  margin-top: 0;
}
.thumb {
  aspect-ratio: 1;
  max-height: 96px;
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}
.thumb.is-active {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow);
  background: rgba(255, 237, 0, .12);
}
.product-card__media {
  height: 230px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--product-card-radius) var(--product-card-radius) 0 0;
  box-sizing: border-box;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Product detail page */
.product-breadcrumb {
  max-width: var(--container); margin: 0 auto;
  padding: 24px var(--pad-x) 8px;
  font-size: 14px; font-weight: 600; color: var(--muted-2);
}
.product-breadcrumb a { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--yellow); }
.product__title {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.1;
  letter-spacing: -.02em; margin: 8px 0 14px;
}
.product__lead { font-size: 16.5px; line-height: 1.55; color: var(--muted); margin-bottom: 22px; }
.product__rating { margin-bottom: 18px; }
.product__currency { max-width: 240px; margin-bottom: 8px; }
.product__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 16px 0 22px; }
.product__actions .btn--lg { flex: 1; min-width: 180px; }
.product-buybox { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 22px; }
.product-buybox__links {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 15px; font-weight: 700;
}
.product-buybox__links a {
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.product-buybox__links a:hover { opacity: .85; }
.product__learn { margin-bottom: 22px; }
.product__info { min-width: 0; }
.thumbs .thumb { cursor: pointer; font: inherit; }
.product-tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-tabs__btn {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-2); background: var(--white); color: var(--ink); cursor: pointer;
}
.product-tabs__btn.is-active { background: var(--yellow); border-color: var(--yellow); }
.product-tabs__pane { display: none; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: #4f4c44; }
.product-tabs__pane.is-active { display: block; }
.product-tabs__pane img { max-width: 100%; height: auto; border-radius: 12px; }
.product-tabs__pane h1, .product-tabs__pane h2, .product-tabs__pane h3 {
  font-family: var(--font-head); color: var(--ink); margin: 24px 0 10px;
}

/* Legacy DB mobile footer — restyle to match Sampark */
.sampark-body .themobile_footer,
.sampark-body .bottom-nav,
.sampark-body [class*="mobile-footer"],
.sampark-body .ys77suys63 {
  display: none !important;
}

@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .product__stage { height: 360px; padding: 28px 0; }
  .thumb { max-height: 84px; }
  .product-card__media { height: 210px; padding: 24px 0; }
}
.thumb--label { background: var(--sand); font-size: 11px; font-weight: 700; color: var(--label); letter-spacing: .05em; }
.price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.price__now { font-family: var(--font-head); font-weight: 600; font-size: 40px; }
.price__was { font-size: 18px; color: var(--label); text-decoration: line-through; }
.price__save { background: var(--yellow); color: var(--ink); font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 8px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--border-2); border-radius: var(--radius-pill); overflow: hidden; }
.qty span { padding: 14px 18px; font-size: 18px; font-weight: 700; color: #54514a; }
.qty .val { padding: 14px 6px; min-width: 24px; text-align: center; color: var(--ink); }
.note { background: var(--white); border: 1px dashed var(--border-2); border-radius: 14px; padding: 16px; font-size: 14.5px; color: var(--muted); }
.delivery-row { display: flex; gap: 22px; font-size: 14px; font-weight: 700; color: var(--muted-2); flex-wrap: wrap; }

/* product cards (shop) */
.product-card { display: block; background: var(--white); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(20,18,8,.09); }
.product-card__media.is-dark {
  background: var(--ink);
  color: #fff;
  flex-direction: column;
  gap: 10px;
  height: 230px;
}
.product-card__body { padding: 24px; }
.product-card__body h3 { font-size: 21px; margin-bottom: 6px; }
.product-card__body p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin-bottom: 16px; min-height: 42px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shop-currency { max-width: 360px; }
.shop-currency label { margin-bottom: 10px; }
.shop-trust-bar { padding-top: 32px !important; padding-bottom: 32px !important; }

/* Block legacy SVG icons from blowing up layout */
.sampark-body .icon-svg,
.sampark-body .svg-inject,
.sampark-body img[src*="/img/icons/"] {
  max-width: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
}
.tag-flag { position: absolute; top: 16px; left: 16px; background: var(--yellow); font-size: 12px; font-weight: 800; padding: 5px 11px; border-radius: 8px; }
.price-inline { display: flex; align-items: baseline; gap: 8px; }
.price-inline .now { font-family: var(--font-head); font-weight: 600; font-size: 24px; }
.price-inline .was { font-size: 15px; color: var(--label); text-decoration: line-through; }
.view-pill { background: var(--yellow); font-family: var(--font-head); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: var(--radius-pill); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
label { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: #54514a; margin-bottom: 7px; display: block; text-transform: uppercase; }
input, textarea, select {
  font-family: var(--font-body); width: 100%;
  border: 1.5px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: 15px; background: var(--white); color: var(--ink); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); }
.field { margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq__item { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 16.5px; font-weight: 700; }
.faq__item:last-child { border-bottom: none; }
.faq__item .plus { color: var(--label); }

/* ---------- Legal doc ---------- */
.doc h2 { font-family: var(--font-head); font-weight: 500; font-size: 24px; letter-spacing: -.01em; margin: 36px 0 12px; }
.doc p  { font-size: 16px; line-height: 1.7; color: #4f4c44; margin-bottom: 14px; }
.doc li { font-size: 16px; line-height: 1.7; color: #4f4c44; margin-bottom: 8px; }
.doc ul { padding-left: 22px; margin-bottom: 14px; }
.doc a.inline { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--yellow); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9b6ab; padding: 56px var(--pad-x) 40px; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; max-width: var(--container); margin: 0 auto; }
.footer__brand { max-width: 280px; }
.footer__brand .nav__logo { margin-bottom: 12px; }
.footer__brand p { font-size: 14px; line-height: 1.55; }
.footer__cols { display: flex; gap: 56px; font-size: 14.5px; line-height: 2.1; flex-wrap: wrap; }
.footer__cols h4 { color: #fff; font-weight: 700; font-family: var(--font-body); font-size: 14.5px; margin-bottom: 6px; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid #34322a; margin-top: 36px; padding-top: 20px; font-size: 13px; max-width: var(--container); margin-left: auto; margin-right: auto; }

/* ---------- Utility ---------- */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 26px; }
.checks--wide { max-width: 720px; margin: 0 auto; }
.checks div { font-size: 15px; font-weight: 600; display: flex; gap: 9px; align-items: flex-start; color: var(--ink); }
.checks span { color: var(--ink); font-weight: 800; flex-shrink: 0; }

.features-included { max-width: 760px; margin: 0 auto; }
.features-included__card { padding: 36px 40px; border-radius: var(--radius-lg); margin: 0 auto; }
.features-included__card .checks { margin-bottom: 0; }

/* Tag highlight (parking-tag / product promo) */
.tag-highlight { padding-top: 64px; padding-bottom: 64px; overflow: hidden; }
.tag-highlight__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.tag-highlight__eyebrow { color: var(--label) !important; }
.tag-highlight__title { color: #fff !important; font-size: clamp(28px, 3.5vw, 34px); margin-bottom: 14px; }
.tag-highlight__text { color: #b9b6ab; font-size: 16px; line-height: 1.6; margin-bottom: 28px; max-width: 460px; }
.tag-showcase {
  background: #181711; border: 1px solid #2b2a20; border-radius: var(--radius-lg);
  min-height: 280px; max-height: 360px;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; overflow: hidden;
}
.tag-showcase img { max-height: 300px; max-width: 100%; width: auto; object-fit: contain; display: block; }
.tag-showcase--product { background: var(--white); border-color: #2b2a20; }
.tag-showcase--product img { max-height: 280px; width: 100%; object-fit: contain; }

/* Brand media panels */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: var(--container); margin: 0 auto; }
.media-split--reverse .media-panel { order: -1; }
.media-panel { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--sand); }
.media-panel img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-panel--photo { min-height: 280px; max-height: 420px; }
.media-panel--photo img { object-fit: cover; min-height: 280px; }
.media-panel--product { background: var(--white); padding: 16px; }
.media-panel--product img { object-fit: contain; max-height: 220px; margin: 0 auto; width: auto; }
.media-panel--tall { max-height: 480px; }
.hero__panel img { max-height: 340px; width: 100%; object-fit: contain; }
@media (max-width: 900px) {
  .tag-highlight__inner { grid-template-columns: 1fr; gap: 32px; }
  .tag-showcase { max-height: none; min-height: 240px; }
  .checks--wide { grid-template-columns: 1fr; }
  .features-included__card { padding: 28px 24px; }
  .media-split { grid-template-columns: 1fr; }
  .media-split--reverse .media-panel { order: 0; }
  .media-panel--photo { min-height: 220px; max-height: 320px; }
}
.center { text-align: center; }
.mt-12 { margin-top: 12px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mb-14 { margin-bottom: 14px; } .mb-22 { margin-bottom: 22px; } .mb-24 { margin-bottom: 24px; } .mb-30 { margin-bottom: 30px; } .mb-36 { margin-bottom: 36px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .steprail__item { grid-template-columns: 64px 1fr; padding: 24px; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .stats, .checks { grid-template-columns: 1fr; }
  .stat--divided { border: none; border-top: 1px solid #34322a; border-bottom: 1px solid #34322a; padding: 16px 0; }
  :root { --pad-x: 22px; }
}

/* ---------- Mobile navigation ---------- */
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__locale {
  display: none;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .15s, color .15s;
}
@media (min-width: 901px) {
  .nav__locale { display: inline-flex; }
}
.nav__locale:hover { color: var(--ink); border-color: var(--border-2); }
.nav__locale-name { color: var(--ink); }
.nav__locale-change {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.nav-mobile__locale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: var(--sand);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.nav-mobile__locale .nav__locale-change { font-size: 12px; }
.footer-locale {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #b9b6ab;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.footer-locale:hover { color: #fff; }
.nav__cart {
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-2); transition: border-color .15s;
}
.nav__cart:hover { border-color: var(--ink); }
.nav__toggle {
  display: none; background: none; border: none;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--border-2); align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; padding: 10px;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(23,22,15,.5); backdrop-filter: blur(6px);
}
.nav-mobile.is-open { display: block; }
.nav-mobile__panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 92vw); height: 100%;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-radius: 24px 0 0 24px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -12px 0 40px rgba(20, 18, 8, .12);
}
.nav-mobile.is-open .nav-mobile__panel { transform: translateX(0); }
.nav-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  flex-shrink: 0;
}
.nav-mobile__header .nav__logo { margin: 0; }
.nav-mobile__close {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.nav-mobile__close:hover { border-color: var(--ink); background: var(--sand); }
.nav-mobile__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 28px;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile__group--compact { gap: 2px; }
.nav-mobile__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  padding: 14px 14px;
  border-radius: 12px;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.nav-mobile__link:hover { background: var(--sand); }
.nav-mobile__link.is-active {
  background: rgba(255, 237, 0, .35);
  box-shadow: inset 3px 0 0 var(--yellow);
}
.nav-mobile__link--secondary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 14px;
  color: #54514a;
}
.nav-mobile__link--secondary.is-active { color: var(--ink); }
.nav-mobile__sub {
  font-size: 11px;
  font-weight: 800;
  color: var(--label);
  padding: 24px 14px 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0;
}
.nav-mobile__footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile__footer .btn { margin-top: 4px; }
.sampark-main { min-height: 50vh; }
body.sampark-body { background: var(--paper); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links { display: none; }
  .nav .btn--yellow.btn--sm { display: none; }
}
@media (min-width: 901px) {
  .nav-mobile { display: none !important; }
}

/* ---------- Bootstrap / legacy bridge ---------- */
.sampark-body .btn-primary,
.sampark-body .theme_bg {
  background: var(--yellow) !important; border-color: var(--yellow) !important;
  color: var(--ink) !important; font-family: var(--font-head); font-weight: 600;
  border-radius: var(--radius-pill) !important;
}
.sampark-body .btn-primary:hover { filter: brightness(.96); }
.sampark-body .btn-dark, .sampark-body .btn-black {
  background: var(--ink) !important; border-color: var(--ink) !important; color: #fff !important;
  border-radius: var(--radius-pill) !important;
}
.sampark-body h1, .sampark-body h2, .sampark-body h3,
.sampark-body h4, .sampark-body h5, .sampark-body .display-1,
.sampark-body .display-4, .sampark-body .display-5 {
  font-family: var(--font-head); font-weight: 500; letter-spacing: -.02em; color: var(--ink);
}

/* Dark surfaces — bridge above forces ink on all headings; restore contrast here */
.sampark-body .section--dark,
.sampark-body .steprail__item.is-dark,
.sampark-body .invest-cta,
.sampark-body .tag-highlight,
.sampark-body .product-card__media.is-dark {
  color: #fff;
}
.sampark-body .section--dark :is(h1, h2, h3, h4, h5, .h2, .h3, .display),
.sampark-body .steprail__item.is-dark :is(h3),
.sampark-body .invest-cta :is(h2, .h2),
.sampark-body .tag-highlight :is(h2, .h2, .tag-highlight__title),
.sampark-body .product-card__media.is-dark :is(h3, .h3) {
  color: #fff !important;
}
.sampark-body .section--dark :is(p, .lead, .muted, li),
.sampark-body .steprail__item.is-dark p,
.sampark-body .invest-cta p,
.sampark-body .tag-highlight :is(p, .tag-highlight__text) {
  color: #b9b6ab !important;
}
.sampark-body .section--dark .eyebrow,
.sampark-body .tag-highlight .eyebrow,
.sampark-body .tag-highlight__eyebrow {
  color: #8d8a7f !important;
}
.sampark-body .section--dark .btn--outline,
.sampark-body .tag-highlight .btn--outline,
.sampark-body .invest-cta .btn--outline {
  color: #fff !important;
  border-color: #5a574c !important;
  background: transparent !important;
}
.sampark-body .section--dark .btn--outline:hover,
.sampark-body .tag-highlight .btn--outline:hover,
.sampark-body .invest-cta .btn--outline:hover {
  border-color: #fff !important;
  color: #fff !important;
}

/* Button labels — anchor inherit was forcing ink text on dark buttons */
.sampark-body a.btn--yellow,
.sampark-body button.btn--yellow {
  color: var(--ink) !important;
}
.sampark-body a.btn--dark,
.sampark-body button.btn--dark {
  color: #fff !important;
}
.sampark-body a.btn--outline,
.sampark-body button.btn--outline {
  color: var(--ink) !important;
}
.sampark-body .section--dark a.btn--yellow,
.sampark-body .section--dark button.btn--yellow,
.sampark-body .tag-highlight a.btn--yellow,
.sampark-body .tag-highlight button.btn--yellow,
.sampark-body .invest-cta a.btn--yellow,
.sampark-body .invest-cta button.btn--yellow,
.sampark-body .about-shark a.btn--yellow,
.sampark-body .about-shark button.btn--yellow {
  color: var(--ink) !important;
}
.sampark-body .section--yellow a.btn--dark,
.sampark-body .section--yellow button.btn--dark {
  color: #fff !important;
}

.sampark-body .section--dark .badge--outline {
  color: #d9d6c8 !important;
  border-color: #454338 !important;
}
.sampark-body .section--dark a:not(.btn) {
  color: #fff;
  border-bottom-color: var(--yellow);
}
.sampark-body .wrapper.bg-black,
.sampark-body .wrapper.bg-dark,
.sampark-body section.bg-black {
  background: var(--ink) !important;
}
.sampark-body .wrapper.bg-light,
.sampark-body section.bg-light {
  background: var(--paper) !important;
}
.sampark-body .wrapper.bg-white { background: var(--white) !important; }
.sampark-body .form-control, .sampark-body .input {
  font-family: var(--font-body); border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm); padding: 13px 15px;
}
.sampark-body .form-control:focus { border-color: var(--ink); box-shadow: none; }
.sampark-body .card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
}
.sampark-body .text-primary { color: var(--ink) !important; }
.sampark-body .link-primary { color: var(--ink) !important; }
.sampark-body .footer-blog-links {
  background: transparent;
  border-top: none;
  padding: 0;
  font-size: 12px;
}
.sampark-body .footer-blog-links a { color: #9a9688 !important; }
.sampark-body .footer-blog-links a:hover {
  color: var(--yellow) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-blog {
  border-top: 1px solid #34322a;
  background: transparent;
  margin-top: 48px;
  padding-top: 8px;
}
.footer-blog__details { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.footer-blog__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #9a9688;
  user-select: none;
  transition: color .15s;
}
.footer-blog__summary:hover,
.footer-blog__details[open] .footer-blog__summary { color: #fff; }
.footer-blog__summary:hover .footer-blog__chevron,
.footer-blog__details[open] .footer-blog__chevron {
  border-color: var(--yellow);
}
.footer-blog__summary::-webkit-details-marker { display: none; }
.footer-blog__chevron {
  width: 8px; height: 8px;
  border-right: 2px solid #9a9688;
  border-bottom: 2px solid #9a9688;
  transform: rotate(45deg);
  transition: transform .2s, border-color .15s;
  flex-shrink: 0;
  margin-top: -3px;
}
.footer-blog__details[open] .footer-blog__chevron { transform: rotate(-135deg); margin-top: 3px; }
.footer-blog-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 20px;
  padding: 4px 0 24px;
  max-height: 220px;
  overflow-y: auto;
}
.footer-blog-links a {
  font-size: 12px;
  line-height: 1.45;
  color: #9a9688 !important;
  text-decoration: none;
  transition: color .15s;
}
.footer-blog-links a:hover {
  color: var(--yellow) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sampark-app-modal {
  position: fixed; inset: 0; z-index: 10050;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
}
.sampark-app-modal[hidden] { display: none !important; }
.sampark-app-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(23, 22, 15, .55);
  backdrop-filter: blur(4px);
}
.sampark-app-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 400px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}
.sampark-app-modal__close {
  position: absolute; top: 12px; right: 14px;
  border: none; background: none;
  font-size: 28px; line-height: 1; color: var(--muted);
  cursor: pointer; padding: 4px;
}
@media (max-width: 768px) {
  .footer-blog-links { grid-template-columns: repeat(2, 1fr); max-height: 280px; }
  .sampark-app-modal { align-items: center; }
}
@media (min-width: 769px) {
  .sampark-app-modal { align-items: center; }
}

.sampark-body .doc-page { padding: 48px var(--pad-x) 80px; }
.sampark-body .doc-page .container { max-width: 860px; }
.sampark-body .doc-page h1 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 24px; }
.sampark-body .doc-page h2 { font-size: 24px; margin: 36px 0 12px; }
.sampark-body .doc-page p, .sampark-body .doc-page li {
  font-size: 16px; line-height: 1.7; color: #4f4c44;
}

/* Legal / policy pages */
.legal-doc-page {
  padding: 48px var(--pad-x) 80px;
  background: var(--paper);
}
.legal-doc-shell {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.legal-doc-card {
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(20, 18, 8, .04);
}
.legal-doc-card .eyebrow { margin-bottom: 12px; }
.legal-doc-card h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ink);
}
.legal-doc-meta {
  font-size: 14px;
  font-weight: 600;
  color: var(--label);
  margin: -8px 0 24px;
}
.legal-doc-card.doc h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-doc-card.doc h2:first-of-type { margin-top: 28px; }
.legal-doc-card.doc p,
.legal-doc-card.doc li {
  font-size: 16px;
  line-height: 1.75;
  color: #4f4c44;
}
.legal-doc-card.doc ul,
.legal-doc-card.doc ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-doc-card.doc li { margin-bottom: 8px; }
.legal-doc-card.doc a.inline,
.legal-doc-card.doc a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.legal-doc-card.doc img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
@media (max-width: 900px) {
  .legal-doc-page { padding: 32px var(--pad-x) 56px; }
  .legal-doc-card { padding: 28px 24px; }
}
.sampark-body .location-btn-primary {
  background: var(--yellow) !important; color: var(--ink) !important;
  box-shadow: none !important; font-weight: 700;
}
.sampark-body .country-select-trigger[aria-expanded="true"] {
  border-color: var(--ink) !important; box-shadow: 0 0 0 3px rgba(255,237,0,.35) !important;
}
.sampark-body .country-option:hover, .sampark-body .country-option.is-focused {
  background: rgba(255,237,0,.15) !important;
}
.sampark-body .product-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .sampark-body .product-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sampark-body .product-card-grid { grid-template-columns: 1fr; } }
.sampark-body .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
@media (max-width: 900px) { .sampark-body .contact-grid { grid-template-columns: 1fr; } }
.sampark-body .d-none { display: none !important; }
@media (min-width: 768px) {
  .sampark-body .d-md-inline-flex { display: inline-flex !important; }
}

/* ---------- Layout utilities (replaces Bootstrap grid) ---------- */
.sp-container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.sp-grid { display: grid; gap: 16px; }
.sp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sp-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .sp-grid--3, .sp-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sp-grid--2, .sp-grid--3, .sp-grid--4 { grid-template-columns: 1fr; } }

.sampark-body .container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); width: 100%; }
.sampark-body .row { display: flex; flex-wrap: wrap; margin-left: -12px; margin-right: -12px; }
.sampark-body .row > [class*="col"] { padding-left: 12px; padding-right: 12px; box-sizing: border-box; width: 100%; }
.sampark-body .col-lg-6 { width: 100%; }
.sampark-body .col-lg-8 { width: 100%; }
.sampark-body .col-lg-4 { width: 100%; }
@media (min-width: 992px) {
  .sampark-body .col-lg-6 { width: 50%; }
  .sampark-body .col-lg-8 { width: 66.666%; }
  .sampark-body .col-lg-4 { width: 33.333%; }
  .sampark-body .col-lg-9 { width: 75%; }
  .sampark-body .col-lg-3 { width: 25%; }
}
.sampark-body .col-md-6 { width: 100%; }
@media (min-width: 768px) { .sampark-body .col-md-6 { width: 50%; } }
.sampark-body .col-12 { width: 100%; }
.sampark-body .col-sm-6 { width: 100%; }
@media (min-width: 576px) { .sampark-body .col-sm-6 { width: 50%; } }
.sampark-body .col-sm-3 { width: 100%; }
@media (min-width: 576px) { .sampark-body .col-sm-3 { width: 25%; } }
.sampark-body .col-sm-8 { width: 100%; }
@media (min-width: 576px) { .sampark-body .col-sm-8 { width: 66.666%; } }
.sampark-body .col-sm-4 { width: 100%; }
@media (min-width: 576px) { .sampark-body .col-sm-4 { width: 33.333%; } }
.sampark-body .gy-12 > [class*="col"] { margin-bottom: 24px; }
.sampark-body .text-center { text-align: center; }
.sampark-body .text-white { color: #fff !important; }
.sampark-body .mb-0 { margin-bottom: 0 !important; }
.sampark-body .mb-2 { margin-bottom: 8px !important; }
.sampark-body .mb-3 { margin-bottom: 12px !important; }
.sampark-body .mb-5 { margin-bottom: 20px !important; }
.sampark-body .mt-3 { margin-top: 12px !important; }
.sampark-body .my-3 { margin-top: 12px !important; margin-bottom: 12px !important; }
.sampark-body .py-5 { padding-top: 40px; padding-bottom: 40px; }
.sampark-body .table-responsive { overflow-x: auto; }
.sampark-body .table { width: 100%; border-collapse: collapse; font-size: 15px; }
.sampark-body .table th, .sampark-body .table td { padding: 12px 10px; border-bottom: 1px solid var(--border); text-align: left; }
.sampark-body .table th { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.sampark-body .shopping-cart img { max-height: 64px; border-radius: 8px; }

/* Tabs (vanilla, no Bootstrap CSS) */
.sampark-body .tab-pane { display: none; }
.sampark-body .tab-pane.active, .sampark-body .tab-pane.show { display: block; }
.sampark-body .nav-tabs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 20px; }
.sampark-body .nav-tabs .nav-link { cursor: pointer; }
.sampark-body .nav-tabs .nav-link.active { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

/* Collapse / accordion */
.sampark-body .collapse { display: none; }
.sampark-body .collapse.show { display: block; }
.sampark-body .accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.sampark-body .accordion-item button, .sampark-body .accordion-button {
  width: 100%; text-align: left; padding: 14px 16px; background: var(--white);
  border: none; font-family: var(--font-head); font-weight: 600; font-size: 16px; cursor: pointer;
}
.sampark-body .accordion-item .card-body, .sampark-body .accordion-item .collapse > div {
  padding: 0 16px 14px; color: var(--muted); font-size: 15px; line-height: 1.55;
}

/* Kill leftover legacy wrappers */
.sampark-body .content-wrapper, .sampark-body .the_mains_3, .sampark-body .wrapper {
  padding: 0 !important; margin: 0 !important; background: transparent !important;
  max-width: none !important;
}
.sampark-body .ynaps_body { background: var(--paper) !important; }
.sampark-body img { max-width: 100%; height: auto; }
.sampark-body a:not(.btn) { color: inherit; }
.sampark-body .btn, .sampark-body button.btn { border: none; }
.sampark-body .btn_2 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--ink); border: 1.5px solid var(--border-2);
  border-radius: var(--radius-pill); padding: 12px 20px; font-weight: 700;
}
.sampark-body .btn_2:hover { border-color: var(--ink); }
.sampark-body strike { color: var(--label); }
.sampark-body .pull-right { float: right; }
.sampark-body .w-100 { width: 100%; }
.sampark-body .flex-grow-1 { flex: 1; }
.sampark-body .table-responsive + .btn { margin-top: 16px; }

/* Invest, reseller, FAQ, auth pages */
.invest-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.invest-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.invest-cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.reseller-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.etag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero--compact { padding-top: 48px; padding-bottom: 48px; }
.auth-page { padding-top: 48px; padding-bottom: 64px; }
.btn--block { width: 100%; }

.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-accordion__item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden;
}
.faq-accordion__item summary {
  padding: 18px 20px; font-family: var(--font-head); font-weight: 600;
  font-size: 17px; cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-accordion__item summary::-webkit-details-marker { display: none; }
.faq-accordion__item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--muted); }
.faq-accordion__item[open] summary::after { content: '−'; }
.faq-accordion__item p {
  padding: 0 20px 18px; margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted);
}
.faq-accordion__item p a { font-weight: 700; border-bottom: 2px solid var(--yellow); }

@media (max-width: 900px) {
  .invest-split, .invest-video-grid, .invest-cta, .etag-grid { grid-template-columns: 1fr; gap: 28px; }
  .reseller-stats { grid-template-columns: 1fr 1fr; }
}
.etag-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.etag-form-card { border-radius: 22px; padding: 32px; }
.etag-checks { margin-top: 8px; }
@media (max-width: 900px) {
  .etag-page-grid { grid-template-columns: 1fr; }
}

/* App store badges + video embed */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.store-badges--compact .store-badge img { height: 36px; }
.store-badges--inline { flex-direction: row; flex-wrap: wrap; }
.store-badges--inline .store-badge img { height: 34px; }
.store-badge {
  display: inline-block;
  line-height: 0;
  transition: opacity .15s, transform .15s;
}
.store-badge:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.store-badge img {
  height: 40px;
  width: auto;
  display: block;
}
.download-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}
.download-extras a {
  color: var(--muted-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-extras a:hover { color: var(--ink); }
.footer .download-extras a { color: #b9b6ab; }
.footer .download-extras a:hover { color: #fff; }
.video-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
.video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}
.footer-downloads { margin-top: 20px; max-width: 100%; display: flex; flex-direction: column; gap: 12px; }
.footer-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.footer-actions .store-badges--inline { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.footer-actions .store-badges--inline .store-badge img { height: 32px; }
.footer-actions__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  transition: background .15s, border-color .15s;
}
.footer-chip:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.hero__downloads { margin-top: 22px; max-width: 320px; }

/* Social icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.social-icons__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icons--dark .social-icons__link {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.social-icons--dark .social-icons__link:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.social-icons--light .social-icons__link {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-2);
}
.social-icons--light .social-icons__link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

/* Document download button */
.doc-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
}
.doc-download-btn__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.doc-download-btn__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.doc-download-btn__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.doc-download-btn__text small {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}
.doc-download-btn__arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: .7;
}
.doc-download-btn__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.doc-download-btn--dark {
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
}
.doc-download-btn--dark .doc-download-btn__icon {
  background: rgba(255,255,255,.1);
  color: var(--yellow);
}
.doc-download-btn--dark .doc-download-btn__text small { color: #b9b6ab; }
.doc-download-btn--dark:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-1px);
}
.doc-download-btn--light {
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border-2);
}
.doc-download-btn--light .doc-download-btn__icon {
  background: var(--sand);
  color: var(--ink);
}
.doc-download-btn--light .doc-download-btn__text small { color: var(--muted); }
.doc-download-btn--light:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 28px;
  align-items: start;
}
.checkout-step { padding: 28px; border-radius: var(--radius-lg); }
.checkout-step__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}
.checkout-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.checkout-field { display: flex; flex-direction: column; gap: 6px; }
.checkout-field--full { grid-column: 1 / -1; }
.checkout-field > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.checkout-pay-options { display: flex; flex-direction: column; gap: 16px; }
.checkout-pay-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
}
.checkout-pay-option__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.checkout-notice {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,237,0,.2);
  border: 1px solid var(--yellow);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.checkout-back {
  margin-top: 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}
.checkout-back:hover { color: var(--ink); }
.checkout-review {
  margin-top: 16px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.checkout-review footer {
  margin-top: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}
.checkout-cod-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(23,22,15,.45);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.checkout-cod-modal {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: var(--radius-lg);
}
.checkout-cod-modal__title { margin-bottom: 10px; }
.checkout-cod-modal__text { margin-bottom: 24px; line-height: 1.6; }
.checkout-cod-modal__cancel { margin-top: 10px; }

/* Pay */
.pay-hero__title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }
.pay-hero__lead { max-width: 520px; }
.pay-panel { padding: 32px; border-radius: var(--radius-lg); }
.pay-panel__heading { margin-bottom: 20px; }
.pay-amount-display {
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--sand);
  margin: 0 0 28px;
}
.pay-amount-display dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}
.pay-amount-display dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.pay-option__title { font-size: 18px; margin-bottom: 6px; }
.pay-option__text { font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.pay-option__error { font-size: 13px; margin-top: 10px; margin-bottom: 0; }
.pay-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.cart-summary__title { margin-bottom: 16px; }
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form__grid { grid-template-columns: 1fr; }
  .checkout-field--full { grid-column: auto; }
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}
.cart-empty {
  text-align: center;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
}
.cart-empty__icon { font-size: 48px; margin-bottom: 16px; }
.cart-items__head {
  display: none;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
}
.cart-line__product {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}
.cart-line__thumb {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--border);
}
.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cart-line__info { min-width: 0; }
.cart-line__info .h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 4px;
}
.cart-line__info .h3 a { color: inherit; }
.cart-line__info .h3 a:hover { text-decoration: underline; }
.cart-line__unit { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.cart-line__remove {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-line__remove:hover { color: var(--ink); }
.cart-line__select {
  min-width: 72px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 700;
}
.cart-line__total {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  min-width: 80px;
}
.cart-notice {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,237,0,.25);
  border: 1px solid var(--yellow);
  font-size: 14px;
  font-weight: 600;
}
.cart-summary {
  padding: 28px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 88px;
}
.cart-summary__rows { margin: 0 0 24px; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cart-summary__row dt { font-weight: 600; color: var(--muted); margin: 0; }
.cart-summary__row dd { margin: 0; font-weight: 700; color: var(--ink); }
.cart-summary__row--discount dd { color: #b45309; }
.cart-summary__free { color: #15803d !important; }
.cart-summary__row--total {
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
}
.cart-summary__row--total dt,
.cart-summary__row--total dd {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.cart-summary__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.cart-summary__continue {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.cart-summary__continue:hover { color: var(--ink); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cart-line__qty,
  .cart-line__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-line__total { text-align: left; }
  .cart-line__total::before {
    content: 'Line total';
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    font-family: var(--font-body);
  }
  .cart-line__qty::before {
    content: 'Quantity';
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
  }
}

/* Blog */
.blog-hero__inner { max-width: 720px; margin: 0 auto; }
.blog-hero .display { margin-bottom: 16px; }
.blog-hero .lead { max-width: 560px; margin: 0 auto; }
.blog-cta-wrap { padding: 48px var(--pad-x) 48px; }
.blog-cta-wrap.section--white { border-top: none; }
.blog-list-wrap { padding-top: 0; padding-bottom: 64px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.blog-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__date { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--label); }
.blog-card__body .h3 a { color: inherit; }
.blog-card__body .h3 a:hover { text-decoration: underline; }
.blog-card__more { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--yellow); align-self: flex-start; }
.blog-pagination { margin-top: 32px; }
.blog-pagination .pagination { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.blog-pagination .pagination a, .blog-pagination .pagination strong {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); border: 1px solid var(--border-2); font-weight: 700; font-size: 14px;
}
.blog-pagination .pagination strong { background: var(--yellow); border-color: var(--yellow); }
.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.blog-breadcrumb a { color: var(--ink); font-weight: 700; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-breadcrumb__sep { color: var(--label); font-weight: 400; }
.blog-breadcrumb__current {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-hero__date { display: block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--label); }
.blog-layout { max-width: 820px; }

/* Single blog post */
.blog-post-shell {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.blog-post-shell--narrow { max-width: 640px; }
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--label);
}
.blog-post-meta__dot { opacity: .55; }
.blog-post-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.blog-post-deck {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}
.blog-post-cover {
  margin: 0 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--sand);
  box-shadow: 0 12px 40px rgba(20, 18, 8, .06);
}
.blog-post-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-article-card {
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(20, 18, 8, .04);
}
.blog-article__figure { margin: 0 0 28px; border-radius: var(--radius-md); overflow: hidden; }
.blog-article__figure img { width: 100%; display: block; }
.blog-article__content {
  font-size: 18px;
  line-height: 1.82;
  color: #4f4c44;
}
.blog-article__content > *:first-child { margin-top: 0 !important; }
.blog-article__content > *:last-child { margin-bottom: 0 !important; }
.blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 28px 0;
  display: block;
}
.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  margin: 40px 0 14px;
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.25;
}
.blog-article__content h2 { font-size: clamp(22px, 2.5vw, 28px); }
.blog-article__content h3 { font-size: clamp(19px, 2vw, 22px); }
.blog-article__content h4 { font-size: 18px; }
.blog-article__content p { margin-bottom: 20px !important; }
.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.blog-article__content li {
  margin-bottom: 10px;
  line-height: 1.75;
}
.blog-article__content li:last-child { margin-bottom: 0; }
.blog-article__content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--sand);
  font-style: italic;
  color: var(--ink);
}
.blog-article__content blockquote p:last-child { margin-bottom: 0 !important; }
.blog-article__content a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.blog-article__content a:hover { border-bottom-color: var(--ink); }
.blog-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.blog-article__content th,
.blog-article__content td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.blog-article__content th { background: var(--sand); font-weight: 700; }
.blog-article__content iframe,
.blog-article__content video {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 28px 0;
}
.blog-article__refs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
  padding-top: 8px;
}
.blog-post-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
}
.blog-post-back:hover { border-bottom-color: var(--ink); }
.blog-post-final-cta { padding: 56px var(--pad-x); }
.blog-post-final-cta__title {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}
.blog-post-final-cta__text {
  font-size: 17px;
  color: #5c5a3f;
  margin-bottom: 28px;
  line-height: 1.6;
}
.blog-article__back { margin-top: 32px; font-weight: 700; }
.blog-tag-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 56px;
  align-items: center;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--sand);
  margin-bottom: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.blog-tag-cta__copy .eyebrow { margin-bottom: 12px; }
.blog-tag-cta__copy .h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 520px;
}
.blog-tag-cta__copy .muted {
  margin-bottom: 20px;
  max-width: 540px;
  line-height: 1.6;
}
.blog-tag-cta--compact { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; margin-bottom: 0; }
.blog-tag-cta--strip {
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  padding: 24px 28px;
  margin-bottom: 32px;
  max-width: none;
}
.blog-tag-cta--strip .blog-tag-cta__copy .eyebrow { margin-bottom: 8px; }
.blog-tag-cta--strip .blog-tag-cta__copy .h3 {
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 0;
  max-width: none;
}
.blog-tag-cta--strip .blog-tag-cta__actions {
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 0;
  align-items: center;
}
.blog-tag-cta--bottom {
  margin-top: 40px;
  margin-bottom: 0;
  max-width: none;
}
.blog-tag-cta__benefits {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 540px;
}
.blog-tag-cta__benefits li { margin-bottom: 10px; }
.blog-tag-cta__benefits li:last-child { margin-bottom: 0; }
.blog-tag-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-width: 240px;
  flex-shrink: 0;
}
.blog-tag-cta__actions .btn { justify-content: center; white-space: nowrap; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-tag-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
  .blog-tag-cta__actions { min-width: 0; width: 100%; }
  .blog-tag-cta--strip .blog-tag-cta__actions { flex-direction: column; align-items: stretch; }
  .blog-article-card { padding: 28px 24px; }
  .blog-post-cover { margin-bottom: 32px; }
}

/* Auto tools */
.auto-shell { max-width: 900px; margin: 0 auto; width: 100%; }
.auto-shell--narrow { max-width: 640px; }
.auto-hero__icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.auto-hero__title { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 16px; }
.auto-hero__lead { max-width: 620px; margin: 0; line-height: 1.65; }
.auto-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
}
.auto-breadcrumb a { color: var(--ink); font-weight: 700; }
.auto-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.auto-layout--hub { grid-template-columns: 1fr minmax(280px, 320px); max-width: 1140px; }
.auto-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.auto-tool-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.auto-tool-card__icon { font-size: 28px; line-height: 1; }
.auto-tool-card__type {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--label);
}
.auto-tool-card__title { font-size: 18px; margin: 0; }
.auto-tool-card__text { font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.auto-tool-card__more {
  margin-top: 8px; font-size: 14px; font-weight: 700;
  color: var(--ink); border-bottom: 2px solid var(--yellow); align-self: flex-start;
}
.auto-tool-panel { padding: 28px; border-radius: var(--radius-lg); margin-bottom: 32px; }
.auto-prose { max-width: 720px; }
.auto-main__content > .auto-prose.doc:first-child {
  padding: 36px 40px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: 0 8px 32px rgba(20, 18, 8, .04);
}
.auto-prose.doc h2 { margin-top: 36px; }
.auto-prose.doc h2:first-child { margin-top: 0; }
.auto-prose.doc h3 { margin-top: 24px; }
.auto-lead { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0 0 32px; }
.auto-sidebar { padding: 22px; position: sticky; top: 88px; }
.auto-sidebar__title { font-size: 16px; margin-bottom: 14px; }
.auto-sidebar__nav { display: flex; flex-direction: column; gap: 4px; }
.auto-sidebar__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--muted);
}
.auto-sidebar__link:hover { background: var(--sand); color: var(--ink); }
.auto-sidebar__link.is-active { background: var(--yellow); color: var(--ink); font-weight: 700; }
.auto-sidebar__icon { font-size: 16px; width: 22px; text-align: center; }
.auto-cta { padding: 24px; }
.auto-cta__title { font-size: 20px; margin-bottom: 10px; }
.auto-cta__text { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.auto-cta__actions { display: flex; flex-direction: column; gap: 10px; }
.auto-calc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.auto-calc__heading { margin-bottom: 16px; }
.auto-calc--inline { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.auto-calc-results { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.auto-calc-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.auto-calc-results__item {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  text-align: center;
}
.auto-calc-results__item dt {
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--label); margin-bottom: 8px;
}
.auto-calc-results__item dd {
  margin: 0; font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; color: var(--ink);
}
.auto-calc-results__item--highlight { background: var(--yellow); }
.auto-calc-results__single { margin: 16px 0 0; font-size: 16px; }
.auto-disclaimer {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,237,0,.15); border: 1px solid var(--yellow);
  margin-bottom: 20px; line-height: 1.5;
}
.auto-fuel-filter { max-width: 320px; margin-bottom: 20px; }
.auto-table-wrap { overflow-x: auto; margin-bottom: 8px; }
.auto-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.auto-table th, .auto-table td {
  padding: 12px 14px; border: 1px solid var(--border); text-align: left;
}
.auto-table th { background: var(--sand); font-weight: 700; }
.auto-table tbody tr:hover { background: rgba(255,237,0,.08); }
.auto-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.auto-step {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px;
}
.auto-step__num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.auto-step .h3 { margin-bottom: 8px; font-size: 18px; }
.auto-step p { margin: 0 0 12px; font-size: 15px; line-height: 1.65; color: var(--muted); }
.auto-step p:last-child { margin-bottom: 0; }
.auto-callout { padding: 22px; margin: 28px 0; background: var(--sand); }
.auto-callout .h3 { margin-bottom: 12px; }
.auto-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 28px;
}
.auto-compare__col { padding: 22px; }
.auto-compare__col .h3 { margin-bottom: 10px; font-size: 18px; }
.auto-plate-demo {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 24px; margin: 24px 0 28px; font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px); font-weight: 600;
  background: #fff; border: 3px solid var(--ink);
}
.auto-plate-demo__part { padding: 4px 8px; border-radius: 4px; }
.auto-plate-demo__part--state { background: var(--yellow); }
.auto-plate-demo__part--rto { color: var(--muted); }
.auto-games-grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.auto-game { padding: 24px; }
.auto-game__title { margin-bottom: 8px; }
.auto-game__desc { margin-bottom: 18px; font-size: 14px; }
.auto-game-score { margin-top: 14px; font-weight: 700; font-size: 15px; color: var(--ink); }
.auto-game-reaction {
  min-height: 140px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); cursor: pointer; user-select: none;
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  border: 2px solid var(--border); transition: background .15s, border-color .15s;
}
.auto-game-reaction--wait { background: #c0392b; color: #fff; border-color: #962d22; }
.auto-game-reaction--go { background: #27ae60; color: #fff; border-color: #1e8449; }
.auto-game-quiz__question { font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.auto-game-quiz__options { display: flex; flex-wrap: wrap; gap: 10px; }
.auto-game-quiz__btn { min-width: 120px; }
.auto-game-quiz__btn.is-correct { background: #dcfce7; border-color: #16a34a; }
.auto-game-quiz__btn.is-wrong { background: #fee2e2; border-color: #dc2626; }
.auto-game-memory {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.auto-game-memory__card {
  aspect-ratio: 1; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background: var(--sand);
  font-size: 28px; cursor: pointer; transition: transform .15s;
}
.auto-game-memory__card.is-flipped,
.auto-game-memory__card.is-matched { background: var(--yellow); border-color: var(--ink); }
.auto-game-memory__card.is-matched { opacity: .7; }
.auto-bottom-cta { padding: 56px var(--pad-x); }
.auto-bottom-cta .muted { max-width: 480px; margin: 0 auto 24px; }
.auto-faq { max-width: 720px; }
@media (max-width: 900px) {
  .auto-layout, .auto-layout--hub { grid-template-columns: 1fr; }
  .auto-tool-grid { grid-template-columns: 1fr; }
  .auto-sidebar { position: static; }
  .auto-calc__grid, .auto-calc-results__grid, .auto-compare { grid-template-columns: 1fr; }
  .auto-game-memory { grid-template-columns: repeat(3, 1fr); }
  .auto-main__content > .auto-prose.doc:first-child { padding: 24px 20px 28px; }
}

/* Product landing pages (door tag, menu, business card) */
.product-landing-hero__actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px;
}
.product-landing-hero__price { font-size: 14px; font-weight: 600; color: var(--muted); }
.product-landing__heading { margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.product-landing-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 960px; margin: 0 auto;
}
.product-landing-features__item {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 14px; text-align: center;
}
.product-landing-features__icon { display: block; font-size: 26px; margin-bottom: 8px; line-height: 1; }
.product-landing-features__label { font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--ink); }
.product-landing-steps { margin-top: 8px; }
.product-landing-bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.product-landing-bullets li {
  padding: 6px 0 6px 20px; position: relative; font-size: 15px; color: var(--muted); line-height: 1.5;
}
.product-landing-bullets li::before { content: '•'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.product-landing-final__text { max-width: 480px; margin: 12px auto 24px; }
@media (max-width: 900px) {
  .product-landing-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .product-landing-features { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-landing-features__item { padding: 14px 10px; }
}

/* Order confirmation (order_paid) */
.order-result { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.order-result__card { padding: 40px 36px; border-radius: var(--radius-lg); text-align: center; }
.order-result__icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 32px;
}
.order-result__icon--success { background: var(--yellow); color: var(--ink); }
.order-result__icon--failed { background: #fde8e8; color: #b42318; border: 2px solid #fecdca; }
.order-result__title { font-size: 24px; margin-bottom: 10px; }
.order-result__ref { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.order-result__ref strong { color: var(--ink); }
.order-result__text { font-size: 16px; line-height: 1.65; color: var(--muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.order-result__text strong { color: var(--ink); font-weight: 600; }
.order-result__steps {
  list-style: none; padding: 0; margin: 0 auto 28px; max-width: 360px; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
}
.order-result__steps li {
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.order-result__steps li span {
  width: 28px; height: 28px; border-radius: 8px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-head); font-size: 13px;
}
.order-result__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.order-result__help { padding: 24px 28px; border-radius: var(--radius-md); text-align: left; }
@media (max-width: 520px) {
  .order-result__card { padding: 32px 22px; }
  .order-result__actions { flex-direction: column; }
  .order-result__actions .btn { width: 100%; }
}

/* Franchise partner portal */
.franchise-wrap { max-width: 960px; margin: 0 auto; }
.franchise-auth .field { margin-bottom: 18px; }
.franchise-alert {
  padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 18px;
}
.franchise-alert--error { background: #fde8e8; color: #b42318; border: 1px solid #fecdca; }
.franchise-alert--ok { background: #ecfdf3; color: #067647; border: 1px solid #abefc6; }
.franchise-dash__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.franchise-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; margin-bottom: 24px;
}
.franchise-card { padding: 24px; border-radius: var(--radius-lg); }
.franchise-card--wide { grid-column: 1 / -1; }
.franchise-link-box { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.franchise-link-input { flex: 1; min-width: 200px; font-size: 14px; }
.franchise-code-note { font-size: 13px; margin-bottom: 16px; }
.franchise-share-row { display: flex; flex-wrap: wrap; gap: 10px; }
.franchise-orders { padding: 28px; border-radius: var(--radius-lg); }
.franchise-orders__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px;
}
.franchise-orders__empty { font-size: 15px; padding: 12px 0; }
.franchise-table-wrap { overflow-x: auto; }
.franchise-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.franchise-table th,
.franchise-table td { padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--border); }
.franchise-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; }
.franchise-status {
  display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--sand); color: var(--ink);
}
.franchise-status--pid,
.franchise-status--a { background: #fef9c3; }
.franchise-status--s { background: #dcfce7; color: #166534; }
.franchise-status--fail { background: #fde8e8; color: #b42318; }
@media (max-width: 900px) {
  .franchise-grid { grid-template-columns: 1fr; }
  .franchise-card--wide { grid-column: auto; }
  .franchise-dash__top { flex-direction: column; }
}

