/* ============================================================
   SIRA LANDING PAGE  |  styles.css
   Font : Plus Jakarta Sans (Google Fonts)
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111827;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --red      : #E8192C;
  --dark     : #111827;
  --navy     : #0A1628;
  --gray     : #6B7280;
  --light    : #F3F4F6;
  --blue-bg  : #EBF5FE;
  --border   : #E5E7EB;
  --white    : #ffffff;
  --mw       : 1280px;
  --px       : 80px;          /* horizontal page padding */
}

/* ── Shared layout wrapper ────────────────────────────────── */
.inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ── Shared section text ──────────────────────────────────── */
.sec-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.sec-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin: 10px auto 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: none;
  white-space: nowrap;
  transition: opacity .2s, background .2s, color .2s;
}

.btn-dark           { background: var(--dark);  color: var(--white); }
.btn-dark:hover     { opacity: .85; }

.btn-outline        { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover  { background: var(--dark); color: var(--white); }

.btn-red            { background: var(--red);   color: var(--white); }
.btn-red:hover      { opacity: .88; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar .inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }

.nav-btn { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero { background: var(--white); }

.hero .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 72px;
  min-height: calc(100vh - 72px);
}

.hero-copy { flex: 1; max-width: 520px; }

.hero-copy h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 12px; }

.hero-media {
  flex-shrink: 0;
  width: 480px;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.12));
}

