/* ==========================================================================
   JYT Tech — design tokens
   ========================================================================== */
:root {
  --bg: #F7F4EC;
  --border: #E2DCCB;
  --navy: #16273B;
  --slate: #5C6B7A;
  --brass: #C98F1E;
  --teal: #29BFBF;
  --grid-line: #DAD3BF;

  --font-display: 'Fraunces', serif;
  /* Body/UI. Plex Mono is reserved for numeric + technical contexts only
     (stat values, step numbers, map annotations, contact field labels). */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --wrap-width: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Expo-out, used by the scroll reveals. Mirrored in script.js as a GSAP ease. */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 200;
}
.skip-link:focus {
  left: 1em;
  top: 1em;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 32px;
}


/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy);
  color: #F7F4EC;
  border-color: var(--navy);
}
.btn-primary:hover { background: #0f1c2c; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: rgba(22, 39, 59, 0.06); }
/* For use on the navy header, where .btn-primary would disappear. */
.btn-accent {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-accent:hover { background: #4FD4D4; border-color: #4FD4D4; }
.btn-small { padding: 0.6em 1.1em; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 39, 59, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(247, 244, 236, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark-img {
  height: 40px;
  width: auto;
}
.brand-mark {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #F7F4EC;
  background: var(--navy);
  padding: 0.3em 0.5em;
  border-radius: 3px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 0.95rem;
  color: rgba(247, 244, 236, 0.78);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--bg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Segmented language control (EN / 繁 / 简 / ES) on the navy header. */
.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(247, 244, 236, 0.25);
  border-radius: var(--radius);
  padding: 3px;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 0.4em 0.6em;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(247, 244, 236, 0.78);
  border-radius: 2px;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-btn:hover { color: var(--bg); }
.lang-btn.is-active {
  background: var(--bg);
  color: var(--navy);
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
section { padding: 96px 0; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  max-width: 20ch;
}
.section-subhead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: 48px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.hero-canvas {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 26%, rgba(247, 244, 236, 0) 58%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 96px;
}
.hero-content .hero-subhead {
  max-width: 40ch;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brass);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.eyebrow-divider {
  margin: 0 0.6em;
  color: var(--border);
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-subhead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 46ch;
  margin-bottom: 0;
}
.route-map {
  position: absolute;
  right: 0;
  /* Positive offset: a negative one pushed the map past the canvas edge,
     where overflow:hidden sliced its bottom off. This keeps the whole map
     inside and leaves clear space before the stats row. */
  bottom: 44px;
  width: 72%;
  height: auto;
}
.world-landmass path {
  fill: #E7E1D2;
  stroke: #16273B;
  stroke-width: 1.8;
  stroke-opacity: 0.15;
  filter: drop-shadow(0 5px 0 rgba(22, 39, 59, 0.08)) drop-shadow(0 14px 18px rgba(22, 39, 59, 0.12));
}
.node-label {
  font-family: var(--font-mono);
  font-size: 23px;
  fill: var(--navy);
}
.route-line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
}

.pulse-ring {
  fill: none;
  stroke-width: 2.7;
  opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-ring 2.8s ease-out infinite;
}
.pulse-ring-hq {
  animation-duration: 3.2s;
}
.map-node[data-city="shenzhen"] .pulse-ring { animation-delay: 0.4s; }
.map-node[data-city="manila"] .pulse-ring { animation-delay: 0.9s; }
.map-node[data-city="sao-paulo"] .pulse-ring { animation-delay: 1.3s; }
.map-node[data-city="lima"] .pulse-ring { animation-delay: 0.2s; }
.map-node[data-city="buenos-aires"] .pulse-ring { animation-delay: 1.7s; }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3.4); opacity: 0; }
}

.hq-callout-text {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  fill: var(--navy);
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
/* Deliberately unboxed — no background or border, so the stats read as part of
   the page rather than a separate module. The column rules do the separating. */
.stats-strip {
  padding: 56px 0 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
}

/* ==========================================================================
   About
   ========================================================================== */
.about .section-heading {
  max-width: 34ch;
}
.about-intro {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 62ch;
  margin-bottom: 40px;
}
.about-intro strong {
  color: var(--navy);
  font-weight: 500;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.about-point-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-point-desc {
  font-size: 0.95rem;
  color: var(--slate);
}

/* ==========================================================================
   Solution cards (category selection, used in RFQ wizard step 1)
   ========================================================================== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: #FBF9F3;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 22px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
}
.solution-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.solution-card.is-selected {
  border-color: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
  background: #F5EEE0;
}
.solution-icon svg { width: 34px; height: 34px; }
.solution-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}
.solution-desc {
  font-size: 0.92rem;
  color: var(--slate);
}

.solution-other {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
  padding: 18px 24px;
  text-align: left;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.solution-other:hover {
  border-color: var(--brass);
}
.solution-other.is-selected {
  border-color: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
  background: #F5EEE0;
}
.solution-other-icon svg {
  width: 30px;
  height: 30px;
}
.solution-other-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.solution-other-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}
.solution-other-desc {
  font-size: 0.9rem;
  color: var(--slate);
}
.solution-other-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  white-space: nowrap;
}

/* ==========================================================================
   RFQ wizard
   ========================================================================== */
.quote { background: #FBF9F3; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wizard {
  max-width: 1040px;
  margin: 0 auto;
}
.progress-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 44px;
}
.progress-step {
  position: relative;
  text-align: center;
  padding-top: 14px;
}
.progress-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grid-line);
}
.progress-step.is-active::before,
.progress-step.is-complete::before {
  background: var(--brass);
}
.progress-num {
  display: none;
}
.progress-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.progress-step.is-active .progress-label,
.progress-step.is-complete .progress-label {
  color: var(--navy);
}

.wizard-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 44px 36px;
}
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; }
.panel-heading {
  font-size: 1.4rem;
  margin-bottom: 26px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.field-optional {
  font-weight: 400;
  color: var(--slate);
}
.field input,
.field select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75em 0.9em;
  background: #fff;
  color: var(--navy);
}
.field input:focus,
.field select:focus {
  border-color: var(--brass);
}
fieldset.field {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill {
  position: relative;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-pill span {
  display: inline-block;
  padding: 0.6em 1.1em;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--slate);
  background: #fff;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.radio-pill input:checked + span {
  border-color: var(--brass);
  color: var(--navy);
  background: #F5EEE0;
}
.radio-pill input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.field-error {
  color: #A8402A;
  font-size: 0.85rem;
  margin-top: 8px;
}

.confirm-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 20px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row dt {
  font-size: 0.85rem;
  color: var(--slate);
}
.confirm-row dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}
.confirm-response-note {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 24px;
}

