/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.15_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.5.15_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --red: #e80004;
  --red-dark: #b90003;
  --orange: #ff572d;
  --green: #2fbf6b;
  /* brand black */
  --brand: #111111;
  --brand-hover: #2c2c2c;
  /* neutralised from warm-brown to clean black/gray */
  --brown: #111111;
  --ink: #111111;
  --coffee: #1e1e1e;
  --muted: #686868;
  --soft: #f3f3f3;
  --panel: #ffffff;
  --line: #e6e6e6;
  --line-strong: #cccccc;
  --radius: 8px;
  --font-body: 'Figtree', 'Aptos', 'Segoe UI', sans-serif;
  --font-display: 'Encode Sans Expanded', 'Figtree', 'Aptos', sans-serif;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { overflow-x: hidden; }

button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TOPBAR ───────────────────────────────────── */

.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.wordmark em {
  color: var(--red);
  font-style: normal;
}

.brand-mark {
  display: block;
  filter: drop-shadow(0 1px 3px rgba(45, 12, 12, 0.14));
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 700;
}

.nav-actions a:hover { color: var(--brand); }

.crm-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 13px;
  transition: border-color 140ms ease, color 140ms ease;
}

.crm-link:hover { border-color: var(--brand); color: var(--brand); }

/* ── HAMBURGER ────────────────────────────────── */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 45;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 4px 16px 18px;
  animation: slideDown 180ms ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-link:last-of-type { border-bottom: none; }

.mobile-nav .crm-link {
  margin-top: 14px;
  display: inline-flex;
}

/* ── HERO (dark) ──────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background-color: #111111;
  background-image: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  grid-gap: 44px;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  min-width: 0;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 400px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
}

.eyebrow,
.section-heading > span,
.center-heading > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 0, 4, 0.2);
  border-radius: 999px;
  background: rgba(232, 0, 4, 0.05);
  padding: 5px 13px 5px 9px;
  width: -moz-fit-content;
  width: fit-content;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 0, 4, 0.4); }
  60%       { opacity: 0.9; box-shadow: 0 0 0 5px rgba(232, 0, 4, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.h1-kicker {
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.22em;
  line-height: 2.2;
  font-family: var(--font-body);
}

.h1-focal {
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.h1-rule {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px 0 10px;
  flex-shrink: 0;
}

.h1-sub {
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 700;
  color: var(--brown);
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.18;
  font-family: var(--font-body);
}

.lead {
  max-width: 44ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, transform 120ms ease;
}

.primary-button {
  background: var(--brand);
  color: #ffffff;
}

.primary-button:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.ghost-button {
  background: var(--panel);
  border-color: var(--line-strong);
  color: var(--ink);
}

.ghost-button:hover { border-color: var(--ink); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 6px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.product-kit {
  position: relative;
  aspect-ratio: 817 / 725;
  overflow: visible;
}

.product-kit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kit-lid  { display: none; }
.hero-note { display: none; }
.sun-disc  { display: none; }
.box-stack { display: none; }

/* ── SECTIONS ─────────────────────────────────── */

section { padding: 56px 0; }

.solutions,
.showcase,
.request {
  background: var(--panel);
}

.categories,
.how {
  background: var(--soft);
}

.section-heading,
.center-heading {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  min-width: 0;
  margin-bottom: 32px;
}

.section-heading { max-width: 680px; }

.center-heading {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-heading p { margin-top: 2px; }

.section-heading h2,
.center-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.center-heading h2 span {
  color: var(--red);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading p,
.center-heading p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ── SERVICE GRID ─────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.service-card {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.07);
  color: var(--brand);
}

.service-card h3 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* ── CATEGORIES ───────────────────────────────── */

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px 32px;
  gap: 16px 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 24px 28px;
}

.ship-feature {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  grid-gap: 11px;
  gap: 11px;
  min-width: 0;
}

.ship-feature svg {
  color: var(--brand);
  fill: rgba(17, 17, 17, 0.07);
}

.ship-feature strong {
  color: var(--brown);
  font-size: 13.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.shipping-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
  margin-top: 24px;
}

.flow-card {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 18px;
}

.flow-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-title span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.flow-title h3 {
  font-size: 16px;
  font-weight: 800;
}

