/* ============================================================
   Shipping Freight Company — Get Quote
   Premium B2B logistics design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --navy-900: #071a2c;
  --navy-800: #0b2238;
  --navy-700: #102e49;

  --navy: #0c2740;
  --navy-soft: #16324f;

  /* Accent — sand / gold (was maritime teal) */
  --teal-700: #b8954a;
  --teal-600: #d9b85e;
  --teal-500: #f0d484;
  --teal-400: #f5e0a3;
  --teal-tint: #fbf4e0;
  --teal-tint-2: #f6e9c6;
  --teal-ring: rgba(240,212,132,0.40);

  /* Neutrals */
  --ink: #16263a;
  --slate-700: #2b3c4f;
  --slate-600: #45586c;
  --slate-500: #65788c;
  --slate-400: #8a9aac;
  --line: #dde5ef;
  --line-strong: #c6d2e0;
  --bg: #e9eef5;
  --bg-2: #f4f8fc;
  --card: #ffffff;

  /* Form field overrides (user choice) */
  --field-bg: #eef3f9;
  --field-text: #14304d;
  --field-placeholder: #97aabf;

  /* Status */
  --green: #15935a;
  --green-tint: #e4f5ec;
  --red: #d23b3b;
  --red-tint: #fbeaea;
  --amber: #c47d12;
  --amber-tint: #fbf1df;

  /* Shape */
  --r-sm: 7px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(13, 38, 59, 0.06), 0 1px 3px rgba(13, 38, 59, 0.05);
  --shadow: 0 4px 14px rgba(13, 38, 59, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 34, 56, 0.16);
  --shadow-teal: 0 10px 28px rgba(217, 184, 94, 0.40);

  --maxw: 1080px;
  --header-h: 64px;
  --stepper-h: 78px;
  --footer-h: 78px;

  --font: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }

h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--teal-tint-2); }

/* ---------- App shell ---------- */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.appbar {
  height: var(--header-h);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(13,38,59,0.03);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.brand-mark svg { color: var(--navy) !important; }
.brand-name {
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; color: var(--navy);
  display: flex; flex-direction: column; line-height: 1.15;
  white-space: nowrap;
}
.brand-name small { font-weight: 500; font-size: 11px; color: var(--slate-500); letter-spacing: 0.02em; text-transform: none; margin-top: 2px; }

.appbar-right { display: flex; align-items: center; gap: 12px; }

.draft-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500; color: var(--slate-500);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: color .2s;
  white-space: nowrap;
}
.draft-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-400); transition: background .2s; }
.draft-pill.saving .dot { background: var(--amber); animation: pulse 1s infinite; }
.draft-pill.saved .dot { background: var(--teal-500); }
.draft-pill.saved { color: var(--slate-600); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.ghost-link {
  background: none; border: none; color: var(--slate-600); font-size: 13.5px; font-weight: 500;
  display: flex; align-items: center; gap: 6px; padding: 8px 8px; border-radius: 8px; white-space: nowrap;
}
.ghost-link:hover { color: var(--navy); background: var(--bg-2); }
.ghost-link svg { color: var(--teal-600); }
.appbar-right .expert-link { border: 1px solid var(--line-strong); padding: 8px 13px; }
.appbar-right .expert-link:hover { border-color: var(--teal-500); background: var(--teal-tint); color: var(--navy); }

/* ---------- Stepper ---------- */
.stepper-wrap {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky; top: var(--header-h); z-index: 30;
}
.stepper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
}
.stepper-progress {
  display: flex; align-items: center; width: 100%;
}
.step {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto;
}
.step-node {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
  border: 2px solid var(--line-strong);
  background: var(--card); color: var(--slate-400);
  flex: 0 0 auto;
  transition: all .25s;
}
.step-label {
  font-size: 12.5px; color: var(--slate-400); font-weight: 500;
  white-space: nowrap;
  transition: color .25s;
}
.step.done .step-node { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }
.step.done .step-label { color: var(--slate-600); }
.step.active .step-node { border-color: var(--teal-500); color: var(--teal-600); background: var(--teal-tint); box-shadow: 0 0 0 4px var(--teal-ring); }
.step.active .step-label { color: var(--navy); font-weight: 600; }
.step-bar {
  flex: 1 1 auto;
  height: 2px;
  background: var(--line-strong);
  margin: 0 12px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.step-bar > i {
  position: absolute; inset: 0; width: 0%;
  background: var(--teal-500); transition: width .35s ease;
}
.step-bar.filled > i { width: 100%; }

.stepper-meta {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px 14px;
  display: flex; align-items: baseline; gap: 12px;
}
.stepper-meta .scount { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); }
.stepper-meta .stitle { font-size: 15px; font-weight: 600; color: var(--navy); }
.stepper-meta .spct { margin-left: auto; font-size: 12.5px; color: var(--slate-500); }

/* ---------- Main ---------- */
.main {
  flex: 1 1 auto;
  padding: 38px 28px calc(var(--footer-h) + 48px);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
}
.step-head { margin-bottom: 26px; }
.step-head .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 8px;
}
.step-head h2 { font-size: 26px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.step-head p { color: var(--slate-500); font-size: 15px; margin-top: 7px; max-width: 64ch; }

/* ---------- Footer nav ---------- */
.footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 35;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-step { font-size: 13px; color: var(--slate-500); }
.footer-step b { color: var(--navy); font-weight: 600; }
.footer-actions { display: flex; align-items: center; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r);
  font-weight: 600; font-size: 14.5px;
  padding: 11px 20px;
  border: 1px solid transparent;
  transition: all .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--teal-500); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-600); color: var(--navy); box-shadow: var(--shadow-teal); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--slate-600); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--slate-400); color: var(--navy); background: var(--bg-2); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none; }
.btn-link { background: none; border: none; color: var(--teal-600); font-weight: 600; padding: 4px; }
.btn-link:hover { color: var(--teal-700); text-decoration: underline; }

/* ============================================================
   Service selection screen
   ============================================================ */
.select-hero {
  text-align: center;
  max-width: 740px; margin: 8px auto 40px;
}
.select-hero .eyebrow { color: var(--teal-600); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12.5px; }
.select-hero h1 { font-size: 38px; font-weight: 600; color: var(--navy); margin-top: 12px; letter-spacing: -0.02em; line-height: 1.1; }
.select-hero p { font-size: 16.5px; color: var(--slate-500); margin-top: 14px; }

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1120px; margin: 0 auto;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-400); }
.service-card.selected { border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-ring), var(--shadow-lg); }
.service-visual {
  position: relative; aspect-ratio: 16 / 10; background: linear-gradient(150deg, #e9eff4, #d6e1ea);
}
.service-visual image-slot { width: 100%; height: 100%; display: block; }
.service-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,26,44,0.78); color: #fff; backdrop-filter: blur(4px);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 11px; border-radius: 999px; z-index: 3;
  display: flex; align-items: center; gap: 7px;
  pointer-events: none;
}
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 21px; font-weight: 600; color: var(--navy); }
.service-body p { color: var(--slate-500); font-size: 14px; margin-top: 9px; flex: 1; line-height: 1.55; }
.service-feat { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feat-chip { font-size: 11.5px; color: var(--slate-600); background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 4px 9px; white-space: nowrap; }
.service-body .btn { margin-top: 20px; width: 100%; }

/* ============================================================
   Landing page (Get Quote website entry)
   ============================================================ */
.lp { width: 100%; background: var(--bg-2); }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); }
.lp-crumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--slate-500); margin-bottom: 16px; white-space: nowrap; }
.lp-crumb b { color: var(--navy); font-weight: 600; }
.lp-crumb svg { color: var(--slate-400); }
.lp-eyebrow.center { justify-content: center; }
.lp-eyebrow .lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-ring); }
.lp-eyebrow-hero {
  background: var(--teal-tint); border: 1px solid var(--teal-tint-2); color: var(--teal-700);
  padding: 7px 15px; border-radius: 999px; font-size: 12.5px; letter-spacing: 0.05em;
  box-shadow: 0 1px 0 rgba(13,38,59,0.03);
}

