/* =====================================================================
   SafeSpot Landing — styles
   Brand: navy + lime only. Fonts: Archivo (display) + Plus Jakarta Sans (body).
   Tokens defined once below; everything else references them.
   ===================================================================== */

:root {
  /* Navy ramp */
  --navy:        #1D3C8B;  /* primary: buttons, links, icons */
  --navy-deep:   #14275C;  /* hero / why bg, dark headings, table header */
  --navy-deeper: #0F1E48;  /* products / contact bg */
  --navy-darkest:#0A1638;  /* footer bg */

  /* Lime accent */
  --lime:        #D7DD2B;
  --lime-hover:  #E6EC3A;

  /* Surfaces & lines */
  --page:        #FCFCF9;
  --surface:     #FBFBF4;
  --card-border: #ECEEDF;
  --row-line:    #F0F1E6;

  /* Text */
  --text:        #162038;
  --text-strong: #14275C;
  --text-muted:  #5A6478;
  --on-dark:     #FFFFFF;
  --muted-dark:  #AFBAD6;
  --muted-dark-2:#B9C2DC;
  --muted-dark-3:#9FAAC6;

  /* Accents */
  --green:       #1F8A5B;
  --olive:       #8A7F2E;

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Shape */
  --r-card: 20px;
  --r-img:  22px;
  --r-pill: 999px;

  /* Shadows */
  --sh-img-dark:  0 26px 60px rgba(0,0,0,0.4);
  --sh-img-light: 0 24px 54px rgba(20,39,92,0.18);
  --sh-cta-lime:  0 10px 26px rgba(215,221,43,0.28);
  --sh-cta-navy:  0 10px 24px rgba(29,60,139,0.25);
  --sh-badge:     0 18px 40px rgba(0,0,0,0.28);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--lime); color: var(--navy-deep); }

/* Offset in-page anchors for the sticky header */
:where(#products, #how, #why, #specs, #contact, #top) { scroll-margin-top: 76px; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.section { background: var(--page); }
.muted { color: var(--muted-dark-2); font-weight: 500; }
.accent { color: var(--lime); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 14px;
  max-width: 760px;
}
.section__title--light { color: var(--on-dark); }
.section__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
}
.section__sub--light { color: var(--muted-dark); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--pill {
  padding: 7px 15px;
  border: 1px solid rgba(215,221,43,0.45);
  border-radius: var(--r-pill);
  margin-bottom: 26px;
}
.eyebrow__dot { width: 9px; height: 9px; border-radius: 2px; background: var(--lime); flex-shrink: 0; }
.eyebrow--pill .eyebrow__dot { width: 8px; height: 8px; }
.eyebrow__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.eyebrow__text--olive { color: var(--olive); }
.eyebrow__text--lime  { color: var(--lime); }
.eyebrow--pill .eyebrow__text--lime { color: #E8ECC0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--navy-pill {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(29,60,139,0.22);
}
.btn--navy-pill:hover { background: var(--navy-deep); }

.btn--lime {
  background: var(--lime);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-cta-lime);
}
.btn--lime:hover { background: var(--lime-hover); }
.btn--sm { padding: 13px 24px; font-size: 15px; white-space: nowrap; }

.btn--ghost {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.28);
  white-space: nowrap;
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn--navy-block {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 13px;
  box-shadow: var(--sh-cta-navy);
  margin-bottom: 13px;
}
.btn--navy-block:hover { background: var(--navy-deep); }

.btn--wa-block {
  width: 100%;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  padding: 15px;
  border: 1.5px solid var(--navy);
  border-radius: 13px;
  margin-bottom: 24px;
}
.btn--wa-block:hover { background: #F2F5FE; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252,252,249,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  text-decoration: none;
  color: #243254;
  font-weight: 600;
  font-size: 14.5px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--lime); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--lime {
  top: -160px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(215,221,43,0.16), transparent 68%);
}
.hero__glow--blue {
  bottom: -200px; left: -140px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,86,170,0.55), transparent 70%);
}
.hero__grid {
  position: relative;
  padding-top: 78px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.2vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  color: #C5CEE4;
  max-width: 540px;
  margin: 0 0 34px;
}
.hero__cta { margin-bottom: 30px; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  color: var(--muted-dark-3); font-size: 13.5px; font-weight: 600;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .bullet { color: var(--lime); }

.hero__media { position: relative; }
.hero__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 5;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* Auto-scrolling hero carousel: footwear <-> bag locker */
.hero__track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: hero-scroll 12s ease-in-out infinite;
}
.hero__carousel:hover .hero__track { animation-play-state: paused; }
.hero__slide {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  margin: 0;
}
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__slide-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  background: var(--lime);
  padding: 8px 15px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