.wizard-success {
  text-align: center;
  padding: 24px 0 8px;
}
.success-mark {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #F7F4EC;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.wizard-success .panel-heading { margin-bottom: 10px; }
.wizard-success p { color: var(--slate); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.wizard-nav .btn-primary { margin-left: auto; }

/* ==========================================================================
   Process — tabbed step card
   ========================================================================== */
.process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 19%);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #FBF9F3;
  overflow: hidden;
}

/* Tabs: thin full-height columns down the right edge, split by vertical rules.
   Placed explicitly because they precede the panes in the DOM. */
.process-tabs {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.step-tab {
  position: relative;
  /* Flex + flex-start so the number sits at the top of the tall column;
     a button would otherwise centre it in all that vertical space. */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: none;
  border-left: 1px solid var(--border);
  background: none;
  padding: 34px 4px 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--slate);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.step-tab:first-child { border-left: none; }
.step-tab:hover { color: var(--navy); }
.step-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background-color 0.25s var(--ease);
}
.step-tab.is-active {
  color: var(--navy);
  font-weight: 500;
  background: rgba(41, 191, 191, 0.07);
}
.step-tab.is-active::before { background: var(--teal); }

.process-panes {
  grid-column: 1;
  grid-row: 1;
  padding: 34px;
}
.step-content { display: none; }
.step-content.is-active { display: block; }
.step-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.step-card-img {
  /* Explicit height rather than aspect-ratio: pairing aspect-ratio with a
     max-height makes the browser shrink the width to preserve the ratio,
     so the box stops filling the pane. The source photos are 3:2, so
     object-fit crops them to this wider slot without distortion. */
  width: 100%;
  height: clamp(190px, 30vw, 330px);
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  background: var(--bg);
  margin-bottom: 22px;
}
.step-desc {
  color: var(--slate);
  max-width: 62ch;
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 1.1rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.carousel-btn:hover:not([disabled]) {
  background: var(--navy);
  color: var(--bg);
}
.carousel-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.footer-logo-img {
  height: 32px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--slate);
}
.footer-nav a:hover { color: var(--navy); }
.footer-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-contact-item {
  position: relative;
  font-size: 0.85rem;
  color: var(--navy);
  padding-left: 14px;
}
.footer-contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 1px;
  background: var(--border);
}
.footer-contact-item:first-child {
  padding-left: 0;
}
.footer-contact-item:first-child::before {
  display: none;
}
.footer-contact-link {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.footer-contact-link:hover {
  border-bottom-color: var(--brass);
}
.footer-contact-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  margin-right: 0.5em;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--slate);
  width: 100%;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ==========================================================================
   Scroll-reveal base state (GSAP toggles .is-revealed)
   ========================================================================== */
/* Applied by script.js only once GSAP is confirmed loaded and the user has not
   requested reduced motion — so content is never left invisible if either
   condition fails. GSAP's inline styles take over from here. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .route-line { stroke-dashoffset: 0; }
  .pulse-ring { animation: none; display: none; }
  .step-tab, .step-tab::before { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-canvas {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    min-height: 0;
  }
  .route-map {
    position: static;
    width: 100%;
  }
  .hero-fade { display: none; }
  .hero-content {
    padding-top: 64px;
    padding-bottom: 24px;
  }
  /* Card stacks: tabs become a horizontal row above the content. They already
     precede the panes in the DOM, so the explicit grid placement is dropped. */
  .process-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .process-tabs {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    border-bottom: 1px solid var(--border);
  }
  .step-tab { padding: 16px 4px; }
  .process-panes {
    grid-column: 1;
    grid-row: auto;
    padding: 26px;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav { display: none; }
  .about-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero-content { padding-top: 48px; padding-bottom: 16px; }
  .header-inner { height: 68px; gap: 10px; }
  .header-actions { gap: 8px; }
  .brand-mark-img { height: 28px; }
  .lang-switch { padding: 2px; gap: 0; }
  .lang-btn { padding: 0.35em 0.4em; font-size: 0.72rem; }
  .site-header .btn-small { padding: 0.55em 0.7em; font-size: 0.8rem; }
  .field-row { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .process-panes { padding: 20px; }
  .step-title { font-size: 1.35rem; }
  .wizard-form { padding: 28px 22px 24px; }
  .progress-label { font-size: 0.68rem; }
  .confirm-row { flex-direction: column; gap: 4px; }
  .confirm-row dd { text-align: left; }
  .timeline-trigger { gap: 14px; }
  .timeline-title { font-size: 1.05rem; }
  .timeline-detail p { padding-left: 0; }
  .footer-contact-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-contact-item { padding-left: 0; }
  .footer-contact-item::before { display: none; }
  .solution-other { flex-wrap: wrap; }
  .solution-other-copy { flex-basis: calc(100% - 48px); }
  .solution-other-cta { margin-left: 48px; }
}