/* Quick quote section */
.lp-quick { padding: 70px 28px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.lp-quick-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.lp-quick-copy h2 { font-size: 31px; font-weight: 600; color: var(--navy); letter-spacing: -0.015em; margin-top: 12px; }
.lp-quick-copy p { font-size: 16px; color: var(--slate-600); margin-top: 14px; line-height: 1.6; max-width: 50ch; }
.lp-quick-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.lp-quick-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--slate-700); font-weight: 500; }
.lp-quick-list svg { color: var(--teal-600); flex: 0 0 auto; }

.lp-quick-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 26px; }
.qf-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.qf-head h3 { font-size: 19px; font-weight: 600; color: var(--navy); }
.qf-head span { font-size: 13px; color: var(--slate-500); }
.qf-badge-sm { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; }
.qf-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.qf-mode { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: var(--card); color: var(--slate-600); font-weight: 600; font-size: 14px; transition: all .15s; }
.qf-mode:hover { border-color: var(--teal-400); color: var(--navy); }
.qf-mode.on { border-color: var(--teal-500); background: var(--teal-tint); color: var(--teal-700); box-shadow: 0 0 0 2px var(--teal-ring); }
.qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-grid .qf-span { grid-column: 1 / -1; }
.qf-foot { font-size: 12px; color: var(--slate-500); margin-top: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; line-height: 1.5; }
.qf-foot svg { color: var(--teal-600); }
.qf-foot .btn-link { font-size: 12px; }