.flow-image,
.integration-strip {
  width: 100%;
  aspect-ratio: 1.75;
  border-radius: 7px;
}

.flow-image { object-fit: cover; }

.integration-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
  background: var(--soft);
  padding: 14px;
}

.integration-strip span {
  display: grid;
  place-items: center;
  min-height: 62px;
  border-radius: 8px;
  background: var(--panel);
}

.integration-strip img {
  max-width: 76%;
  max-height: 36px;
  object-fit: contain;
}

.flow-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.logo-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
  margin-top: 24px;
}

.logo-panel {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  border-radius: 12px;
  background: var(--panel);
  padding: 22px;
  border: 1px solid var(--line);
}

.logo-panel h3 {
  font-size: 16px;
  font-weight: 800;
}

.logo-panel h3 span { color: var(--brand); }

.logo-panel p {
  max-width: 54ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 6px;
  gap: 6px;
  margin-top: 10px;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 50px;
  border-radius: 8px;
  background: var(--soft);
  padding: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
}

.logo-tile img {
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.logo-tile.is-wide { grid-column: span 2; }

.logo-grid.shipping .logo-tile:nth-child(5) {
  color: var(--red);
  font-size: 28px;
  font-style: italic;
}

.section-cta {
  width: max-content;
  margin: 40px auto 0;
}

/* ── SHOWCASE ─────────────────────────────────── */

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.media-card {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  border-radius: 12px;
  background: var(--soft);
  padding: 22px;
  border: 1px solid var(--line);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.7;
  border-radius: 8px;
  object-fit: cover;
}

.media-card h3 {
  color: var(--brown);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

/* ── HOW IT WORKS ─────────────────────────────── */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-grid li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 140ms ease;
}

.how-grid li:hover { border-color: var(--line-strong); }

.how-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--brand);
}

.how-head span {
  color: #b5b5b5;
  font-size: 11px;
  font-weight: 900;
}

.how-grid h3 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.how-grid p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  margin-top: 4px;
}

/* ── FORM INPUTS ──────────────────────────────── */

.row { display: grid; grid-gap: 10px; gap: 10px; }

.row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.optional,
.hint {
  color: var(--muted);
  font-weight: 600;
}

.hint { font-size: 12px; }

input[type='text'],
input[type='email'],
input[type='url'],
input:not([type]),
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 9px 11px;
  font-size: 14px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.09);
}

.chip-row,
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip,
.radio {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 7px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.chip:hover,
.radio:hover {
  border-color: var(--ink);
}

.chip.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.radio.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.radio input { display: none; }

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}

.check input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

.security-check {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 12px;
}

.security-check > span {
  font-size: 13px;
  font-weight: 900;
}

#landing-recaptcha { min-height: 78px; }

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 11px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success {
  border-color: rgba(47, 191, 107, 0.36);
  background: rgba(47, 191, 107, 0.07);
  color: #16723e;
}

.form-status.is-error {
  border-color: rgba(232, 0, 4, 0.36);
  background: rgba(232, 0, 4, 0.07);
  color: var(--red-dark);
}

/* ── FOOTER ───────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #0d0d0d;
  padding: 44px 0 22px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.7fr));
  grid-gap: 36px;
  gap: 36px;
  padding-bottom: 32px;
}

.footer-about {
  display: grid;
  align-content: start;
  grid-gap: 14px;
  gap: 14px;
  max-width: 340px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.footer-brand em {
  color: var(--red);
  font-style: normal;
}

.footer-about p {
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  line-height: 1.5;
}

.footer-column {
  display: grid;
  align-content: start;
  grid-gap: 12px;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  font-weight: 700;
}

.footer-column a:hover { color: rgba(255,255,255,0.82); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  color: rgba(255,255,255,0.28);
  font-size: 12px;
}

.footer-bottom div { display: flex; gap: 20px; }

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── WIZARD FORM ──────────────────────────────── */

.wizard-wrap {
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 28px 32px 32px;
  scroll-margin-top: 80px;
}

.wizard-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.wizard-step-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wizard-progress-track {
  flex: 1 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  transition: width 340ms ease;
}

