/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.18_@babel+core@7.29.0_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.18_@babel+core@7.29.0_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: #ffffff;
  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 rgba(255,255,255,0.07);
  background: rgba(10, 10, 10, 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: #ffffff;
}

.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: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 700;
}

.nav-actions a:hover { color: #ffffff; }

.crm-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 13px;
  color: rgba(255,255,255,0.7) !important;
  transition: border-color 140ms ease, color 140ms ease;
}

.crm-link:hover { border-color: rgba(255,255,255,0.5) !important; color: #ffffff !important; }

/* ── 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: #ffffff;
  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: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  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: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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: 64px 0 64px;
  background-color: #0a0a0a;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.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;
}

.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 {
  /* Explicit size + margin: the focal spans set their own sizes, but the h1
   * itself needs them so browsers don't warn about sectioned-h1 defaults. */
  font-size: 1rem;
  margin: 0;
  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(42px, 5.2vw, 74px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.h1-accent { color: var(--red); }
.hero .h1-focal.h1-accent { color: var(--red); }

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

/* ── 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;
  }

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

  .h1-focal {
    font-size: 36px;
    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; }
}

/* ═══════════════════════════════════════════════
   REDESIGN — homepage sections (2026 refresh)
   ═══════════════════════════════════════════════ */

/* ── HERO (new headline + image) ──────────────── */

.hero h1 { text-transform: none; }

.hero .h1-focal {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #ffffff;
}

.hero .h1-focal.h1-accent { color: var(--red); }

.hero .h1-sub {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.hero-visual {
  padding: 0;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* Soft top/bottom blend so the image's edges dissolve into the hero background */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #0a0a0a, transparent 12%),
    linear-gradient(to top, #0a0a0a, transparent 12%);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1431 / 806;
}

/* Desktop: frameless image bleeds to the right viewport edge and fades into the dark background on its left */
@media (min-width: 981px) {
  .hero-visual {
    align-self: center;
    margin-right: calc(-1 * (max((100vw - 1200px) / 2, 0px) + 32px));
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%);
    mask-image: linear-gradient(to right, transparent 0%, #000 30%);
  }
}

/* Stacked tablet layout: dissolve both side edges into the dark background */
@media (min-width: 681px) and (max-width: 980px) {
  .hero-visual {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
}

.hero-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
  margin: 44px 0 0;
  padding: 0;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color 140ms ease, background 140ms ease;
}

.hero-card:hover {
  border-color: rgba(232,0,4,0.4);
  background: rgba(255,255,255,0.06);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(232,0,4,0.15);
  color: var(--red);
}

/* ── Shared eyebrow + heading rule ────────────── */

.section-eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.heading-rule {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 2px;
}

/* ── SUPPORT SYSTEM (alternating rows) ────────── */

.support { background: var(--panel); }

.support-rows {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.support-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.support-row:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.support-row.is-reverse .support-copy { order: 2; }
.support-row.is-reverse .support-visual { order: 1; }

.support-copy {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  align-content: center;
  padding: 34px 40px;
}

.support-copy-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.04em;
}

.support-divider {
  width: 1px;
  height: 34px;
  background: var(--line-strong);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232,0,4,0.22);
  color: var(--red);
}

.support-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.support-copy h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 12px;
}

.support-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 54ch;
}

.support-visual {
  display: grid;
  place-items: center;
  min-height: 200px;
  color: rgba(232,0,4,0.42);
  background:
    radial-gradient(120% 120% at 80% 20%, rgba(255,87,45,0.09), transparent 60%),
    linear-gradient(135deg, rgba(232,0,4,0.06), rgba(17,17,17,0.02));
}

/* ── OPERATIONS PARTNER (dark) ────────────────── */

.ops-partner {
  background-color: #0b0b0b;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  padding: 72px 0;
}

.ops-heading { max-width: 780px; }
.ops-heading > span { color: var(--red); }
.ops-heading h2 { color: #ffffff; }
.ops-heading h2 span { color: var(--red); }
.ops-heading p { color: rgba(255,255,255,0.5); }

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

.ops-card {
  position: relative;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  align-content: start;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 26px 16px 18px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ops-card:hover {
  border-color: rgba(232,0,4,0.4);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.ops-num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 4px #0b0b0b;
}

.ops-icon { color: var(--red); margin-top: 4px; }

.ops-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.ops-card p {
  color: rgba(255,255,255,0.44);
  font-size: 12.5px;
  line-height: 1.5;
}

.ops-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 18px 24px;
}

.ops-footer-lead {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
}

.ops-footer-lead strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.ops-footer-lead p {
  color: rgba(255,255,255,0.44);
  font-size: 13px;
  margin-top: 2px;
}

.ops-promises {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
}

.ops-promises li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
}

.ops-promises svg { color: var(--red); }

/* ── FIX PROBLEMS (light) ─────────────────────── */

.fix { background: var(--soft); }

.fix-head { align-items: start; }

.fix-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.fix-head p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
}