/* Quick form success */
.lp-quick-done { text-align: center; }
.qf-badge { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(140deg, var(--teal-400), var(--teal-600)); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(12,165,182,0.35); }
.lp-quick-done h3 { font-size: 22px; font-weight: 600; color: var(--navy); }
.lp-quick-done > p { font-size: 14.5px; color: var(--slate-600); margin-top: 10px; line-height: 1.55; }
.qf-id { background: var(--navy); color: #fff; border-radius: var(--r); padding: 14px 18px; margin: 20px 0 10px; display: flex; flex-direction: column; gap: 3px; }
.qf-id span { font-size: 11px; color: #9db4c8; letter-spacing: 0.06em; text-transform: uppercase; }
.qf-id b { font-size: 19px; font-family: var(--mono); font-weight: 600; }
.qf-done-route { font-size: 13.5px; color: var(--slate-600); font-weight: 500; margin-bottom: 18px; }

@media (max-width: 980px) {
  .lp-quick-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .qf-grid { grid-template-columns: 1fr; }
}

/* Hero as a contained block (no background image) */
.lp-hero.lp-hero-block { background: linear-gradient(180deg, #ffffff 0%, var(--bg-2) 100%); border-bottom: none; padding-bottom: 72px; }
.lp-hero-block .lp-hero-inner { padding-top: 64px; }
.lp-hero-block .lp-hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.lp-hero-block .lp-hero-copy p { max-width: 60ch; margin-left: auto; margin-right: auto; }
.lp-hero-block .lp-hero-cta { justify-content: center; }
.lp-hero-block .lp-hero-assure { justify-content: center; }

/* Hero */
.lp-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, var(--bg-2) 62%, var(--bg) 100%); border-bottom: 1px solid var(--line); padding-bottom: 66px; }
.lp-hero-art { position: absolute; right: -40px; bottom: 84px; width: 58%; max-width: 920px; min-width: 560px; opacity: 0.92; pointer-events: none; user-select: none;
  -webkit-mask-image: radial-gradient(120% 130% at 78% 70%, #000 42%, rgba(0,0,0,0.5) 66%, transparent 86%);
          mask-image: radial-gradient(120% 130% at 78% 70%, #000 42%, rgba(0,0,0,0.5) 66%, transparent 86%); }
.lp-hero-inner { max-width: 1160px; margin: 0 auto; padding: 76px 28px 8px; position: relative; z-index: 2; }
.lp-hero-copy { max-width: 600px; }
.lp-hero-copy h1 { font-size: 50px; line-height: 1.05; font-weight: 700; color: var(--navy); letter-spacing: -0.025em; margin-top: 18px; }
.lp-hero-copy h1, .lp-hero-copy h1 span { color: #283860; }
.lp-hero-copy p { font-size: 18px; line-height: 1.6; color: var(--slate-600); margin-top: 20px; max-width: 52ch; }
.lp-hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.lp-hero-cta .btn-ghost { background: rgba(255,255,255,0.7); }
.lp-hero-assure { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.lp-hero-assure span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--slate-600); font-weight: 500; white-space: nowrap; }
.lp-hero-assure svg { color: var(--teal-600); }

.lp-stats { position: relative; z-index: 2; width: calc(100% - 56px); max-width: 1160px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.lp-stat { background: var(--card); padding: 22px 24px; }
.lp-stat-v { font-size: 30px; font-weight: 700; color: var(--navy); font-family: var(--mono); letter-spacing: -0.02em; }
.lp-stat-k { font-size: 13px; color: var(--slate-500); margin-top: 4px; }

/* Stat band — dedicated floating strip between hero and services */
.lp-statband-section { padding: 0 28px; margin-top: -34px; position: relative; z-index: 6; }
.lp-statband {
  max-width: 1160px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.lp-statband-item { display: flex; align-items: center; gap: 15px; padding: 26px 30px; border-right: 1px solid var(--line); }
.lp-statband-item:last-child { border-right: none; }
.lp-statband-icon { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-700); }
.lp-statband-v { font-size: 29px; font-weight: 750; color: var(--navy); letter-spacing: -0.02em; line-height: 1; font-family: var(--mono); }
.lp-statband-k { font-size: 13px; color: var(--slate-500); margin-top: 6px; }

/* Generic section */
.lp-section { padding: 78px 28px; }
.lp-section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.lp-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.lp-head h2 { font-size: 32px; font-weight: 600; color: var(--navy); letter-spacing: -0.015em; margin-top: 12px; }
.lp-head p { font-size: 16.5px; color: var(--slate-500); margin-top: 12px; }
.lp .service-grid { max-width: 1120px; margin: 0 auto; }

/* How it works */
.lp-how-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-how-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px 0 26px; box-shadow: var(--shadow-sm); overflow: hidden; }
.lp-how-num { position: absolute; top: 14px; left: 16px; z-index: 2; font-size: 13px; font-weight: 700; font-family: var(--mono); color: #fff; letter-spacing: 0.05em; background: var(--teal-600); padding: 4px 9px; border-radius: 999px; box-shadow: 0 1px 4px rgba(13,38,59,0.18); }
.lp-how-img { background: #e9f5fc; border-radius: var(--r); overflow: hidden; margin: 0 16px; }
.lp-how-img img { display: block; width: 100%; height: 280px; object-fit: contain; object-position: center; }
.lp-how-card h4 { font-size: 16.5px; font-weight: 600; color: var(--navy); margin: 18px 24px 0; }
.lp-how-card p { font-size: 13.5px; color: var(--slate-500); margin: 8px 24px 0; line-height: 1.55; }
.lp-how-arrow { position: absolute; top: 50%; right: -22px; transform: translateY(-50%); color: var(--line-strong); z-index: 2; }
.lp-how-card-link { cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; }
.lp-how-card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal-400); }
.lp-how-card-link:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.lp-how-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; text-align: center; }
.lp-how-cta p { font-size: 15px; color: var(--slate-600); }

/* Benefits */
.lp-benefit-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-benefit { display: flex; gap: 15px; align-items: flex-start; }
.lp-benefit-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; }
.lp-benefit h4 { font-size: 16px; font-weight: 600; color: var(--navy); }
.lp-benefit p { font-size: 13.5px; color: var(--slate-500); margin-top: 6px; line-height: 1.55; }

/* Trust */
.lp-trust { background: var(--navy); color: #fff; padding: 64px 28px; }
.lp-trust-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px 48px; align-items: start; }
.lp-trust-quote svg { color: var(--teal-400); }
.lp-trust-quote p { font-size: 21px; line-height: 1.5; font-weight: 500; margin-top: 16px; color: #eaf2f8; letter-spacing: -0.01em; }
.lp-trust-by { font-size: 13.5px; color: #9db4c8; margin-top: 16px; }
.lp-trust-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #9db4c8; }
.lp-cert-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #9db4c8; }
.lp-cert-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.lp-cert { background: #fff; border-radius: 10px; padding: 12px 16px; display: grid; place-items: center; height: 58px; min-width: 92px; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.lp-cert img { max-height: 34px; max-width: 124px; width: auto; height: auto; object-fit: contain; display: block; }
.lp-trust-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.lp-trust-stat { text-align: left; }
.lp-trust-stat-v { font-size: 34px; font-weight: 750; color: #fff; letter-spacing: -0.02em; line-height: 1; font-family: var(--mono); }
.lp-trust-stat-k { font-size: 13.5px; color: #9db4c8; margin-top: 8px; }

/* Expert section — premium two-column card */
.lp-expert { padding: 0 28px 78px; }
.lp-expert-card {
  max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow);
}
.lp-expert-main { padding: 46px 46px 44px; }
.lp-expert-main h2 { font-size: 30px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-top: 12px; }
.lp-expert-main > p { font-size: 16px; color: var(--slate-600); margin-top: 12px; max-width: 50ch; line-height: 1.6; }
.lp-expert-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.lp-ep { display: flex; gap: 14px; align-items: flex-start; }
.lp-ep-icon { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-700); }
.lp-ep h4 { font-size: 15.5px; font-weight: 650; color: var(--navy); }
.lp-ep p { font-size: 14px; color: var(--slate-600); margin-top: 3px; line-height: 1.55; }
.lp-expert-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 44px 38px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; color: #fff;
}
.lp-ep-badge { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--teal-500); color: var(--navy); margin-bottom: 6px; }
.lp-expert-panel h3 { font-size: 21px; font-weight: 650; color: #fff; letter-spacing: -0.01em; }
.lp-expert-panel > p { font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.55; margin-bottom: 6px; }
.lp-expert-panel .btn-lg { width: 100%; justify-content: center; }
.lp-expert-panel .btn-primary { background: var(--teal-500); color: var(--navy); }
.lp-expert-panel .btn-primary:hover { background: var(--teal-400); }
.lp-expert-panel .btn-ghost { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.lp-expert-panel .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.lp-expert-assure { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.lp-expert-assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.82); }
.lp-expert-assure span svg { color: var(--teal-400); flex: none; }

/* ---------- Thematic textured underlay on each block ----------
   ::before = soft brand-toned colour wash (blurred)
   ::after  = crisp geometric texture matching the block's meaning  */
.lp-hero, .lp-quick, .lp-section, .lp-trust, .lp-expert { position: relative; overflow: hidden; }
.lp-hero > *, .lp-quick > *, .lp-section > *, .lp-trust > *, .lp-expert > * { position: relative; z-index: 1; }

.lp-hero::before, .lp-quick::before, .lp-section::before, .lp-trust::before, .lp-expert::before {
  content: ""; position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 46% at 15% 24%, rgba(70,104,156,0.14), transparent 70%),
    radial-gradient(44% 54% at 86% 76%, rgba(30,52,90,0.10), transparent 72%);
  filter: blur(30px);
}
.lp-section.alt::before {
  background:
    radial-gradient(40% 48% at 84% 22%, rgba(70,104,156,0.14), transparent 70%),
    radial-gradient(46% 56% at 14% 80%, rgba(30,52,90,0.09), transparent 72%);
}
.lp-trust::before {
  background:
    radial-gradient(42% 50% at 18% 28%, rgba(120,150,190,0.16), transparent 72%),
    radial-gradient(50% 58% at 88% 78%, rgba(90,124,168,0.14), transparent 74%);
}

.lp-hero::after, .lp-quick::after, .lp-section::after, .lp-trust::after, .lp-expert::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Hero — global freight routes: dashed sea/air lanes + connection nodes.
   Visible toward the corners, clear behind the headline (radial mask). */
.lp-hero::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='160'%3E%3Cg fill='none' stroke='%230e2747' stroke-opacity='0.05' stroke-width='1.1' stroke-dasharray='3 6' stroke-linecap='round'%3E%3Cpath d='M-10 128 Q 80 44 230 96'/%3E%3Cpath d='M-10 44 Q 100 120 230 26'/%3E%3C/g%3E%3Cg fill='%230e2747' fill-opacity='0.06'%3E%3Ccircle cx='22' cy='118' r='2.2'/%3E%3Ccircle cx='160' cy='82' r='2.2'/%3E%3Ccircle cx='100' cy='70' r='1.7'/%3E%3Ccircle cx='188' cy='32' r='2.2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 218px;
  -webkit-mask-image: radial-gradient(125% 100% at 50% 30%, transparent 0 40%, #000 82%);
          mask-image: radial-gradient(125% 100% at 50% 30%, transparent 0 40%, #000 82%);
}

/* Services — sea + air + road motif, faded into the band below the cards */
.lp-section#lp-services::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='150'%3E%3Cpath d='M8 120 q 20 -10 40 0 t 40 0' fill='none' stroke='%230e2747' stroke-opacity='0.05' stroke-width='1.1'/%3E%3Cpath d='M78 42 Q 124 6 172 36' fill='none' stroke='%230e2747' stroke-opacity='0.05' stroke-width='1.1' stroke-dasharray='3 6' stroke-linecap='round'/%3E%3Cg fill='none' stroke='%230e2747' stroke-opacity='0.05' stroke-width='1.3' stroke-dasharray='10 8' stroke-linecap='round'%3E%3Cpath d='M150 120 L 236 98'/%3E%3C/g%3E%3Cg fill='%230e2747' fill-opacity='0.06'%3E%3Ccircle cx='78' cy='42' r='1.8'/%3E%3Ccircle cx='172' cy='36' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 162px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0 52%, #000 92%);
          mask-image: linear-gradient(180deg, transparent 0 52%, #000 92%);
}

/* Quick quote — freight cost calculation: CBM/kg/m³/LDM/€/$ + faint spreadsheet grid.
   Masked to the left so the form card on the right stays clean. */
.lp-quick::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='180' font-family='Georgia,Times,serif'%3E%3Cg fill='%230e2747' fill-opacity='0.06'%3E%3Ctext x='12' y='34' font-size='16'%3ECBM%3C/text%3E%3Ctext x='128' y='30' font-size='17'%3Ekg%3C/text%3E%3Ctext x='72' y='74' font-size='17'%3Em³%3C/text%3E%3Ctext x='150' y='90' font-size='15'%3ELDM%3C/text%3E%3Ctext x='20' y='120' font-size='19'%3E€%3C/text%3E%3Ctext x='92' y='150' font-size='19'%3E%24%3C/text%3E%3Ctext x='154' y='150' font-size='18'%3E%3D%3C/text%3E%3Ctext x='44' y='170' font-size='18'%3E×%3C/text%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(14,39,71,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,39,71,0.022) 1px, transparent 1px);
  background-size: 230px 195px, 27px 27px, 27px 27px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 38%, transparent 60%);
          mask-image: linear-gradient(90deg, #000 0 38%, transparent 60%);
}

/* How it works — guided process: dotted connector line + flow chevrons */
.lp-section.alt#lp-how::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='130'%3E%3Cg fill='none' stroke='%230e2747' stroke-opacity='0.05' stroke-linecap='round'%3E%3Cpath d='M0 65 H 220' stroke-width='1.2' stroke-dasharray='2 9'/%3E%3Cpath d='M104 57 l 8 8 l -8 8' stroke-width='1.3'/%3E%3Cpath d='M196 57 l 8 8 l -8 8' stroke-width='1.3'/%3E%3Cpath d='M12 57 l 8 8 l -8 8' stroke-width='1.3'/%3E%3C/g%3E%3Cg fill='none' stroke='%230e2747' stroke-opacity='0.055' stroke-width='1.1'%3E%3Crect x='48' y='40' width='15' height='15' rx='2'/%3E%3Crect x='150' y='75' width='15' height='15' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 142px;
}

/* Why us — logistics partnership network: connected nodes + supply-chain lines */
.lp-section#lp-benefits::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='170'%3E%3Cg stroke='%230e2747' stroke-opacity='0.04' stroke-width='1'%3E%3Cline x1='30' y1='32' x2='115' y2='62'/%3E%3Cline x1='115' y1='62' x2='62' y2='136'/%3E%3Cline x1='30' y1='32' x2='62' y2='136'/%3E%3Cline x1='115' y1='62' x2='168' y2='126'/%3E%3Cline x1='62' y1='136' x2='168' y2='126'/%3E%3C/g%3E%3Cg fill='%230e2747' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='32' r='2.4'/%3E%3Ccircle cx='115' cy='62' r='2.4'/%3E%3Ccircle cx='62' cy='136' r='2.4'/%3E%3Ccircle cx='168' cy='126' r='2.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 210px 188px;
}

/* Trust — maritime compliance: tone-on-tone waves + faint route curve (light on navy) */
.lp-trust::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='130'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1.1'%3E%3Cpath d='M0 32 q 27 -13 55 0 t 55 0 t 55 0 t 55 0'/%3E%3Cpath d='M0 70 q 27 -13 55 0 t 55 0 t 55 0 t 55 0'/%3E%3Cpath d='M0 108 q 27 -13 55 0 t 55 0 t 55 0 t 55 0'/%3E%3C/g%3E%3Cpath d='M-10 100 Q 110 12 230 72' fill='none' stroke='%23e8c978' stroke-opacity='0.04' stroke-width='1' stroke-dasharray='3 7' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 240px 142px;
}