@keyframes hero-scroll {
  0%,  38% { transform: translateX(0); }
  50%, 88% { transform: translateX(-50%); }
  100%     { transform: translateX(0); }
}

/* Respect users who prefer reduced motion: hold on the first slide */
@media (prefers-reduced-motion: reduce) {
  .hero__track { animation: none; }
}
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-badge);
}
.hero__badge--cost {
  left: -18px; bottom: 34px;
  background: #fff; color: var(--navy-deep);
  border-radius: 16px; padding: 16px 20px;
}
.hero__badge-num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--navy); line-height: 1; }
.hero__badge-label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
.hero__badge--secure {
  right: -14px; top: 26px;
  background: var(--navy); color: #fff;
  border-radius: 14px; padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.3);
  font-size: 12.5px; font-weight: 700; line-height: 1.25;
}
.hero__badge--secure .muted { font-weight: 500; color: var(--muted-dark-2); }

/* ---------- Stats band ---------- */
.stats { background: var(--lime); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy-deep);
  line-height: 1;
}
.stat__label { font-size: 13px; font-weight: 600; color: #3C4A2E; }

/* ---------- Problem ---------- */
.problem__head { padding-top: 96px; padding-bottom: 30px; }
.problem__head .eyebrow { margin-bottom: 18px; }
.card-grid {
  display: grid;
  gap: 20px;
  padding-bottom: 96px;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); padding-top: 34px; }
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: 26px;
}
.icon-chip {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-strong); margin: 0 0 8px; }
.card__body { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* ---------- Products ---------- */
.products { background: var(--navy-deeper); color: #fff; }
.products__head {
  padding-top: 96px;
  padding-bottom: 18px;
  text-align: center;
}
.products__head .eyebrow { margin-bottom: 18px; }
.products__head .section__title { margin-left: auto; margin-right: auto; max-width: 780px; }
.products__head .section__sub { margin-left: auto; margin-right: auto; }

.product-row__wrap { padding-top: 56px; }
.product-row__wrap--last { padding-bottom: 96px; }
.product-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.product-row--reverse { grid-template-columns: 1.05fr 0.95fr; }
.product-row__media {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  box-shadow: var(--sh-img-dark);
  aspect-ratio: 1 / 1;
}
.product-row__media img { width: 100%; height: 100%; object-fit: cover; }
.product-row__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.product-row__body { font-size: 1.02rem; line-height: 1.6; color: var(--muted-dark-2); margin: 0 0 24px; max-width: 480px; }

.pill-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  background: var(--lime);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.pill-label--outline {
  color: var(--lime);
  background: transparent;
  border: 1px solid rgba(215,221,43,0.5);
  font-size: 11px;
  margin-bottom: 14px;
}

.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.spec-chip {
  font-size: 13px;
  font-weight: 600;
  color: #E7EAF4;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 10px;
}
.unit-size { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #8E9AB8; }
.unit-size strong { color: #E7EAF4; font-weight: 700; }

.ecom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: linear-gradient(100deg, #163063, var(--navy));
  border: 1px solid rgba(215,221,43,0.25);
  border-radius: var(--r-img);
  padding: 34px 38px;
}
.ecom__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.2vw, 1.8rem); line-height: 1.12; margin: 0 0 8px; }
.ecom__body { font-size: 1rem; line-height: 1.55; color: var(--muted-dark-2); margin: 0; max-width: 560px; }

/* ---------- How it works ---------- */
.how__head { padding-top: 96px; }
.how__head .eyebrow { margin-bottom: 18px; }
.how__head .section__title { max-width: 680px; }
.how__head .section__sub { max-width: 600px; }
.how__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.step {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  background: var(--navy);
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step__num--lime { background: var(--lime); color: var(--navy-deep); }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text-strong); margin: 0 0 6px; }
.step__body { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin: 0; }

.how__image {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  box-shadow: var(--sh-img-light);
  aspect-ratio: 1 / 1;
}
.how__image img { width: 100%; height: 100%; object-fit: cover; }

.check-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 46px;
  padding-bottom: 96px;
}
.check { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; color: #243254; }
.check__tick { color: var(--green); flex-shrink: 0; }

/* ---------- Best suited for ---------- */
.venues {
  background: #fff;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.venues .container { padding-top: 88px; padding-bottom: 88px; }
.venues__head { text-align: center; margin-bottom: 44px; }
.venues__head .section__title { margin: 0 auto; }
.venues__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.venue {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.venue svg { flex-shrink: 0; }
.venue span { font-size: 15px; font-weight: 700; color: var(--text-strong); }

/* ---------- Why SafeSpot ---------- */
.why { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.why__glow {
  position: absolute; top: -140px; right: -120px; width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,221,43,0.12), transparent 70%);
  pointer-events: none;
}
.why__inner { position: relative; padding-top: 96px; padding-bottom: 96px; }
.why__head { margin-bottom: 48px; }
.why__head .eyebrow { margin-bottom: 16px; }
.why__head .section__title { max-width: 620px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card);
  padding: 28px;
}
.why-card__chip {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.why-card__body { font-size: 14px; line-height: 1.55; color: var(--muted-dark); margin: 0; }

/* ---------- Specs ---------- */
.specs .container { padding-top: 96px; padding-bottom: 96px; }
.specs__head { margin-bottom: 40px; }
.specs__head .eyebrow { margin-bottom: 16px; }
.specs__scroll {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--r-img);
  overflow: hidden;
}
.specs__row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--row-line); }
.specs__row:last-child { border-bottom: none; }
.specs__row--head { background: var(--navy-deep); color: #fff; border-bottom: none; }
.specs__row--alt { background: var(--surface); }
.specs__cell { padding: 18px 26px; }
.specs__row--head .specs__cell { padding: 20px 26px; }
.specs__cell--spec { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-dark-3); }
.specs__cell--col  { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.specs__cell--label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.specs__cell--val   { font-size: 15px; font-weight: 700; color: var(--text-strong); }

/* ---------- Contact ---------- */
.contact { background: var(--navy-deeper); color: #fff; position: relative; overflow: hidden; }
.contact__glow {
  position: absolute; bottom: -180px; right: -120px; width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,221,43,0.14), transparent 70%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__copy .eyebrow { margin-bottom: 18px; }
.contact__sub { font-size: 1.08rem; line-height: 1.6; color: var(--muted-dark-2); max-width: 460px; margin: 0 0 34px; }
.contact__line {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  margin-bottom: 18px;
}
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(215,221,43,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__line-label { display: block; font-size: 12px; color: #8E9AB8; font-weight: 600; }
.contact__line-value { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }

.contact__card {
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.contact__card-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text-strong); margin: 0 0 8px; }
.contact__card-sub { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0 0 26px; }
.contact__reassure {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--row-line);
  padding-top: 22px;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-darkest); color: #fff; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 30px;
}
.footer__logo { height: 38px; width: auto; margin-bottom: 18px; }
.footer__tagline { font-size: 14px; line-height: 1.6; color: #9098B4; max-width: 320px; margin: 0; }
.footer__heading { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #6B7398; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a, .footer__text { text-decoration: none; color: #C3C9DD; font-size: 14px; font-weight: 500; }
.footer__links a { transition: color .15s ease; }
.footer__links a:hover { color: var(--lime); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bar span { font-size: 13px; color: #6B7398; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a {
  text-decoration: none;
  font-size: 13px;
  color: #6B7398;
  transition: color .15s ease;
}
.footer__legal a:hover { color: var(--lime); }

/* =====================================================================
   Legal pages (Terms of Service / Privacy Policy)
   ===================================================================== */
.legal { background: var(--page); }
.legal__head { background: var(--navy-deep); color: #fff; }
.legal__head .container { padding-top: 60px; padding-bottom: 46px; }
.legal__back {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; color: var(--muted-dark);
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 22px;
  transition: color .15s ease;
}
.legal__back:hover { color: var(--lime); }
.legal__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em; line-height: 1.06;
  margin: 0 0 12px;
}
.legal__updated { font-size: 14px; color: var(--muted-dark-3); margin: 0; }

.legal__content { max-width: 820px; margin: 0 auto; padding: 56px 32px 84px; }
.legal__content > p:first-child { margin-top: 0; }
.legal__intro { font-size: 1.06rem; line-height: 1.7; color: var(--text-muted); }
.legal__content h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; color: var(--text-strong);
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}
.legal__content h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--text-strong);
  margin: 24px 0 8px;
}
.legal__content p,
.legal__content li { font-size: 15.5px; line-height: 1.72; color: #3A4660; }
.legal__content ul { padding-left: 22px; margin: 12px 0; }
.legal__content li { margin-bottom: 9px; }
.legal__content a { color: var(--navy); font-weight: 600; }
.legal__note {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 28px 0;
}
.legal__note p { margin: 0; }
.legal__toc {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0 0 8px;
}
.legal__toc-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 12px; }
.legal__toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal__toc li { margin-bottom: 7px; }

/* =====================================================================
   Responsive — breakpoints match the prototype (980 / 760 / 620)
   ===================================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .product-row,
  .product-row--reverse { grid-template-columns: 1fr; gap: 36px; }
  /* On mobile the bag image should sit below its text */
  .product-row--reverse .product-row__media { order: 2; }
  .ecom { grid-template-columns: 1fr; gap: 22px; }
  .how__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .venues__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .check-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .specs__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .specs__table { min-width: 540px; }
}

@media (max-width: 620px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .legal__toc ol { columns: 1; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .venues__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .check-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
}