.wizard-step {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.wizard-question {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 6px;
}

.wizard-subtext {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  gap: 10px;
  margin-top: 22px;
}

.wizard-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease, transform 120ms ease;
}

.wizard-option:hover {
  border-color: var(--line-strong);
  background: var(--soft);
  transform: translateY(-2px);
}

.wizard-option.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.wizard-inputs {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 22px;
}

.wizard-inputs--top { margin-top: 16px; }

.wizard-inputs label {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.wizard-inputs input,
.wizard-inputs textarea {
  font-size: 15px;
  padding: 11px 13px;
}

.wizard-or {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 0;
}

.wizard-or::before,
.wizard-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--line);
}

.wizard-or::before { left: 0; }
.wizard-or::after  { right: 0; }

.wizard-chips { margin-top: 16px; }

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.wizard-back-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 24px;
  transition: color 140ms;
}

.wizard-back-inline:hover { color: var(--brand); }

/* ── DELIVERY METHOD CARDS (Step 5) ───────────── */

.delivery-list {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 24px;
}

.delivery-card {
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 140ms ease, background 140ms ease;
}

.delivery-card.is-active {
  border-color: var(--red);
  background: rgba(232, 0, 4, 0.04);
}

.delivery-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.delivery-card-head input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.delivery-card-title {
  flex: 1 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.delivery-card-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card-body {
  padding: 0 16px 14px 42px;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.delivery-card-body input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  background: #ffffff;
}

.delivery-card-body input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.delivery-card-body .hint {
  font-size: 12px;
  color: var(--muted);
}

/* Other delivery methods (collapsible) */
.delivery-more {
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.delivery-more > summary {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  list-style: none;
}

.delivery-more > summary::-webkit-details-marker { display: none; }

.delivery-more > summary::after {
  content: '▾';
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  transition: transform 140ms ease;
}

.delivery-more[open] > summary::after { transform: rotate(180deg); }

.delivery-more-body {
  padding: 0 16px 14px;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}

.delivery-option input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.delivery-option-input {
  padding-left: 26px;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.delivery-option-input input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 14px;
  background: #ffffff;
}

.delivery-option-input input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

/* ── SECTION HEADING 2-COL ───────────────────── */

.section-heading-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 20px 48px;
  gap: 20px 48px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading-2col .sh-left {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
}

.section-heading-2col .sh-right {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  padding-bottom: 4px;
}

.section-heading-2col .sh-right p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Service card arrow */
.service-arrow {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 140ms ease, transform 140ms ease;
}

.service-card:hover .service-arrow {
  color: var(--brand);
  transform: translateX(3px);
}

/* ── HERO DARK OVERRIDES ──────────────────────── */

.hero .h1-focal { color: #ffffff; }
.hero .h1-kicker { color: rgba(255,255,255,0.4); }
.hero .h1-sub { color: #ffffff; }
.hero .lead { color: rgba(255,255,255,0.52); }

.hero .eyebrow {
  border-color: rgba(232,0,4,0.32);
  background: rgba(232,0,4,0.1);
  color: rgba(255,255,255,0.82);
}

.hero .hero-tags li {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.48);
}

.hero .primary-button {
  background: var(--red);
}

.hero .primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hero .ghost-button {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.72);
}

.hero .ghost-button:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
}

.hero .hero-visual {
  border-color: rgba(255,255,255,0.1);
  background: #f0f0f0;
}

/* ── NAV CTA ──────────────────────────────────── */

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: background 140ms ease;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* ── STATS BAND ───────────────────────────────── */

.stats-band {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  text-align: center;
}

.stat-item {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.stat-value em {
  color: var(--red);
  font-style: normal;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ── TECH SECTION (dark) ──────────────────────── */

.tech-dark {
  background: #111111;
  padding: 80px 0;
}

.tech-dark-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-gap: 64px;
  gap: 64px;
  align-items: center;
}

.tech-dark .section-heading > span { color: var(--red); }

.tech-dark .section-heading h2 {
  color: #ffffff;
}

.tech-dark .section-heading p {
  color: rgba(255,255,255,0.48);
}

.tech-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.tech-panel {
  display: grid;
  grid-gap: 9px;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 140ms ease, background 140ms ease;
}

.tech-panel:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.tech-panel .service-icon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
}

.tech-panel h3 {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  line-height: 1.25;
}

.tech-panel p {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}

/* ── CTA BANNER (dark) ────────────────────────── */

.cta-banner {
  background: #111111;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
}

.cta-banner h2 em {
  color: var(--red);
  font-style: normal;
}

.cta-banner p {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  line-height: 1.55;
  max-width: 46ch;
}

.cta-banner .primary-button {
  background: var(--red);
  margin-top: 4px;
}

.cta-banner .primary-button:hover {
  background: var(--red-dark);
}

/* ── TABLET (≤ 980px) ─────────────────────────── */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual { min-height: 300px; }

  .feature-band,
  .service-grid,
  .logo-panels,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-dark-inner {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-2col {
    grid-template-columns: 1fr;
  }
}

/* ── MOBILE (≤ 680px) ─────────────────────────── */

@media (max-width: 680px) {
  html, body, main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  /* Nav */
  .topbar-inner {
    gap: 8px;
    min-height: 56px;
  }

  .mobile-nav { top: 56px; }

  .nav-actions a:not(.crm-link),
  .nav-actions .crm-link {
    display: none;
  }

  .menu-toggle { display: flex; }

  .wordmark { font-size: 14px; }

  /* Hero */
  .hero { padding: 32px 0 26px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy { gap: 12px; }

  .hero-visual {
    min-height: 230px;
    margin: 0 -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .h1-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .h1-focal {
    font-size: 42px;
    letter-spacing: -0.035em;
  }

  .h1-sub { font-size: 17px; }

  .h1-rule { margin: 10px 0 8px; }

  .lead { font-size: 14px; }

  .hero-tags li:nth-child(3) { display: none; }

  /* Sections */
  section { padding: 36px 0; }

  .section-heading h2,
  .center-heading h2 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .center-heading { text-align: left; }

  .section-heading,
  .center-heading {
    margin-bottom: 22px;
  }

  /* Service grid — 2 col */
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-card {
    padding: 14px;
    gap: 8px;
  }

  .service-card h3 { font-size: 13px; }
  .service-card p  { font-size: 12px; }

  .service-icon {
    width: 28px;
    height: 28px;
  }

  /* Feature band — 2 col */
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    padding: 18px;
  }

  .ship-feature {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
  }

  .ship-feature strong { font-size: 13px; }

  /* Shipping flow */
  .shipping-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .flow-card {
    padding: 16px;
    gap: 12px;
  }

  .flow-title span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .flow-title h3 { font-size: 16px; }

  .integration-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    aspect-ratio: auto;
  }

  /* Logo panels */
  .logo-panels {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .logo-panel { padding: 18px; }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-tile.is-wide { grid-column: span 2; }

  /* Showcase */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .media-card {
    padding: 18px;
    gap: 14px;
  }

  .media-card h3 { font-size: 15px; }

  /* How grid — 2 col */
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .how-grid li { padding: 14px; }
  .how-grid h3 { font-size: 13px; }
  .how-grid p  { font-size: 12px; }

  .row.two { grid-template-columns: 1fr; }

  .section-cta { width: 100%; }

  /* Wizard */
  .wizard-wrap {
    padding: 22px 18px 28px;
    border-radius: 12px;
  }

  .wizard-header { margin-bottom: 28px; }

  .wizard-question { font-size: 20px; }

  .wizard-options {
    gap: 10px;
    margin-top: 22px;
  }

  .wizard-option {
    min-height: 64px;
    font-size: 15px;
  }

  .wizard-inputs { margin-top: 20px; }

  .wizard-nav {
    margin-top: 26px;
    padding-top: 18px;
  }

  /* Footer */
  .site-footer { padding: 40px 0 22px; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Stats / tech / cta-banner mobile */
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .tech-dark { padding: 48px 0; }

  .tech-dark-inner { gap: 36px; }

  .tech-panels { grid-template-columns: 1fr; }

  .cta-banner { padding: 40px 0; }

  .cta-banner h2 { font-size: 22px; }

  .nav-cta { display: none; }
}

/* ── REDUCED MOTION ───────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