/* Expert — air contact: faint flight arc easing into signal rings */
.lp-expert::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='300'%3E%3Cg fill='none' stroke='%230e2747' stroke-opacity='0.06' stroke-width='1.3'%3E%3Ccircle cx='360' cy='150' r='46'/%3E%3Ccircle cx='360' cy='150' r='92'/%3E%3Ccircle cx='360' cy='150' r='138'/%3E%3Ccircle cx='360' cy='150' r='184'/%3E%3C/g%3E%3Cpath d='M0 230 Q 200 60 360 150' fill='none' stroke='%230e2747' stroke-opacity='0.055' stroke-width='1.2' stroke-dasharray='4 7' stroke-linecap='round'/%3E%3Ccircle cx='4' cy='230' r='2.6' fill='%230e2747' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

/* Mobile — soften / thin the textures so small screens stay clean */
@media (max-width: 640px) {
  .lp-hero::after, .lp-quick::after, .lp-section#lp-benefits::after,
  .lp-section#lp-services::after,
  .lp-section.alt#lp-how::after, .lp-trust::after, .lp-expert::after { opacity: 0.55; }
}

/* Form step cards — subtle themed blurred underlay */
.ccfg, .review-card, .lp-quick-card, .side-help, .note-inline, .calc-callout { position: relative; overflow: hidden; }
.ccfg > *, .review-card > *, .lp-quick-card > * { position: relative; z-index: 1; }
.ccfg::before, .review-card::before, .lp-quick-card::before {
  content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(34% 40% at 88% 14%, rgba(70,104,156,0.12), transparent 70%),
    radial-gradient(40% 46% at 10% 90%, rgba(30,52,90,0.07), transparent 72%);
  filter: blur(24px);
}

@media (max-width: 980px) {
  .lp-hero-art { display: none; }
  .lp-hero-copy h1 { font-size: 38px; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-statband { grid-template-columns: 1fr 1fr; }
  .lp-statband-item:nth-child(2n) { border-right: none; }
  .lp-statband-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .lp-how-grid { grid-template-columns: 1fr 1fr; }
  .lp-how-arrow { display: none; }
  .lp-benefit-grid { grid-template-columns: 1fr 1fr; }
  .lp-trust-inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-trust-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding-top: 28px; }
  .lp-expert-card { grid-template-columns: 1fr; }
  .lp-expert-main { padding: 32px 28px 28px; }
  .lp-expert-panel { padding: 32px 28px; }
}
@media (max-width: 640px) {
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-how-grid, .lp-benefit-grid { grid-template-columns: 1fr; }
  .lp-hero-copy h1 { font-size: 32px; }
}

/* ============================================================
   Visual selection tiles (container / truck / service-type / air)
   ============================================================ */
.tile-grid { display: grid; gap: 16px; }
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.vtile {
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  position: relative;
  padding: 0;
}
.vtile:hover { border-color: var(--teal-400); box-shadow: var(--shadow); transform: translateY(-2px); }
.vtile.selected { border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-ring); }
.vtile-visual {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, #eef3f7 0%, #dde7ef 100%);
  display: grid; place-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.vtile.selected .vtile-visual { background: linear-gradient(150deg, var(--teal-tint) 0%, var(--teal-tint-2) 100%); }
.vtile-visual svg { width: 56%; height: 56%; color: var(--slate-400); transition: color .18s; }
.vtile-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.vtile-art { display: block; width: 100%; height: 100%; line-height: 0; }
.vtile-art svg { display: block; width: 100%; height: 100%; }
.vtile.selected .vtile-visual svg { color: var(--teal-600); }
.vtile-photo-hint {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 10px; color: var(--slate-400);
  background: rgba(255,255,255,0.8); border: 1px solid var(--line);
  padding: 2px 7px; border-radius: 5px;
  display: flex; align-items: center; gap: 4px;
}
.vtile-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.vtile-body h4 { font-size: 15.5px; font-weight: 600; color: var(--navy); }
.vtile-body .desc { font-size: 12.5px; color: var(--slate-500); margin-top: 5px; line-height: 1.5; flex: 1; }
.vtile-body .use { font-size: 11.5px; color: var(--teal-700); margin-top: 9px; font-weight: 500; }
.vtile-check {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; z-index: 3;
  transition: all .18s; color: transparent;
}
.vtile.selected .vtile-check { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }

/* quantity row after select */
.tile-qty {
  border-top: 1px dashed var(--line-strong);
  margin: 0 16px; padding: 12px 0 0; margin-bottom: 14px;
  display: grid; gap: 10px;
}
.qty-stepper { display: flex; align-items: center; gap: 0; }
.qty-stepper button {
  width: 32px; height: 34px; border: 1px solid var(--line-strong); background: var(--bg-2);
  color: var(--slate-600); font-size: 17px; font-weight: 600; display: grid; place-items: center;
}
.qty-stepper button:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.qty-stepper button:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.qty-stepper button:hover { background: var(--teal-tint); color: var(--teal-700); border-color: var(--teal-400); }
.qty-stepper input { width: 52px; height: 34px; text-align: center; border: 1px solid var(--line-strong); border-left: none; border-right: none; }

/* ============================================================
   Form fields
   ============================================================ */
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; box-shadow: var(--shadow-sm);
}
.form-card + .form-card { margin-top: 18px; }
.fieldset-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-500); margin-bottom: 18px; display: flex; align-items: center; gap: 9px;
}
.fieldset-title svg { width: 16px; height: 16px; color: var(--teal-600); }

.grid { display: grid; gap: 18px 20px; }
.grid.c2 { grid-template-columns: 1fr 1fr; }
.grid.c3 { grid-template-columns: 1fr 1fr 1fr; }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
.span-2 { grid-column: span 2; }
.span-full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 500; color: var(--slate-700); display: flex; align-items: center; gap: 5px; }
.field label .req { color: var(--teal-600); }
.field .hint { font-size: 12px; color: var(--slate-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--field-bg); color: var(--field-text); font-weight: 500;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--field-placeholder); opacity: 1; font-weight: 400; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-ring); background: #fff;
}
.field textarea { resize: vertical; min-height: 84px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }

