/* ============================================================
   Tyne — U.S. sample fulfillment for global manufacturers
   Handwritten CSS design system
   ============================================================ */

/* ---------- Live demo (buyer portal embed) ---------- */
.demo-window {
  max-width: 1000px; margin: 34px auto 0; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 44px -26px rgba(14, 59, 38, .24);
}
.demo-bar {
  display: flex; align-items: center; gap: 14px; height: 44px; padding: 0 16px;
  background: #f3f4f2; border-bottom: 1px solid var(--line);
}
.demo-dots { display: flex; gap: 7px; }
.demo-dots span { width: 11px; height: 11px; border-radius: 50%; background: #d3d6d2; }
.demo-dots span:nth-child(1) { background: #ff5f56; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #27c93f; }
.demo-url {
  flex: 1; max-width: 420px; height: 26px; display: flex; align-items: center; gap: 7px;
  padding: 0 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.8rem; color: var(--muted); font-family: var(--font-display);
}
.demo-url svg { width: 13px; height: 13px; color: var(--green); flex: 0 0 auto; }
.demo-frame { display: block; }
.demo-frame iframe { display: block; width: 100%; height: 640px; border: 0; background: var(--bg-soft); }
.demo-actions { text-align: center; margin-top: 22px; }
@media (max-width: 700px) { .demo-frame iframe { height: 520px; } }

:root {
  /* industrial, steel-neutral palette with a deep-green brand accent */
  --bg: #ffffff;
  --bg-soft: #f1f3f4;         /* cool steel off-white */
  --bg-warm: #f6f7f8;
  --ink: #18222a;            /* dark slate, corporate */
  --ink-soft: #3a454e;
  --muted: #5e6a72;          /* cool gray */
  --muted-2: #8b949c;
  --green: #23924f;          /* money green — fresh greenback */
  --green-dark: #16703b;
  --green-deep: #123a26;     /* deep forest — dark blocks */
  --green-on-dark: #5fdd8b;
  --green-tint: #e7f4ec;
  --green-border: #c6e3cf;
  --navy: #0f3226;           /* deep forest-green for dark blocks */
  --line: #e0e4e7;           /* cool hairline */
  --line-2: #eceff1;
  --r: 8px;
  --r-sm: 6px;
  --r-lg: 12px;
  --shadow: 0 1px 2px rgba(14, 59, 38, .04), 0 10px 28px -18px rgba(14, 59, 38, .18);
  --shadow-sm: 0 1px 2px rgba(14, 59, 38, .04), 0 1px 1px rgba(14, 59, 38, .03);
  --maxw: 1140px;
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Gabarito", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -0.025em; font-family: var(--font-display); font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { scroll-margin-top: 84px; }

/* Accessible focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.94rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1;
  padding: 13px 22px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .06s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 1px 2px rgba(14,59,38,.10); }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 2px 6px rgba(14,59,38,.14); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: #c9ccc9; background: #fafbfa; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #eef1ee; }
.btn-lg { padding: 15px 24px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
/* Transparent state while over the video hero */
.site-header--transparent {
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header--transparent .brand { color: #fff; }
.site-header--transparent .nav-links a.navlink { color: rgba(255,255,255,.9); }
.site-header--transparent .nav-links a.navlink:hover { color: #fff; }
.site-header--transparent .lang-toggle {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); color: #fff;
}
.site-header--transparent .lang-toggle:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.site-header--transparent .lang-toggle svg { color: rgba(255,255,255,.85); }
.site-header--transparent .nav-toggle { border-color: rgba(255,255,255,.5); color: #fff; }
/* keep the mobile dropdown panel readable (solid) even when header is transparent */
.site-header--transparent .nav.open .nav-links a.navlink { color: var(--ink-soft); }
.site-header--transparent .nav.open .nav-links .lang-toggle { color: var(--ink-soft); background: #fff; border-color: var(--line); }
.site-header--transparent .nav.open .nav-links .lang-toggle svg { color: var(--muted-2); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand-logo { display: block; height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.navlink { color: var(--ink-soft); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-links a.navlink:hover { color: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 18px; }

/* Hide Weglot's injected default switcher — we use our own #langToggle */
.weglot-container, .country-selector, [data-wg-default] { display: none !important; }

/* Custom language toggle (Weglot-driven) */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.lang-toggle:hover { border-color: #c9ccc9; background: #fafbfa; }
.lang-toggle svg { color: var(--muted-2); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px; cursor: pointer;
}
.nav-toggle svg { display: block; }

/* ---------- Hero (chat conversation) ---------- */
.hero--chat {
  position: relative; overflow: hidden;
  padding: clamp(48px, 8vw, 92px) 0 76px;
  background:
    radial-gradient(760px 460px at 92% -12%, rgba(31,157,87,.055), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(38px, 5vw, 56px);
}

/* --- value proposition (centered) --- */
.hero-copy { max-width: 780px; }
.hero-stats, .hero-ctas { justify-content: center; }
.hero-trust { margin-left: auto; margin-right: auto; }
.hero-visual { width: 100%; max-width: 460px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-dark);
  background: none; border: 0; padding: 0;
}
.hero-eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--green); flex: 0 0 auto;
}
/* centered section eyebrows sit above the heading with no leading rule */
.section-head .hero-eyebrow::before { display: none; }
.hero-trust { margin-top: 22px; color: var(--muted); font-size: 0.92rem; max-width: 42ch; }

/* --- chat window --- */
.chat-window {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 18px 40px -26px rgba(14, 59, 38, .26);
  overflow: hidden; width: 100%;
}
.chat-bar {
  display: flex; align-items: center; gap: 11px; padding: 14px 18px;
  background: var(--green-tint); border-bottom: 1px solid var(--green-border);
}
.chat-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--green); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.chat-peer-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.chat-peer { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.chat-online {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.78rem; font-weight: 500;
}
.chat-online::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #27c93f; }

.chat-thread {
  padding: 22px 18px; display: flex; flex-direction: column; gap: 12px;
  min-height: 336px; justify-content: flex-end;
  background: #f4faf6;  /* faint green so bubbles pop */
}

/* party labels (BUYER / YOU) */
.chat-label {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: .09em; color: var(--muted-2); margin: 4px 4px -4px;
}
.chat-label--buyer { align-self: flex-start; }
.chat-label--supplier { align-self: flex-end; color: var(--green-dark); }

/* message rows */
.chat-msg { max-width: 82%; display: flex; }
.chat-msg--buyer { align-self: flex-start; }
.chat-msg--supplier { align-self: flex-end; }
.chat-bubble {
  padding: 11px 15px; border-radius: 18px; font-size: 0.98rem; line-height: 1.45;
  animation: bubblePop .28s ease both;
}
.chat-msg--buyer .chat-bubble {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-bottom-left-radius: 6px; box-shadow: 0 1px 2px rgba(14,59,38,.05);
}
.chat-msg--supplier .chat-bubble {
  background: var(--green); color: #fff; border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px -4px rgba(35,146,79,.5);
}
@keyframes bubblePop {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* link card bubble */
.chat-linkcard {
  align-self: flex-end; max-width: 88%;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border-radius: 16px;
  background: #fff; border: 1px solid var(--green-border, #cfe7d8);
  box-shadow: 0 10px 26px -16px rgba(14,59,38,.5);
  animation: bubblePop .28s ease both;
}
.chat-linkcard .lc-icon {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px;
  display: grid; place-items: center; background: var(--green-tint, #eef7f0); color: var(--green-dark);
}
.chat-linkcard .lc-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.chat-linkcard .lc-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.chat-linkcard .lc-url {
  font-family: var(--font-display); font-weight: 600; color: var(--green-dark);
  font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* typing indicator */
.chat-typing {
  align-self: flex-start; display: inline-flex; gap: 5px;
  padding: 13px 16px; background: var(--bg-soft); border-radius: 18px; border-bottom-left-radius: 6px;
}
.chat-typing.is-supplier { align-self: flex-end; background: #e3efe8; border-radius: 18px; border-bottom-right-radius: 6px; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2);
  animation: typingBounce 1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* --- headline --- */
.hero h1 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem); font-weight: 700;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1.02;
}
.hero h1 .accent { color: var(--green-dark); white-space: nowrap; }
.hero-sub {
  margin-top: 20px; font-size: clamp(1.04rem, 2.2vw, 1.18rem);
  color: var(--ink-soft); max-width: 48ch; line-height: 1.55;
}
/* benefit badges under the headline */
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-stat {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px 9px 14px; font-size: 0.96rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-stat svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }
.hero-stat strong { color: var(--green-dark); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* --- single scroll cue, centered at the bottom of the hero --- */
.scroll-cue {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: max-content; margin: 56px auto 0;
  color: var(--muted); font-size: 0.86rem; font-weight: 600;
  font-family: var(--font-display); letter-spacing: .01em;
}
.scroll-cue:hover { color: var(--green-dark); }
.scroll-cue svg { animation: cueBounce 1.8s infinite ease-in-out; }
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-bubble, .chat-linkcard, .scroll-cue svg { animation: none; }
}
.chat-caption {
  margin: 14px auto 0; max-width: 340px; text-align: center;
  color: var(--muted); font-size: 0.86rem; line-height: 1.5;
}

/* ---------- Send a box / warehouse ---------- */
.section-head .hero-eyebrow { margin-bottom: 14px; }

/* three-step process: pictogram signs + arrows */
.flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(6px, 1.5vw, 16px); align-items: start;
  max-width: 1000px; margin: 0 auto 40px;
}
.flow-step { text-align: center; }
.flow-sign {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 18px;
  box-shadow: 0 10px 26px -20px rgba(14, 59, 38, .3);
}
.flow-sign svg { display: block; width: 100%; height: auto; max-height: 158px; }
.flow-num {
  position: absolute; top: -13px; left: -13px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: 0 5px 14px rgba(31, 157, 87, .45);
}
.flow-step h3 { margin-top: 20px; font-size: 1.08rem; letter-spacing: -0.01em; }
.flow-step p {
  margin: 8px auto 0; max-width: 27ch;
  color: var(--muted); font-size: 0.92rem; line-height: 1.55;
}
.flow-arrow { align-self: center; margin-top: 46px; color: var(--green); display: grid; place-items: center; }
.flow-arrow svg { display: block; }

.fulfill-cards--2 { max-width: 760px; margin-left: auto; margin-right: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wh-window {
  max-width: 1000px; margin: 6px auto 0; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(14, 59, 38, .35);
}
.wh-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 46px; padding: 8px 18px; background: #f3f4f2; border-bottom: 1px solid var(--line);
}
.wh-loc {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-size: 0.84rem; font-weight: 600; font-family: var(--font-display);
}
.wh-loc svg { color: var(--green); flex: 0 0 auto; }
.wh-status {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
}
.wh-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #27c93f; }
.wh-stage { background: #f7f8f4; }
.wh-stage svg { display: block; width: 100%; height: auto; }
.wh-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px; border-top: 1px solid var(--line); background: #fff;
  color: var(--muted); font-size: 0.9rem;
}
.wh-foot strong { color: var(--ink); font-weight: 600; }
.wh-foot-stat {
  display: inline-flex; align-items: center; color: var(--green-dark); font-weight: 600; font-size: 0.84rem;
  background: var(--green-tint, #eef7f0); border: 1px solid var(--green-border, #cfe7d8);
  padding: 6px 12px; border-radius: 999px;
}
.fulfill-cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 34px;
}
.fulfill-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px;
}
.fulfill-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-tint, #eef7f0); color: var(--green-dark); margin-bottom: 16px;
}
.fulfill-card h3 { font-size: 1.08rem; letter-spacing: -0.01em; }
.fulfill-card p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Generic section heading ---------- */
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.35rem); letter-spacing: -0.03em; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.03rem; line-height: 1.6; }

/* ---------- How it works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; position: relative;
}
.step { text-align: center; padding: 0 10px; position: relative; }
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-soft);
  display: grid; place-items: center; margin: 0 auto 18px;
  border: 1px solid var(--line-2);
}
.step-num { color: var(--green); font-weight: 700; font-size: 1.15rem; margin-right: 6px; }
.step h3 { display: inline; font-size: 1.05rem; font-weight: 700; }
.step p { margin-top: 10px; color: var(--muted); font-size: 0.92rem; }
/* dotted connectors between steps (desktop) */
.step::after {
  content: ""; position: absolute; top: 32px; right: -6px;
  width: 12px; height: 0;
  border-top: 2px dotted #c7ccc7;
}
.step:last-child::after { display: none; }
.steps::before {
  content: ""; position: absolute; top: 32px;
  left: 12.5%; right: 12.5%; height: 0;
  border-top: 2px dotted #d4d9d4; z-index: 0;
}
.step-icon, .step-body { position: relative; z-index: 1; }

/* ---------- Category grid (home page; renamed from .cat-grid to avoid
   colliding with catalog.css's product grid of the same name) ---------- */
.home-cats {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 16px;
}
.cat-card { text-align: center; }
.cat-thumb {
  border-radius: var(--r); overflow: hidden; aspect-ratio: 1 / 1;
  background: #fff; border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
/* Uniform zoom crops each photo's white margins equally so every product
   icon reads at a consistent visual size. */
/* images are pre-normalized to identical framing (see normalize-icons.mjs),
   so a light uniform zoom is all that's needed for a snug icon */
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.cat-card .label { margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
/* styled placeholder */
.img-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: repeating-linear-gradient(135deg, #eef0ee 0 12px, #f4f6f4 12px 24px);
  color: var(--muted-2); font-size: 0.78rem; font-weight: 600;
  text-align: center; padding: 10px;
}
.not-a-fit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 30px; color: var(--muted-2); font-size: 0.9rem; text-align: center;
}

/* ---------- Shared card + check list ---------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price, .est-total-amt, .pl-amt, .step-num, .est-val, .fee-amt { font-family: var(--font-display); font-feature-settings: "tnum" 1; }
.price { font-size: 3rem; font-weight: 700; color: var(--green-dark); letter-spacing: -0.04em; line-height: 1; }
.price-note { color: var(--muted); font-size: 0.95rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.check-list li svg { flex: 0 0 auto; margin-top: 2px; }

/* ---------- Pricing (fast-food menu: one price = one thing) ---------- */
.menu-card {
  max-width: 640px; margin: 0 auto; position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--green-border, #cfe7d8); border-radius: var(--r-lg);
  padding: 8px 34px 32px; box-shadow: var(--shadow-sm);
}
.menu-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-row {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line-2);
}
.menu-row:first-child { border-top: 0; }
.menu-ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; background: var(--green-tint, #eef7f0); color: var(--green-dark);
}
.menu-info { flex: 1; min-width: 0; }
.menu-info strong { display: block; color: var(--ink); font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; }
.menu-info span { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 3px; line-height: 1.4; }
.menu-price {
  flex: 0 0 auto; text-align: right; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 4.5vw, 1.9rem);
  color: var(--green-dark); letter-spacing: -0.03em; line-height: 1;
}
.menu-price small { display: block; margin-top: 3px; font-size: 0.7rem; font-weight: 600; color: var(--muted-2); letter-spacing: 0; }
.menu-note {
  margin-top: 22px; padding: 14px 16px; background: var(--green-tint, #eef7f0);
  border-radius: var(--r-sm); color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; text-align: center;
}
.menu-cta { width: 100%; margin-top: 18px; }
.cost-fine { margin-top: 12px; color: var(--muted-2); font-size: 0.84rem; text-align: center; }
@media (max-width: 560px) {
  .menu-card { padding: 6px 20px 26px; }
  .menu-row { gap: 13px; }
  .menu-ic { width: 42px; height: 42px; }
}
.stripe-badge {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2);
  color: var(--muted); font-size: 0.84rem;
}
.stripe-badge svg { color: var(--green-dark); flex: 0 0 auto; }
.stripe-badge strong { color: #635bff; font-weight: 700; }  /* Stripe brand purple */

/* ---------- Features strip ---------- */
.features-strip {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 28px; box-shadow: var(--shadow-sm);
}
.feature { display: flex; align-items: center; gap: 12px; }
.feature .ficon { color: var(--green); display: grid; place-items: center; }
.feature .ftext { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); line-height: 1.25; }
.feature .ftext small { display: block; color: var(--muted-2); font-weight: 500; }

/* ---------- Requirements + FAQ ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.req-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 13px; }
.req-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.req-note {
  margin-top: 22px; padding: 14px 16px; background: var(--bg-soft);
  border-radius: var(--r-sm); color: var(--muted); font-size: 0.88rem;
}
.card h3.block-title { font-size: 1.25rem; }

/* Accordion */
.faq { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--line-2); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 18px 2px; font-size: 1rem; font-weight: 600; color: var(--ink); font-family: inherit;
}
.faq-q .chev { flex: 0 0 auto; transition: transform .2s ease; color: var(--muted-2); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 2px 20px; color: var(--muted); font-size: 0.95rem; max-width: 56ch; }

/* ---------- Reserve form ---------- */
.reserve-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.reserve-intro h2 { font-size: 2rem; }
.reserve-intro p { margin-top: 14px; color: var(--muted); }
.reserve-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.reserve-points li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: 0.95rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--green-dark); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,157,87,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-footnote { margin-top: 14px; color: var(--muted-2); font-size: 0.82rem; }
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--green-dark); }

/* Success card (shown in place of the form after a successful submit) */
[hidden] { display: none !important; }
.form-success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 44px 32px; }
.form-success .success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-tint); color: var(--green-dark);
  display: grid; place-items: center; border: 1px solid var(--green-border);
}
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--muted); max-width: 42ch; }
.form-success .btn { margin-top: 8px; }