.issue-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 44px rgba(0,0,0,0.07);
  padding: 18px;
}

.issue-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.issue-panel-head strong { font-size: 15px; font-weight: 800; }

.issue-pill {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.issue-table { display: grid; }

.issue-table-head,
.issue-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.7fr;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
}

.issue-table-head {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.issue-row {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}

.issue-row:last-child { border-bottom: none; }

.issue-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  min-width: 0;
}

.issue-ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(232,0,4,0.08);
  color: var(--red);
}

.issue-ref { color: var(--muted); }

.issue-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.issue-status.is-green {
  background: rgba(47,191,107,0.12);
  color: #16723e;
}

.issue-time { color: var(--muted); font-size: 11.5px; }

.issue-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 5px;
  animation: pulse-dot 2.4s ease infinite;
}

.issue-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-weight: 800;
}

.fix-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 0;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
}

.fix-process li {
  display: flex;
  align-items: center;
}

.fix-step-card {
  flex: 1 1;
  position: relative;
  display: grid;
  justify-items: center;
  grid-gap: 9px;
  gap: 9px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 20px 10px 16px;
  color: var(--red);
}

.fix-step-num {
  position: absolute;
  top: -11px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.fix-step-card strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.fix-arrow {
  color: var(--line-strong);
  flex-shrink: 0;
  margin: 0 2px;
}

.fix-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin-top: 22px;
}

.fix-benefit {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 20px;
}

.fix-benefit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232,0,4,0.08);
  color: var(--red);
}

.fix-benefit h3 { font-size: 14px; font-weight: 800; }

.fix-benefit h3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}

.fix-benefit p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ── FULFILLMENT LOGIC (dark) ─────────────────── */

.fulfillment {
  background: #111111;
  padding: 72px 0;
}

.fulfillment-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-gap: 48px;
  gap: 48px;
  align-items: center;
}

.fulfillment-copy .section-eyebrow { color: var(--red); }

.fulfillment-copy h2 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.fulfillment-copy > p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
}

.fulfillment-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 18px;
}

.fulfillment-check svg { color: var(--red); flex-shrink: 0; margin-top: 1px; }

.rule-builder {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 20px;
}

.rule-builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rule-builder-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.rule-builder-title svg { color: var(--red); }

.rule-active {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.rule-active .live-dot { background: var(--green); }

.rule-list { display: grid; grid-gap: 10px; gap: 10px; }

.rule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px 14px;
}

.rule-if,
.rule-then {
  flex-shrink: 0;
  border-radius: 5px;
  padding: 3px 7px;
  background: rgba(232,0,4,0.14);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.rule-cond {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 600;
}

.rule-ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  color: var(--red);
}

.rule-do { color: rgba(255,255,255,0.68); font-size: 13px; }

.rule-dest {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 700;
}

.rule-dest svg { color: var(--red); }

.fulfillment-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin-top: 36px;
}

.fulfillment-benefit {
  display: flex;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  padding: 20px;
}

.fulfillment-benefit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(232,0,4,0.32);
  color: var(--red);
}

.fulfillment-benefit h3 { color: #ffffff; font-size: 15px; font-weight: 800; }

.fulfillment-benefit p {
  color: rgba(255,255,255,0.44);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 4px;
}

/* ── FACTORY / BOOTS ON THE GROUND (light) ────── */

.factory { background: var(--panel); }

.factory-head { align-items: start; }

.factory-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.factory-head .sh-left > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
}

.factory-cta { margin-top: 20px; width: max-content; }

.factory-checks {
  list-style: none;
  display: grid;
  grid-gap: 11px;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
}

.factory-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.factory-checks svg { color: var(--red); flex-shrink: 0; }

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

.factory-step {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  align-content: space-between;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  padding: 18px;
  color: var(--red);
}

.factory-step-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.factory-step-num {
  flex-shrink: 0;
  background: var(--red);
  color: #ffffff;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 900;
}

.factory-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin-top: 24px;
}

.factory-feature {
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 20px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.factory-feature:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.factory-feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(232,0,4,0.22);
  color: var(--red);
}

.factory-feature h3 { font-size: 14px; font-weight: 800; }

.factory-feature p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 4px;
}

/* ── INVENTORY PLANNING (light) ───────────────── */

.inventory { background: var(--soft); }

.inventory-head { align-items: start; }

.inventory-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.inventory-head .sh-left > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
}

.inventory-points {
  list-style: none;
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
}

.inventory-points li { display: flex; gap: 12px; }

.inventory-point-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(232,0,4,0.08);
  color: var(--red);
}

.inventory-points strong { font-size: 14px; font-weight: 800; }

.inventory-points p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 3px;
}

.inventory-cta { margin-top: 22px; width: max-content; }

/* Inventory dashboard panel (dark card on light bg) */
.inv-panel {
  border-radius: 16px;
  background: #0e0e0e;
  color: #ffffff;
  padding: 18px;
  box-shadow: 0 18px 54px rgba(0,0,0,0.16);
}