/* ---------- Combo (custom dropdown) ---------- */
.combo { position: relative; }
.combo-input { width: 100%; padding: 10px 34px 10px 12px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--field-bg); color: var(--field-text); font-weight: 500; transition: border-color .15s, box-shadow .15s, background .15s; }
.combo-input:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-ring); background: #fff; }
.combo-input::placeholder { color: var(--field-placeholder); opacity: 1; font-weight: 400; }
.combo-caret { position: absolute; right: 11px; top: 12px; color: var(--slate-400); pointer-events: none; }
.combo-panel { position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 60; background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r); box-shadow: var(--shadow-lg); max-height: 286px; overflow-y: auto; padding: 5px; }
.combo-group + .combo-group { border-top: 1px solid var(--line); margin-top: 5px; padding-top: 5px; }
.combo-group-head { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-700); padding: 8px 9px 6px; display: flex; align-items: center; gap: 6px; position: sticky; top: -5px; background: var(--card); }
.combo-group-head svg { color: var(--teal-600); }
.combo-group-head.muted { color: var(--slate-400); }
.combo-group-head.muted svg { display: none; }
.combo-opt { display: flex; align-items: center; width: 100%; text-align: left; background: none; border: none; padding: 8px 9px; border-radius: 6px; font-size: 13.5px; color: var(--ink); cursor: pointer; white-space: nowrap; }
.combo-opt-label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.combo-opt:hover { background: var(--bg-2); }
.combo-opt.prio { color: var(--navy); font-weight: 500; background: var(--teal-tint); margin-bottom: 3px; }
.combo-opt.prio:hover { background: var(--teal-tint-2); }
.combo-opt-pin { margin-left: auto; color: var(--teal-600); opacity: 0; }
.combo-opt.prio:hover .combo-opt-pin { opacity: 1; }
.field.has-error input:focus { box-shadow: 0 0 0 3px var(--red-tint); }
.field-error { font-size: 12px; color: var(--red); display: flex; align-items: center; gap: 5px; }
.input-affix { position: relative; display: flex; align-items: center; }
.input-affix .unit { position: absolute; right: 12px; font-size: 12.5px; color: var(--slate-400); pointer-events: none; }
.input-affix input { padding-right: 44px; }

select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2365788c' stroke-width='2.2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px !important; }