/* ---------- Final CTA ---------- */
.final-cta-block {
  background: var(--navy); color: #fff; border-radius: var(--r-lg);
  padding: 44px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.final-cta-block h2 { color: #fff; font-size: 1.85rem; }
.final-cta-block p { color: rgba(214,238,222,.82); margin-top: 10px; max-width: 48ch; }
.final-cta-icon { display: flex; align-items: center; gap: 20px; }
.final-cta-icon > svg { color: var(--green-on-dark); flex: 0 0 auto; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-brand .wordmark { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 10px; max-width: 30ch; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--green-dark); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.85rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .home-cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .features-strip { justify-content: flex-start; gap: 18px 24px; }
  .feature { flex: 1 1 40%; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* ----- mobile nav: full-width tappable menu ----- */
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; padding: 10px; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 18px 18px; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a.navlink {
    padding: 15px 6px; border-bottom: 1px solid var(--line-2);
    font-size: 1.05rem; color: var(--ink-soft);
  }
  .nav.open .nav-links .lang-toggle { align-self: flex-start; margin: 12px 6px; }
  .nav.open .nav-links .btn { width: 100%; padding: 16px; margin-top: 6px; }

  /* chat hero stacks: copy on top, chat below */
  .hero--chat { padding: 40px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: none; text-align: center; }
  .hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-trust { margin-left: auto; margin-right: auto; }
  .chat-window { max-width: 440px; margin: 0 auto; width: 100%; }
  .chat-thread { min-height: 300px; }
  .scroll-cue { margin-top: 40px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .steps::before { display: none; }
  .step::after { display: none; }

  .pricing-grid, .price-layout, .two-col, .reserve-grid, .fulfill-cards, .fulfill-cards--2 { grid-template-columns: 1fr; }
  .wh-bar { flex-wrap: wrap; }
  .flow { grid-template-columns: 1fr; gap: 6px; max-width: 380px; }
  .flow-sign { max-width: 320px; margin: 0 auto; }
  .flow-arrow { margin: 4px auto; transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: clamp(40px, 11vw, 52px) 0; }
  .section-head { margin-bottom: 34px; }

  /* generous, thumb-friendly buttons */
  .btn { padding: 14px 20px; }
  .btn-lg { padding: 16px 22px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { flex: 1 1 100%; }

  .home-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .included-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .feature { flex: 1 1 100%; }
  .features-strip { padding: 20px; gap: 16px; }

  .form-grid { grid-template-columns: 1fr; }
  /* 16px inputs prevent iOS auto-zoom on focus */
  .field input, .field select, .field textarea { font-size: 16px; padding: 13px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .final-cta-block { padding: 30px 24px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .final-cta-block .btn { width: 100%; }
  .card { padding: 22px; }
  .price { font-size: 2.6rem; }
  .est-total-amt { font-size: 1.5rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.95rem; }
  .price { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