.inv-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.inv-panel-head strong { font-size: 14px; font-weight: 800; }

.inv-pill {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

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

.inv-stat {
  position: relative;
  display: grid;
  grid-gap: 3px;
  gap: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px;
}

.inv-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
  max-width: 78%;
}

.inv-stat-value {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inv-stat-value em {
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.4);
}

.inv-stat-value.is-green { color: var(--green); }

.inv-stat-icon {
  position: absolute;
  top: 11px;
  right: 11px;
  color: var(--red);
}

.inv-stat-icon.is-green { color: var(--green); }

.inv-panel-lower {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 10px;
}

.inv-forecast,
.inv-alloc {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px;
}

.inv-block-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.inv-chart {
  width: 100%;
  height: 68px;
  overflow: visible;
}

.inv-chart-line { fill: none; stroke: var(--red); stroke-width: 2; vector-effect: non-scaling-stroke; }
.inv-chart-hist { fill: none; stroke: rgba(255,255,255,0.3); stroke-width: 1.5; stroke-dasharray: 3 3; vector-effect: non-scaling-stroke; }

.inv-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}

.inv-alloc-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inv-donut {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
}

.inv-donut::after {
  content: '';
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #0e0e0e;
}

.inv-donut span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.inv-donut em {
  display: block;
  font-size: 8px;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.4);
}

.inv-legend {
  flex: 1 1;
  list-style: none;
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.inv-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
}

.inv-legend-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 2px;
}

.inv-legend-name {
  flex: 1 1;
  min-width: 0;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inv-legend-pct { color: #ffffff; font-weight: 700; }

.inv-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.inv-status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11.5px;
}

.inv-status svg { color: rgba(255,255,255,0.5); }
.inv-status em { font-style: normal; font-weight: 800; color: #ffffff; }
.inv-status em.is-green { color: var(--green); }
.inv-status em.is-red { color: var(--red); }

.inventory-lower {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 26px;
}

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

.inventory-benefit {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 18px;
}

.inventory-benefit-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232,0,4,0.08);
  color: var(--red);
}

.inventory-benefit h3 { font-size: 13.5px; font-weight: 800; }

.inventory-benefit p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.payment-card {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 20px;
}

.payment-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232,0,4,0.08);
  color: var(--red);
}

.payment-card h3 { font-size: 14px; font-weight: 800; }

.payment-terms {
  list-style: none;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.payment-terms li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.payment-terms svg { color: var(--red); flex-shrink: 0; }

/* ── Mobile-nav CTA override (beats .nav-cta hide) ── */
.mobile-nav .nav-cta {
  display: inline-flex;
  margin-top: 14px;
}

/* ═══ REDESIGN RESPONSIVE ═══════════════════════ */

@media (max-width: 980px) {
  .hero-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

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

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

  .fulfillment-inner { grid-template-columns: 1fr; gap: 32px; }

  .fulfillment-benefits { grid-template-columns: 1fr; }

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

  .inventory-lower { grid-template-columns: 1fr; }

  .inventory-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .hero-card { font-size: 12px; padding: 12px; }

  /* Support rows → single column */
  .support-row,
  .support-row.is-reverse { grid-template-columns: 1fr; }

  .support-row.is-reverse .support-copy,
  .support-row.is-reverse .support-visual { order: initial; }

  .support-copy { padding: 24px 20px; }
  .support-visual { min-height: 120px; }
  .support-n { font-size: 30px; }

  /* Operations */
  .ops-partner { padding: 44px 0; }
  .ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 10px; }
  .ops-card { padding: 24px 14px 16px; }
  .ops-footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px; }

  /* Fix problems */
  .fix-process {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .fix-process li { flex-direction: column; }
  .fix-step-card { width: 100%; flex-direction: row; justify-items: start; text-align: left; padding: 14px 16px; gap: 12px; }
  .fix-step-card strong { font-size: 13px; }
  .fix-step-num { position: static; }
  .fix-arrow { transform: rotate(90deg); margin: 4px 0; }
  .fix-benefits { grid-template-columns: 1fr; }

  .issue-table-head { display: none; }
  .issue-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: 'name status' 'ref time';
    row-gap: 2px;
  }
  .issue-name { grid-area: name; }
  .issue-row > span:nth-child(3) { grid-area: status; justify-self: end; }
  .issue-ref { grid-area: ref; }
  .issue-time { grid-area: time; justify-self: end; }

  /* Fulfillment */
  .fulfillment { padding: 44px 0; }
  .rule-row { gap: 8px; }
  .rule-do { width: 100%; }
  .rule-dest { margin-left: 0; }

  /* Factory */
  .factory-cta,
  .inventory-cta { width: 100%; }
  .factory-features { grid-template-columns: 1fr; }
  .factory-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Inventory */
  .inv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inv-panel-lower { grid-template-columns: 1fr; }
  .inventory-benefits { grid-template-columns: 1fr; }
}

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

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