/* Yes/No segmented toggle */
.toggle {
  display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--r-sm); overflow: hidden; background: var(--bg-2);
}
.toggle button { padding: 8px 18px; font-size: 13.5px; font-weight: 500; border: none; background: transparent; color: var(--slate-500); transition: all .15s; }
.toggle button + button { border-left: 1px solid var(--line-strong); }
.toggle button.on-yes { background: var(--teal-500); color: #fff; }
.toggle button.on-no { background: var(--slate-600); color: #fff; }

.toggle-field { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.toggle-field:last-child { border-bottom: none; }
.toggle-field .tf-label { font-size: 14px; color: var(--slate-700); font-weight: 500; }
.toggle-field .tf-sub { font-size: 12px; color: var(--slate-400); margin-top: 2px; }

/* chips multi-select */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 15px; border: 1.5px solid var(--line-strong); border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--slate-600); background: var(--card); transition: all .15s;
  display: flex; align-items: center; gap: 7px;
}
.chip:hover { border-color: var(--teal-400); color: var(--navy); }
.chip.on { background: var(--teal-tint); border-color: var(--teal-500); color: var(--teal-700); }
.chip .cx { width: 15px; height: 15px; }

/* conditional reveal block */
.conditional {
  margin-top: 16px; padding: 18px 20px; border-radius: var(--r);
  background: var(--bg-2); border: 1px dashed var(--line-strong);
  border-left: 3px solid var(--teal-500);
  animation: revealDown .25s ease;
}
@keyframes revealDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.conditional .cond-label { font-size: 12px; font-weight: 600; color: var(--teal-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; display:flex; align-items:center; gap:7px; }

/* ---------- Calculation callout ---------- */
.calc-banner {
  display: flex; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: var(--r-lg); padding: 20px 24px; color: #fff;
  margin-top: 4px;
}
.calc-item { display: flex; flex-direction: column; gap: 3px; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.calc-item:last-child { border-right: none; }
.calc-item .k { font-size: 11.5px; color: #9db4c8; letter-spacing: 0.05em; text-transform: uppercase; }
.calc-item .v { font-size: 24px; font-weight: 600; font-family: var(--mono); }
.calc-item .v small { font-size: 13px; color: #9db4c8; font-weight: 400; margin-left: 3px; }
.calc-item.accent .v { color: var(--teal-400); }
.calc-note { font-size: 11.5px; color: #8aa1b5; margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* ---------- File upload ---------- */
.uploader {
  border: 1.5px dashed var(--line-strong); border-radius: var(--r); padding: 22px;
  text-align: center; background: var(--bg-2); transition: all .15s; cursor: pointer;
}
.uploader:hover, .uploader.drag { border-color: var(--teal-500); background: var(--teal-tint); }
.uploader .up-icon { width: 38px; height: 38px; color: var(--teal-600); margin: 0 auto 10px; }
.uploader .up-main { font-size: 14px; color: var(--slate-700); font-weight: 500; }
.uploader .up-main b { color: var(--teal-600); }
.uploader .up-sub { font-size: 12px; color: var(--slate-400); margin-top: 4px; }
.file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.file-row { display: flex; align-items: center; gap: 11px; padding: 9px 13px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); }
.file-row .fr-icon { width: 30px; height: 30px; border-radius: 6px; background: var(--teal-tint); color: var(--teal-700); display: grid; place-items: center; flex: 0 0 auto; }
.file-row .fr-name { font-size: 13.5px; color: var(--slate-700); font-weight: 500; }
.file-row .fr-size { font-size: 11.5px; color: var(--slate-400); }
.file-row .fr-del { margin-left: auto; background: none; border: none; color: var(--slate-400); padding: 4px; border-radius: 5px; }
.file-row .fr-del:hover { color: var(--red); background: var(--red-tint); }
.upload-cat { margin-bottom: 6px; font-size: 12.5px; color: var(--slate-500); font-weight: 500; }

/* ---------- Review ---------- */
.review-section {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.review-head {
  display: flex; align-items: center; gap: 12px; padding: 16px 22px;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.review-head .rh-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-tint); color: var(--teal-700); display: grid; place-items: center; }
.review-head h3 { font-size: 15.5px; font-weight: 600; color: var(--navy); flex: 1; }
.review-head .edit-btn { font-size: 13px; }
.review-body { padding: 8px 22px 18px; }
.review-row { display: flex; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.review-row:last-child { border-bottom: none; }
.review-row .rk { flex: 0 0 240px; font-size: 13px; color: var(--slate-500); }
.review-row .rv { font-size: 14px; color: var(--ink); font-weight: 500; }
.review-row .rv.muted { color: var(--slate-400); font-weight: 400; font-style: italic; }
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.review-tags .rt { background: var(--teal-tint); color: var(--teal-700); border-radius: 6px; padding: 3px 9px; font-size: 12.5px; font-weight: 500; }

/* ---------- Dev / CRM panel ---------- */
.dev-panel {
  margin-top: 22px; border: 1px solid var(--navy-700); border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy-900);
}
.dev-head {
  display: flex; align-items: center; gap: 11px; padding: 13px 20px; cursor: pointer;
  color: #cfe0ee; user-select: none;
}
.dev-head .dh-badge { font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; background: rgba(44,190,205,0.15); color: var(--teal-400); padding: 3px 8px; border-radius: 5px; border: 1px solid rgba(44,190,205,0.25); }
.dev-head h4 { font-size: 13.5px; font-weight: 600; flex: 1; }
.dev-head .chev { transition: transform .2s; }
.dev-head.open .chev { transform: rotate(180deg); }
.dev-body { max-height: 420px; overflow: auto; padding: 0 20px 18px; }
.dev-body pre { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: #b9cfe0; margin: 0; white-space: pre-wrap; word-break: break-word; }
.dev-body .jk { color: #5fd3df; }
.dev-body .js { color: #e0b870; }
.dev-body .jn { color: #8fd6aa; }
.dev-body .jb { color: #d68fb0; }

/* ---------- Confirmation ---------- */
.confirm-wrap { max-width: 720px; margin: 30px auto; text-align: center; }
.confirm-badge {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 26px;
  background: linear-gradient(140deg, var(--teal-400), var(--teal-600)); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(12,165,182,0.4); border: 5px solid #fff;
  animation: pop .4s cubic-bezier(.2,.9,.3,1.3);
}
.confirm-art {
  display: block; width: 440px; max-width: 86%; height: auto; margin: 4px auto 14px;
  animation: pop .5s cubic-bezier(.2,.9,.3,1.3);
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-wrap h1 { font-size: 30px; color: var(--navy); font-weight: 600; letter-spacing: -0.01em; }
.confirm-wrap > p { font-size: 16px; color: var(--slate-500); margin-top: 14px; line-height: 1.6; }
.confirm-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); margin-top: 32px; text-align: left; overflow: hidden;
}
.confirm-id {
  background: var(--navy); color: #fff; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
}
.confirm-id .ci-k { font-size: 12px; color: #9db4c8; letter-spacing: 0.06em; text-transform: uppercase; }
.confirm-id .ci-v { font-size: 22px; font-weight: 600; font-family: var(--mono); letter-spacing: 0.02em; margin-top: 4px; white-space: nowrap; }
.confirm-id .copy-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #fff; border-radius: 8px; padding: 9px 14px; font-size: 13px; display:flex; align-items:center; gap:7px; }
.confirm-id .copy-btn:hover { background: rgba(255,255,255,0.18); }
.confirm-rows { padding: 8px 26px 18px; }
.confirm-steps { padding: 22px 26px; border-top: 1px solid var(--line); background: var(--bg-2); }
.confirm-steps h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-500); margin-bottom: 16px; }
.next-step { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.next-step .ns-num { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-700); display: grid; place-items: center; font-size: 13px; font-weight: 600; flex: 0 0 auto; }
.next-step .ns-txt { font-size: 14px; color: var(--slate-700); }
.next-step .ns-txt b { color: var(--navy); }
.confirm-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }

/* validation summary */
.validation-banner {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--red-tint); border: 1px solid #f1c9c9; border-radius: var(--r);
  padding: 13px 16px; margin-bottom: 20px; color: #9a2b2b; font-size: 13.5px;
}
.validation-banner svg { flex: 0 0 auto; margin-top: 1px; }
.validation-banner ul { margin: 6px 0 0; padding-left: 18px; }
.validation-banner li { margin: 2px 0; }

/* misc */
.note-inline { display: flex; gap: 9px; align-items: flex-start; background: var(--teal-tint); border-radius: var(--r); padding: 12px 15px; font-size: 13px; color: var(--teal-700); border: 1px solid var(--teal-tint-2); }
.note-inline svg { flex: 0 0 auto; margin-top: 1px; }
.divider-label { display: flex; align-items: center; gap: 14px; margin: 8px 0 2px; }
.divider-label::before, .divider-label::after { content: ''; height: 1px; background: var(--line); flex: 1; }
.divider-label span { font-size: 12px; font-weight: 600; color: var(--slate-400); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Cargo line items ---------- */
.cargo-lines { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cl-head, .cl-row { display: grid; grid-template-columns: 1.7fr 0.7fr 1fr 1fr 1fr 1fr 44px; gap: 10px; align-items: center; }
.cl-head { background: var(--bg-2); padding: 11px 14px; border-bottom: 1px solid var(--line); }
.cl-col { font-size: 12px; }
.cl-head .cl-col { font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.04em; font-size: 11px; }
.cl-row { padding: 10px 14px; border-bottom: 1px solid var(--line); }
.cl-row:last-of-type { border-bottom: none; }
.cl-row input, .cl-row select { width: 100%; padding: 8px 9px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font-size: 13px; }
.cl-row input:focus, .cl-row select:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 2px var(--teal-ring); }
.cl-affix { position: relative; display: flex; align-items: center; }
.cl-affix input { padding-right: 30px; }
.cl-affix span { position: absolute; right: 9px; font-size: 11px; color: var(--slate-400); pointer-events: none; }
.cl-del { background: none; border: none; color: var(--slate-400); padding: 6px; border-radius: 6px; display: grid; place-items: center; }
.cl-del:hover:not([disabled]) { color: var(--red); background: var(--red-tint); }
.cl-del[disabled] { opacity: .3; cursor: not-allowed; }
.cl-add { width: 100%; background: var(--bg-2); border: none; border-top: 1px solid var(--line); padding: 12px; color: var(--teal-600); font-weight: 600; font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.cl-add:hover { background: var(--teal-tint); }

.unit-switch { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--r-sm); overflow: hidden; }
.unit-switch button { padding: 6px 13px; font-size: 12.5px; font-weight: 500; border: none; background: var(--card); color: var(--slate-500); }
.unit-switch button + button { border-left: 1px solid var(--line-strong); }
.unit-switch button.on { background: var(--navy); color: #fff; }

.entry-mode { display: flex; gap: 10px; margin-bottom: 18px; }
.entry-mode button { flex: 1; padding: 14px; border: 1.5px solid var(--line-strong); border-radius: var(--r); background: var(--card); text-align: left; transition: all .15s; }
.entry-mode button:hover { border-color: var(--teal-400); }
.entry-mode button.on { border-color: var(--teal-500); background: var(--teal-tint); box-shadow: 0 0 0 2px var(--teal-ring); }
.entry-mode .em-title { font-weight: 600; color: var(--navy); font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.entry-mode .em-sub { font-size: 12.5px; color: var(--slate-500); margin-top: 4px; }

.selected-summary { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--teal-tint); border: 1px solid var(--teal-tint-2); border-radius: var(--r); margin-bottom: 20px; }
.selected-summary .ss-icon { width: 40px; height: 40px; border-radius: 9px; background: var(--card); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-sm); }
.selected-summary .ss-name { font-weight: 600; color: var(--navy); }
.selected-summary .ss-sub { font-size: 12.5px; color: var(--teal-700); }
.selected-summary .ss-change { margin-left: auto; }

.subfields-title { font-size: 14px; font-weight: 600; color: var(--navy); margin: 4px 0 14px; }

/* ---------- Work layout (sidebar + main) ---------- */
.work { display: flex; align-items: flex-start; max-width: 1320px; margin: 0 auto; width: 100%; }
.sidebar {
  position: sticky; top: var(--header-h);
  width: 286px; flex: 0 0 286px;
  height: calc(100vh - var(--header-h));
  background: var(--card); border-right: 1px solid var(--line);
  overflow-y: auto;
}
.side-inner { padding: 26px 22px; display: flex; flex-direction: column; min-height: 100%; }
.side-modehead { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.side-back {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px 0; margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: var(--slate-600); white-space: nowrap;
}
.side-back svg { color: var(--teal-600); }
.side-back:hover { color: var(--navy); }
.side-mode {
  display: flex; align-items: center; gap: 11px;
  background: var(--teal-tint); border: 1px solid var(--teal-tint-2);
  border-radius: var(--r); padding: 11px 12px;
}
.side-mode-icon { width: 38px; height: 38px; border-radius: 9px; flex: none; display: grid; place-items: center; background: #fff; color: var(--teal-700); box-shadow: var(--shadow-sm); }
.side-mode-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.side-mode-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-700); }
.side-mode-name { font-size: 15px; font-weight: 650; color: var(--navy); margin-top: 2px; }
.side-mode-change { cursor: pointer; background: none; border: none; font-size: 12px; font-weight: 600; color: var(--teal-700); text-decoration: underline; padding: 4px; flex: none; }
.side-mode-change:hover { color: var(--navy); }
.side-progress { margin-bottom: 24px; }
.sp-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 9px; }
.sp-step { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); }
.sp-pct { font-size: 13px; font-weight: 600; color: var(--navy); font-family: var(--mono); }
.sp-bar { height: 6px; background: var(--bg); border-radius: 99px; overflow: hidden; }
.sp-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--teal-500), var(--teal-400)); border-radius: 99px; transition: width .4s ease; }
.sp-current { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-top: 12px; }

.side-steps { display: flex; flex-direction: column; }
.side-step {
  position: relative; display: flex; gap: 13px; align-items: flex-start;
  background: none; border: none; text-align: left; padding: 0 0 4px; cursor: default;
}
.side-step.clickable { cursor: pointer; }
.ss-node {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto; z-index: 2;
  display: grid; place-items: center; font-size: 12.5px; font-weight: 600;
  border: 2px solid var(--line-strong); background: var(--card); color: var(--slate-400);
  transition: all .2s;
}
.ss-line { position: absolute; left: 13px; top: 28px; bottom: -4px; width: 2px; background: var(--line-strong); z-index: 1; transition: background .2s; }
.ss-text { display: flex; flex-direction: column; padding: 3px 0 18px; }
.ss-num { font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate-400); }
.ss-label { font-size: 14px; font-weight: 500; color: var(--slate-500); margin-top: 1px; transition: color .2s; }
.side-step.done .ss-node { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }
.side-step.done .ss-line { background: var(--teal-500); }
.side-step.done .ss-label { color: var(--slate-700); }
.side-step.done:hover .ss-label { color: var(--teal-700); }
.side-step.active .ss-node { border-color: var(--teal-500); color: var(--teal-600); background: var(--teal-tint); box-shadow: 0 0 0 4px var(--teal-ring); }
.side-step.active .ss-num { color: var(--teal-600); }
.side-step.active .ss-label { color: var(--navy); font-weight: 600; }

.side-help {
  margin-top: auto; display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 15px; margin-top: 28px;
}
.side-help .sh-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; }
.side-help .sh-title { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.side-help .sh-sub { font-size: 12px; color: var(--slate-500); margin-top: 3px; line-height: 1.5; }

.work-main { flex: 1 1 auto; min-width: 0; padding: 36px 38px calc(var(--footer-h) + 44px); }

/* Decorative page background (Sea equipment step) */
.work-main.has-bg { position: relative; }
.page-bg-img {
  position: fixed; right: 0; bottom: 0; height: auto;
  pointer-events: none; user-select: none; z-index: 0;
}
.page-bg-img.bg-equip {
  width: 60vw; max-width: 1180px; min-width: 760px; opacity: 0.5;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0,0,0,0.35) 74%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0,0,0,0.35) 74%, transparent 100%);
}
.page-bg-img.bg-route {
  width: 64vw; max-width: 1240px; min-width: 820px; opacity: 0.6;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 48%, rgba(0,0,0,0.35) 76%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 48%, rgba(0,0,0,0.35) 76%, transparent 100%);
}
.page-bg-img.bg-cargo {
  width: 62vw; max-width: 1200px; min-width: 800px; opacity: 0.6;
  transform: scaleX(-1);
  -webkit-mask-image: radial-gradient(128% 140% at 18% 86%, #000 36%, rgba(0,0,0,0.55) 62%, rgba(0,0,0,0.12) 80%, transparent 92%);
          mask-image: radial-gradient(128% 140% at 18% 86%, #000 36%, rgba(0,0,0,0.55) 62%, rgba(0,0,0,0.12) 80%, transparent 92%);
}
.page-bg-img.bg-contact {
  width: 60vw; max-width: 1160px; min-width: 780px; opacity: 0.6;
  -webkit-mask-image: radial-gradient(122% 138% at 82% 64%, #000 38%, rgba(0,0,0,0.55) 64%, rgba(0,0,0,0.12) 82%, transparent 94%);
          mask-image: radial-gradient(122% 138% at 82% 64%, #000 38%, rgba(0,0,0,0.55) 64%, rgba(0,0,0,0.12) 82%, transparent 94%);
}
.page-bg-img.bg-air-contact {
  width: 42vw; max-width: 720px; min-width: 520px;
  aspect-ratio: 1774 / 887; height: auto;
  object-fit: cover; object-position: right bottom;
  opacity: 0.6;
  /* soft organic blob mask — no straight edges anywhere */
  -webkit-mask-image: radial-gradient(86% 96% at 88% 82%, #000 30%, rgba(0,0,0,0.5) 54%, rgba(0,0,0,0.12) 74%, transparent 88%);
          mask-image: radial-gradient(86% 96% at 88% 82%, #000 30%, rgba(0,0,0,0.5) 54%, rgba(0,0,0,0.12) 74%, transparent 88%);
}
/* Review step — lift the illustration so it isn't clipped at the bottom */
.page-bg-img.bg-air-contact.bg-air-review {
  bottom: 96px;
}
/* Road requirements — nudge a bit higher */
.page-bg-img.bg-air-contact.bg-road-up {
  bottom: 60px;
}
/* Air backgrounds — illustration already sits on the right, so no flip;
   fade the left (form) edge so the white curve blends into the page. */
.page-bg-img.bg-air-route {
  position: fixed; right: 0; top: 104px; bottom: 0;
  width: auto; height: calc(100vh - 104px); max-width: none; opacity: 0.95;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 12%, #000 30%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 12%, #000 30%, #000 100%);
}
}
.page-bg-img.bg-air-cargo {
  width: 44vw; max-width: 820px; min-width: 560px; opacity: 0.72;
  -webkit-mask-image: linear-gradient(86deg, transparent 0%, rgba(0,0,0,0.25) 14%, #000 38%, #000 100%);
          mask-image: linear-gradient(86deg, transparent 0%, rgba(0,0,0,0.25) 14%, #000 38%, #000 100%);
}
.page-bg-img.bg-air-req {
  position: fixed; right: 0; top: 64px; bottom: 0; margin: 0;
  width: 58vw; max-width: none; min-width: 640px; height: calc(100vh - 64px); max-height: none;
  object-fit: cover; object-position: right center; opacity: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 9%, #000 26%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 9%, #000 26%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-composite: intersect;
}
.work-main.has-bg .work-container { position: relative; z-index: 1; }
.work-container { max-width: 860px; }

/* ---------- Spec-rich container tile ---------- */
.cat-block { margin-bottom: 28px; }
.cat-head { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--navy); }
.cat-head svg { color: var(--teal-600); }
.cat-name { font-size: 15px; font-weight: 600; }
.cat-sub { font-size: 12.5px; color: var(--slate-400); font-weight: 500; }

.ctile {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.ctile:hover { border-color: var(--teal-400); box-shadow: var(--shadow); }
.ctile.selected { border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-ring); }
.ctile-check { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--card); border: 1.5px solid var(--line-strong); display: grid; place-items: center; z-index: 3; color: transparent; transition: all .18s; }
.ctile.selected .ctile-check { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }
.ctile-visual { aspect-ratio: 16 / 8; background: #fff; display: grid; place-items: center; position: relative; border-bottom: 1px solid var(--line); padding: 6px; }
.ctile.selected .ctile-visual { background: #fff; }
.ctile-visual svg { width: 46%; height: 46%; color: var(--slate-400); }
.ctile.selected .ctile-visual svg { color: var(--teal-600); }
.ctile-img { width: 100%; height: 100%; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.ccfg-img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.frr-img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ctile-body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.ctile-body h4 { font-size: 15px; font-weight: 600; color: var(--navy); }
.ctile-desc { font-size: 12px; color: var(--slate-500); margin-top: 5px; line-height: 1.45; }
.spec-list { margin: 12px 0 14px; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); padding-top: 12px; }
.spec-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate-500); }
.spec-row svg { color: var(--teal-600); flex: 0 0 auto; }
.spec-row span { flex: 0 0 78px; }
.spec-row b { color: var(--slate-700); font-weight: 600; margin-left: auto; font-family: var(--mono); font-size: 11.5px; }
.ctile-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.ctile-actions .btn { flex: 1; }
.ctile-advice { background: none; border: none; color: var(--teal-600); font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; padding: 4px; }
.ctile-advice:hover { color: var(--teal-700); text-decoration: underline; }
.ctile-tag { position: absolute; top: 10px; left: 10px; background: rgba(7,26,44,0.82); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em; padding: 4px 9px; border-radius: 6px; z-index: 3; }
.spec-row { align-items: flex-start; }
.spec-row span { flex: 0 0 88px; line-height: 1.35; }
.spec-row b { text-align: right; line-height: 1.35; font-size: 11px; }
.ccfg-sub { font-size: 12px; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.fcl-recap { display: flex; flex-direction: column; gap: 8px; }
.fcl-recap-row { display: flex; align-items: center; gap: 13px; padding: 11px 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); }
.frr-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; }
.frr-main { display: flex; flex-direction: column; }
.frr-main b { font-size: 14px; color: var(--navy); font-weight: 600; }
.frr-main span { font-size: 12.5px; color: var(--slate-500); margin-top: 1px; }
.frr-meta { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--slate-700); font-family: var(--mono); }
.fcl-total { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-strong); font-size: 13.5px; color: var(--slate-600); }
.fcl-total b { color: var(--navy); font-family: var(--mono); }
.ctile-use { font-size: 11.5px; color: var(--slate-500); margin: 0 0 12px; line-height: 1.45; }
.ctile-use b { color: var(--slate-600); font-weight: 600; }
.vtile-advice { background: none; border: none; color: var(--teal-600); font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; padding: 6px 0 0; cursor: pointer; }
.vtile-advice:hover { color: var(--teal-700); text-decoration: underline; }
.vtile { cursor: pointer; }
.side-help.flash { animation: helpFlash 1.4s ease; }
@keyframes helpFlash { 0%,100% { box-shadow: none; } 25% { box-shadow: 0 0 0 3px var(--teal-ring); border-color: var(--teal-500); } }
.disclaimer-note { display: flex; gap: 10px; align-items: flex-start; background: var(--amber-tint); border: 1px solid #f0dcb4; border-radius: var(--r); padding: 12px 15px; font-size: 12.5px; color: #7a5410; line-height: 1.5; }
.disclaimer-note svg { flex: 0 0 auto; margin-top: 1px; color: var(--amber); }
.disclaimer-note b { font-weight: 600; }

/* ---------- Per-container config card ---------- */
.cfg-section { margin-top: 8px; }
.ccfg { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.ccfg-head { display: flex; align-items: center; gap: 13px; padding: 14px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.ccfg-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; }
.ccfg-title { display: flex; flex-direction: column; }
.ccfg-title b { font-size: 14.5px; color: var(--navy); font-weight: 600; }
.ccfg-title span { font-size: 11.5px; color: var(--slate-500); font-family: var(--mono); margin-top: 1px; }
.ccfg-qty { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.ccfg-qty-label { font-size: 12.5px; color: var(--slate-600); font-weight: 500; }
.ccfg-remove { background: none; border: none; color: var(--slate-400); padding: 6px; border-radius: 6px; display: grid; place-items: center; }
.ccfg-remove:hover { color: var(--red); background: var(--red-tint); }
.ccfg-body { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.ccfg-body .span-full { grid-column: 1 / -1; }
.ccfg-stack { display: flex; flex-direction: column; gap: 14px; }
.ccfg-toggle { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 0; }
.ccfg-toggle > span { font-size: 13.5px; color: var(--slate-700); font-weight: 500; }

/* ---------- LTL explainer ---------- */
.ltl-explainer { display: flex; flex-direction: column; gap: 18px; }
.ltl-card { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--slate-400); border-radius: var(--r-lg); padding: 20px 22px; }
.ltl-icon { width: 48px; height: 48px; border-radius: 11px; background: var(--card); color: var(--teal-600); display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-sm); }
.ltl-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); }
.ltl-card p { font-size: 13.5px; color: var(--slate-600); margin-top: 6px; line-height: 1.55; max-width: 60ch; }
.ltl-next { padding: 0 2px; }
.ltl-next-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); }
.ltl-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ltl-chip { font-size: 12.5px; color: var(--slate-600); background: var(--teal-tint); border: 1px solid var(--teal-tint-2); border-radius: 7px; padding: 6px 11px; font-weight: 500; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; max-width: 460px; }
  .tile-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid.c3, .grid.c4 { grid-template-columns: 1fr 1fr; }
  .work { flex-direction: column; }
  .sidebar { position: static; width: 100%; flex: none; height: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .side-inner { padding: 18px 24px; }
  .side-steps { flex-direction: row; overflow-x: auto; gap: 4px; }
  .side-step { flex-direction: column; align-items: center; min-width: 76px; padding-bottom: 0; }
  .ss-line { display: none; }
  .ss-text { align-items: center; padding-bottom: 4px; }
  .ss-num { display: none; }
  .ss-label { font-size: 11.5px; text-align: center; }
  .side-help { display: none; }
  .work-main { padding: 26px 24px calc(var(--footer-h) + 44px); }
  .work-main.has-bg { background-position: center, center, left bottom; background-size: cover, cover, 460px auto; }
  .ccfg-body { grid-template-columns: 1fr; }
}