/* ═══════════════════════════════════════════════════════════
   FEATURE  (phone + gift-cards left / copy right)
═══════════════════════════════════════════════════════════ */
.feature { background: #fafafa; }

.feature .inner {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-top: 88px;
  padding-bottom: 88px;
}

/* ── Left visual ─────────────── */
.feat-visual {
  flex-shrink: 0;
  position: relative;
  width: 420px;
  height: 460px;
}

/* CSS phone mockup */
.feat-phone {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 196px;
  background: #fff;
  border: 5px solid #111;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  z-index: 2;
}
/* notch */
.feat-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.feat-screen {
  padding: 30px 14px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* phone header row */
.fp-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fp-hdr .fp-time  { font-size: 9px; font-weight: 700; color: var(--dark); }
.fp-hdr .fp-title { font-size: 11px; font-weight: 700; color: var(--dark); }
.fp-hdr .fp-skip  { font-size: 9px; color: var(--gray); }

/* tabs */
.fp-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.fp-tab {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 600;
  background: var(--light);
  color: var(--gray);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.fp-tab.active { background: var(--red); color: #fff; }

/* amount box */
.fp-amt-box {
  background: var(--light);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.fp-label { font-size: 8px; color: var(--gray); margin-bottom: 8px; }
.fp-amt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fp-amtbtn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 14px;
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.fp-amount { font-size: 22px; font-weight: 800; color: var(--dark); }
.fp-pills  { display: flex; gap: 4px; }
.fp-pill {
  padding: 3px 8px;
  border-radius: 20px;
  background: #fff;
  font-size: 8px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
}
.fp-pill.active { background: var(--dark); color: #fff; }

/* card rows inside phone */
.fp-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border-radius: 8px;
  padding: 7px 8px;
  margin-bottom: 6px;
}
.fp-card-chip {
  width: 32px; height: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.fp-card-chip.red  { background: var(--red); }
.fp-card-chip.dark { background: var(--dark); }

.fp-card-info { flex: 1; }
.fp-card-info .fp-card-name { font-size: 7px; font-weight: 700; color: var(--dark); }
.fp-card-info .fp-card-sub  { font-size: 6px; color: var(--gray); }

/* continue btn */
.fp-cta {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
  font-family: inherit;
}

/* gift-cards image (behind / right) */
.feat-cards {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-55%);
  width: 230px;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.15));
}
.feat-cards img { width: 100%; height: auto; }

/* ── Right copy ──────────────── */
.feat-copy { flex: 1; }

.feat-copy h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.feat-copy p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════════════════ */
.categories {
  padding: 80px 0;
  text-align: center;
}

.categories .sec-title,
.categories .sec-sub {
  padding-left: var(--px);
  padding-right: var(--px);
}

.cat-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 var(--px);
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cat-img {
  width: 148px;
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--light);
  flex-shrink: 0;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s;
}
.cat-card:hover .cat-img img { transform: scale(1.05); }

.cat-heart {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
  z-index: 2;
}
.cat-card:hover .cat-heart { color: var(--red); }

.cat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════════════════════ */
.promo-wrap {
  padding: 0 var(--px) 80px;
}

.promo-banner {
  background: var(--blue-bg);
  border-radius: 16px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.promo-copy h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.promo-copy p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 18px;
}
.promo-chips { display: flex; gap: 10px; align-items: center; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s;
}
.chip:hover { border-color: var(--dark); }
.chip svg   { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE KENJI
═══════════════════════════════════════════════════════════ */
.why {
  padding: 80px var(--px) 40px;
  text-align: center;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.w-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

/* media area */
.w-media {
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-media.cards-bg  { background: var(--light); }
.w-media.basket-bg { background: #f5f5f0; }
.w-media.phone-bg  { background: var(--light); }

.w-media img {
  width: 100%; height: 100%;
  display: block;
}
.w-media.cards-bg img {
  object-fit: contain;
  padding: 20px;
}
.w-media.basket-bg img {
  object-fit: cover;
  object-position: center;
}
.w-media.phone-bg img {
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

/* tracking overlay */
.track-overlay {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 3;
}
.t-id     { font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.t-status { font-size: 10px; font-weight: 600; color: #10B981; margin-bottom: 6px; }
.t-desc   { font-size: 9px; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.t-dots   { display: flex; align-items: center; }
.td { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.td.empty { background: var(--border); }
.tl { flex: 1; height: 2px; background: var(--red); }
.tl.empty { background: var(--border); }

/* card body */
.w-body { padding: 20px 22px 22px; }
.w-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.w-body p  { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }

.link-btn {
  background: none; border: none;
  font-size: 13px; font-weight: 600;
  color: var(--dark);
  text-decoration: underline;
  padding: 0; cursor: pointer;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE ICON CARDS  (3 cards row)
═══════════════════════════════════════════════════════════ */
.fi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--px) 80px;
}

.fi-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  background: var(--white);
}

.fi-icon {
  width: 42px; height: 42px;
  background: var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.fi-icon svg { width: 22px; height: 22px; }

.fi-card h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.35; }
.fi-card p  { font-size: 12px; color: var(--gray); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   OUR PROCESS
═══════════════════════════════════════════════════════════ */
.process {
  background: #F8FAFC;
  padding: 80px var(--px);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.proc-step { text-align: center; }

.proc-img {
  width: 200px;
  height: auto;
  margin: 0 auto 26px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.18));
}

.proc-step h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.proc-step p  { font-size: 13px; color: var(--gray); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: 80px var(--px);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }

.faq-item h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.faq-item p  { font-size: 12px; color: var(--gray); line-height: 1.65; }

.faq-item.is-red  { background: var(--red);  border-color: var(--red); }
.faq-item.is-dark { background: var(--dark); border-color: var(--dark); }

.faq-item.is-red h5,
.faq-item.is-dark h5 { color: var(--white); }

.faq-item.is-red p  { color: rgba(255,255,255,.80); }
.faq-item.is-dark p { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER  (woman image + dark panel)
═══════════════════════════════════════════════════════════ */
.cta-wrap {
  padding: 0 var(--px) 80px;
}

.cta-banner {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
}

.cta-img-col {
  width: 42%;
  flex-shrink: 0;
}
.cta-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cta-copy-col {
  flex: 1;
  background: linear-gradient(140deg, #0D1B2D 0%, #0A1628 100%);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy-col h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 340px;
}
.cta-copy-col p {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 340px;
}

.store-row { display: flex; gap: 12px; flex-wrap: wrap; }

.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: none; border-radius: 10px;
  padding: 11px 20px;
  cursor: pointer;
  transition: opacity .2s;
}
.store-btn:hover { opacity: .9; }

.s-icon { font-size: 22px; line-height: 1; }

.s-text { text-align: left; }
.s-text small {
  display: block; font-size: 9px; font-weight: 500;
  color: var(--gray); text-transform: uppercase;
  letter-spacing: .5px; line-height: 1; margin-bottom: 2px;
}
.s-text strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--dark); line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px var(--px) 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.foot-brand .f-logo { margin-bottom: 22px; }
.foot-brand .f-logo img { height: 30px; width: auto; object-fit: contain; }

.email-form { display: flex; gap: 8px; }
.email-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.email-form input:focus          { border-color: rgba(255,255,255,.35); }
.email-form input::placeholder   { color: rgba(255,255,255,.35); }
.email-form button {
  background: var(--red); color: var(--white);
  border: none; border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.email-form button:hover { opacity: .88; }

.foot-col h6 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.foot-col li { margin-bottom: 12px; }
.foot-col a  { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.foot-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
}
.footer-bottom p,
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-legal   { display: flex; gap: 20px; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════
   MODAL  – shared overlay + box
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade-in .2s ease;
}

.modal-overlay[hidden] { display: none !important; }

@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  animation: modal-slide-up .25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modal-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 18px; line-height: 1;
  color: var(--dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.modal-close:hover { background: var(--border); }

/* ── Coming Soon modal ──────────────────────────────────── */
.cs-box {
  width: 100%;
  max-width: 440px;
  padding: 48px 40px 40px;
  text-align: center;
}

.cs-icon {
  width: 64px; height: 64px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #2563EB;
}
.cs-icon svg { width: 32px; height: 32px; }

.cs-box h2 {
  font-size: 26px; font-weight: 800;
  color: var(--dark); margin-bottom: 10px;
}
.cs-box p {
  font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 28px;
}
.cs-waitlist-btn { width: 100%; justify-content: center; }

/* ── Responsive modals ──────────────────────────────────── */
@media (max-width: 540px) {
  .cs-box { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES  (privacy_policy.html / terms.html)
═══════════════════════════════════════════════════════════ */
.legal-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1a2d4a 100%);
  padding: 72px var(--px);
  text-align: center;
}

.legal-hero .legal-tag {
  display: inline-block;
  background: rgba(232,25,44,.15);
  color: var(--red);
  border: 1px solid rgba(232,25,44,.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.legal-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.legal-hero p {
  font-size: 15px;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* document body */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--px) 96px;
}

.legal-body section {
  margin-bottom: 48px;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.legal-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 18px 0 8px;
}

.legal-body p {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-body li {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-body strong { color: var(--dark); font-weight: 700; }

.legal-body a { color: var(--red); text-decoration: underline; }
.legal-body a:hover { opacity: .8; }

.legal-contact-box {
  background: var(--light);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 16px;
}

.legal-contact-box p { margin-bottom: 6px; }
.legal-contact-box p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE  ≤ 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --px: 40px; }

  .hero .inner     { gap: 40px; min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .hero-copy h1    { font-size: 42px; }
  .hero-media      { width: 380px; }

  .feature .inner  { gap: 48px; }
  .feat-visual     { width: 360px; }
  .feat-copy h2    { font-size: 32px; }

  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE  ≤ 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 24px; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-btn   { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { display: block; padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }

  /* Hero */
  .hero .inner { flex-direction: column; padding-top: 48px; padding-bottom: 48px; }
  .hero-copy   { max-width: 100%; }
  .hero-copy h1 { font-size: 32px; }
  .hero-media  { width: 100%; }

  /* Feature */
  .feature .inner { flex-direction: column; padding-top: 60px; padding-bottom: 60px; }
  .feat-visual    { width: 100%; height: 340px; }
  .feat-cards     { width: 180px; right: -8px; }
  .feat-copy h2   { font-size: 28px; }

  /* Categories */
  .cat-grid { gap: 12px; }
  .cat-img  { width: 120px; height: 120px; }

  /* Promo */
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-chips  { justify-content: center; }

  /* Why */
  .why          { padding: 60px var(--px) 32px; }
  .why-cards    { grid-template-columns: 1fr; }

  /* Feature icons */
  .fi-row { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .proc-img     { width: 160px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-banner     { flex-direction: column; }
  .cta-img-col    { width: 100%; height: 220px; }
  .cta-copy-col   { padding: 36px 28px; }
  .cta-copy-col h2 { font-size: 24px; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