/* ===================================================================
   Header menu (dropdown) · Expert modal · Config highlight
   =================================================================== */

/* ---- Header dropdown menu ---- */
.hmenu { position: relative; }
.hmenu-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: var(--navy); border: 1px solid var(--navy);
  color: #fff; font-size: 13.5px; font-weight: 600; padding: 9px 14px; border-radius: 9px;
  transition: background 0.15s, border-color 0.15s;
}
.hmenu-btn:hover, .hmenu-btn.open { background: var(--navy-soft); border-color: var(--navy-soft); }
.hmenu-btn svg { color: #fff; }
.hmenu-panel {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 220px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 7px;
  animation: hmenu-in 0.14s ease;
}
@keyframes hmenu-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.hmenu-item {
  display: flex; align-items: center; gap: 11px; width: 100%; cursor: pointer;
  background: none; border: none; text-align: left; padding: 10px 11px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--slate-700);
}
.hmenu-item svg { color: var(--slate-500); flex: none; }
.hmenu-item:hover { background: var(--bg-2); color: var(--navy); }
.hmenu-item:hover svg { color: var(--teal-600); }
.hmenu-item.danger { color: #b4452f; }
.hmenu-item.danger svg { color: #b4452f; }
.hmenu-item.danger:hover { background: #fbecea; color: #9a3826; }
.hmenu-sep { height: 1px; background: var(--line); margin: 6px 4px; }
@media (max-width: 720px) {
  .appbar-right .expert-link { display: none; }
  .hmenu-label { display: none; }
}

/* ---- Talk-to-an-expert modal ---- */
.expert-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,28,46,0.55);
  backdrop-filter: blur(3px); display: grid; place-items: center; padding: 24px;
  animation: exp-fade 0.16s ease;
}
@keyframes exp-fade { from { opacity: 0; } to { opacity: 1; } }
.expert-modal {
  position: relative; width: 100%; max-width: 760px; background: var(--card);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden;
  animation: exp-pop 0.18s cubic-bezier(0.2,0.8,0.3,1);
}
@keyframes exp-pop { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: none; } }
.expert-close {
  position: absolute; top: 14px; right: 14px; z-index: 3; cursor: pointer;
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,255,255,0.6); border: 1px solid var(--line); color: var(--slate-600);
}
.expert-close:hover { background: #fff; color: var(--navy); }
.expert-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; }
.expert-aside {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; padding: 38px 32px;
}
.expert-aside-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-500); color: var(--navy); margin-bottom: 16px; }
.expert-aside h3 { font-size: 22px; font-weight: 650; color: #fff; letter-spacing: -0.01em; line-height: 1.2; }
.expert-aside > p { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 10px; line-height: 1.55; }
.expert-points { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.expert-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.9); line-height: 1.4; }
.expert-points li svg { color: var(--teal-400); flex: none; margin-top: 1px; }
.expert-direct { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); }
.expert-direct-row { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.edr-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.1); color: var(--teal-400); flex: none; }
.expert-direct-row small { display: block; font-size: 11.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.expert-direct-row b { font-size: 14px; color: #fff; }
.expert-direct-row:hover b { text-decoration: underline; }
.expert-form { padding: 38px 34px; }
.expert-form-head { font-size: 17px; font-weight: 650; color: var(--navy); margin-bottom: 18px; }
.ef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.ef-grid .ef-span { grid-column: 1 / -1; }
.expert-form-foot { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--slate-500); margin-top: 14px; }
.expert-form-foot svg { color: var(--teal-600); flex: none; }
/* modal success */
.expert-done { padding: 48px 40px; text-align: center; }
.expert-done-badge { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-600); margin: 0 auto 18px; }
.expert-done h3 { font-size: 22px; font-weight: 700; color: var(--navy); }
.expert-done > p { font-size: 14.5px; color: var(--slate-600); margin-top: 10px; line-height: 1.55; max-width: 46ch; margin-inline: auto; }
.expert-done-id { display: inline-flex; flex-direction: column; gap: 2px; margin: 20px auto 0; padding: 12px 26px; background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--r); }
.expert-done-id span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-500); }
.expert-done-id b { font-size: 17px; color: var(--navy); font-variant-numeric: tabular-nums; }
.expert-done-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 24px; }
.expert-done-actions .btn-primary { padding-inline: 40px; }
@media (max-width: 680px) {
  .expert-grid { grid-template-columns: 1fr; }
  .expert-aside { display: none; }
  .ef-grid { grid-template-columns: 1fr; }
}

/* ---- Config card reveal highlight ---- */
.cfg-flash, [data-cfg-id].cfg-flash .ccfg { animation: cfg-pulse 1.6s ease; }
@keyframes cfg-pulse {
  0% { box-shadow: 0 0 0 0 var(--teal-ring); }
  18% { box-shadow: 0 0 0 5px var(--teal-ring); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
[data-cfg-id].cfg-flash .ccfg { border-color: var(--teal-500); }
