:root {
  color-scheme: light;
  --ink: #0b0d10;
  --muted: #5e6875;
  --soft: #8b96a4;
  --line: #dce2e9;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #1473e6;
  --blue-dark: #0757b8;
  --shadow: 0 28px 80px rgba(61, 74, 92, .16);
  --max: 1180px;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 248, 251, .92) 36%, rgba(255, 255, 255, .98)),
    radial-gradient(circle at 78% 20%, rgba(20, 115, 230, .12), transparent 30%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(210, 218, 228, .52);
  background: rgba(247, 249, 251, .74);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #cfd7e2;
  border-radius: 50%;
  background: #fff;
  color: #111821;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(32, 45, 62, .08);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: #2b323c;
  font-size: 13px;
  font-weight: 560;
}

.nav-links a,
.language-switcher a {
  opacity: .72;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover,
.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--blue);
  opacity: 1;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: #2b323c;
  font-size: 12px;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  padding: 110px max(22px, calc((100vw - var(--max)) / 2)) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(247, 249, 251, .98) 0%, rgba(247, 249, 251, .84) 34%, rgba(247, 249, 251, .24) 62%, rgba(247, 249, 251, .08) 100%),
    url("/assets/hero-uav.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 249, 251, 0), var(--paper) 78%);
  z-index: -1;
}

.hero-copy {
  align-self: end;
  width: min(610px, 100%);
  padding-bottom: clamp(8px, 2vw, 32px);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .96;
  font-weight: 720;
}

h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 700;
}

h3 {
  color: #12171f;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 660;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 30px;
  color: #2e3743;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.22;
  font-weight: 430;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-actions a,
.contact-actions button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 640;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 115, 230, .22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(12, 18, 26, .14);
  background: rgba(255, 255, 255, .64);
  color: #111820;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}

.page-main {
  padding-top: 72px;
}

.subpage-hero {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(96px, 13vw, 164px) 0 clamp(54px, 8vw, 92px);
}

.subpage-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.28;
}

.section-intro {
  padding-top: clamp(28px, 5vw, 48px);
}

.section-intro,
.section-lead {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(32px, 8vw, 104px);
}

.section-lead {
  grid-template-columns: 1fr;
  gap: 0;
}

.section-lead h2,
.capability h2,
.contact h2,
.process h2 {
  margin-bottom: 24px;
}

.section-lead p,
.capability p,
.feature-grid p,
.trade-grid p,
.process p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.section-lead p {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: 0;
}

.platform-media {
  position: relative;
  min-width: 0;
}

.platform-model {
  min-height: 430px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.platform-model canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  outline: none;
}

.platform-model-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 112px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 19, 27, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #26313d;
  font-size: 12px;
  font-weight: 680;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.platform-model-controls {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 160px);
}

.platform-model-controls button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 19, 27, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #18212c;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.platform-model-controls button:hover {
  border-color: rgba(20, 115, 230, .54);
  background: rgba(255, 255, 255, .96);
}

.platform-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.platform-copy h2 {
  margin-bottom: 18px;
}

.platform-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.feature-grid,
.trade-grid {
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.feature-grid article,
.trade-grid article {
  position: relative;
  display: flex;
  min-height: 290px;
  padding: clamp(24px, 3vw, 36px);
  flex-direction: column;
  background: rgba(255, 255, 255, .76);
  overflow: hidden;
}

.feature-grid article::before {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(139, 150, 164, .16);
  border-radius: 50%;
}

.pillar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 86px;
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.pillar-icon {
  position: relative;
  width: 116px;
  height: 62px;
  opacity: .82;
}

.pillar-icon::before,
.pillar-icon::after {
  position: absolute;
  content: "";
}

.icon-platform::before {
  left: 8px;
  right: 8px;
  top: 28px;
  height: 1px;
  background: #aab6c2;
}

.icon-platform::after {
  left: 28px;
  top: 10px;
  width: 60px;
  height: 34px;
  border: 1px solid #aab6c2;
  border-radius: 50% 50% 42% 42%;
  transform: skewX(-16deg);
}

.icon-components {
  display: grid;
  grid-template-columns: repeat(3, 22px);
  gap: 8px;
  justify-content: end;
  align-content: center;
}

.icon-components::before {
  width: 76px;
  height: 1px;
  right: 0;
  top: 31px;
  background: #aab6c2;
}

.icon-components span,
.icon-components::after {
  display: none;
}

.icon-components {
  background:
    radial-gradient(circle at 22px 31px, #1473e6 0 4px, transparent 5px),
    radial-gradient(circle at 58px 31px, #ffffff 0 5px, #1473e6 5px 7px, transparent 8px),
    radial-gradient(circle at 94px 31px, #ffffff 0 5px, #1473e6 5px 7px, transparent 8px);
}

.icon-trade::before {
  left: 8px;
  right: 8px;
  top: 35px;
  height: 1px;
  background: #aab6c2;
}

.icon-trade::after {
  right: 8px;
  top: 12px;
  width: 82px;
  height: 38px;
  border-top: 1px dashed #1473e6;
  border-radius: 50%;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.pillar-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(207, 215, 226, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #566272;
  font-size: 11px;
  font-weight: 700;
}

.feature-grid h3,
.trade-grid h3 {
  margin-bottom: 14px;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-list div {
  padding: 28px;
  background: rgba(255, 255, 255, .78);
}

.capability-list h3,
.capability-list p {
  margin-bottom: 0;
}

.capability-list h3 {
  margin-bottom: 10px;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-catalog article {
  min-height: 230px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, .78);
}

.product-catalog article:last-child {
  grid-column: 1 / -1;
}

.product-catalog h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.02;
}

.product-catalog p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.global {
  padding-bottom: 44px;
}

.subpage-section {
  padding-top: 0;
}

.compact {
  max-width: 820px;
  margin-top: 18px;
}

.trade-map-card {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 1px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 248, 252, .76)),
    linear-gradient(90deg, rgba(20, 115, 230, .04), transparent 52%);
  overflow: hidden;
}

.trade-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
}

.trade-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trade-grid article {
  min-height: 250px;
}

.process {
  width: 100%;
  max-width: none;
  margin-top: 58px;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(244, 248, 252, .82)),
    linear-gradient(90deg, rgba(20, 115, 230, .08), transparent 58%);
  border-block: 1px solid var(--line);
}

.process-copy {
  max-width: 900px;
}

.process h2 {
  max-width: 720px;
}

.process p {
  max-width: 760px;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-steps span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .68);
  color: #44505d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
}

.contact h2 {
  max-width: 680px;
}

.contact-page {
  padding-top: 28px;
}

.legal-name {
  margin: -8px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions a,
.contact-actions button {
  display: grid;
  min-width: 224px;
  padding: 17px 22px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 44px rgba(55, 68, 84, .08);
}

.contact-actions span {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  transform: translateX(-50%);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(247, 249, 251, .95) 0%, rgba(247, 249, 251, .68) 42%, rgba(247, 249, 251, .96) 100%),
      url("/assets/hero-uav.png");
    background-size: auto 72%, auto 72%;
    background-position: center top 58px;
    background-repeat: no-repeat;
  }

  .hero-copy {
    align-self: end;
  }

  .section-intro,
  .platform-showcase,
  .capability-layout,
  .contact,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-catalog article:last-child {
    grid-column: auto;
  }

  .feature-grid,
  .trade-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    gap: 10px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .language-switcher {
    gap: 10px;
  }

  .hero {
    display: flex;
    min-height: 0;
    padding: 84px 18px 52px;
    flex-direction: column;
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    height: clamp(230px, 74vw, 320px);
    margin: 0 -18px 28px;
    background-image:
      linear-gradient(180deg, rgba(247, 249, 251, .04), rgba(247, 249, 251, .86) 92%),
      url("/assets/hero-uav.png");
    background-size: auto 112%;
    background-position: center top;
    background-repeat: no-repeat;
    animation: none;
    transform: none;
  }

  .hero-copy {
    align-self: auto;
    padding-bottom: 0;
  }

  .page-main {
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .section,
  .feature-grid,
  .trade-grid,
  .trade-map-card,
  .contact,
  .site-footer {
    width: calc(100% - 36px);
  }

  .feature-grid,
  .trade-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .trade-grid article {
    min-height: auto;
  }

  .pillar-head {
    min-height: 76px;
  }

  .pillar-icon {
    transform: scale(.86);
    transform-origin: top right;
  }

  .capability-list div {
    padding: 24px;
  }

  .subpage-hero {
    padding: 72px 0 48px;
  }

  .subpage-hero h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 19px;
  }

  .platform-model {
    min-height: 360px;
  }

  .platform-model-status {
    right: 12px;
    bottom: 66px;
  }

  .platform-model-controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .contact-actions,
  .contact-actions a,
  .contact-actions button,
  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: settle 900ms ease-out both;
  }

  .section,
  .feature-grid,
  .trade-grid,
  .trade-map-card,
  .contact {
    animation: rise 700ms ease-out both;
  }

  @keyframes settle {
    from {
      opacity: .72;
      transform: scale(1.035);
    }
    to {
      opacity: 1;
      transform: scale(1.01);
    }
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Phase 1 procurement redesign */
.home-redesign,
.products-redesign,
.quote-page {
  --ink: #1e293b;
  --muted: #64748b;
  --soft: #94a3b8;
  --line: #d8e1ec;
  --paper: #f8fafc;
  --blue: #1a56db;
  --blue-dark: #123f9f;
  --orange: #f97316;
  --navy: #0a1628;
  --surface-dark: #111827;
  background: var(--paper);
  color: var(--ink);
}

.home-redesign::before,
.products-redesign::before,
.quote-page::before {
  display: none;
}

.dark-header {
  border-bottom-color: rgba(216, 225, 236, .3);
  background: rgba(248, 250, 252, .82);
}

.dark-header .nav-links {
  gap: 32px;
  color: #182235;
  font-size: 14px;
  font-weight: 650;
}

.products-redesign .site-header {
  border-bottom-color: rgba(148, 163, 184, .18);
  background: rgba(248, 250, 252, .82);
}

.product-page-main {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 10%, rgba(26, 86, 219, .16), transparent 28%),
    radial-gradient(circle at 18% 36%, rgba(125, 177, 255, .18), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(249, 115, 22, .08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef5fb 38%, #f8fafc 100%);
}

.product-page-main::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .34;
}

.product-page-main > * {
  position: relative;
  z-index: 1;
}

.products-hero {
  width: 100%;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 96px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, .96), rgba(248, 250, 252, .72) 42%, rgba(218, 231, 246, .36)),
    radial-gradient(circle at 82% 45%, rgba(26, 86, 219, .22), transparent 30%);
}

.products-hero-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.products-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 82px);
  line-height: .98;
  font-weight: 900;
}

.products-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.product-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-spec-chips span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.product-hero-model {
  min-height: min(56vw, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3f7;
  box-shadow: 0 24px 72px rgba(15, 23, 42, .08);
}

.product-overview {
  width: min(var(--max), calc(100% - 48px));
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  padding: 96px 0;
}

.product-overview::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 22% 12%, rgba(26, 86, 219, .12), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(249, 115, 22, .07), transparent 26%),
    linear-gradient(180deg, rgba(239, 246, 255, .72), rgba(248, 250, 252, .94));
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 28px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(197, 209, 224, .72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .56)),
    linear-gradient(135deg, rgba(26, 86, 219, .08), rgba(249, 115, 22, .03));
  box-shadow: 0 26px 72px rgba(15, 23, 42, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pillar-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #1a56db, #7db1ff 62%, #f97316);
}

.pillar-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 41, 59, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, .032) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, #000 40%, transparent 100%);
  mask-image: linear-gradient(135deg, transparent 0%, #000 40%, transparent 100%);
  opacity: .58;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.product-overview .pillar-head {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.product-overview .pillar-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border: 1px solid rgba(191, 219, 254, .28);
  border-radius: 8px;
  background: rgba(26, 86, 219, .08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.product-overview .pillar-head strong {
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.product-overview h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.product-overview p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.technical-visual {
  position: relative;
  min-height: 240px;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, .2);
  border-radius: 8px;
  background: rgba(2, 8, 23, .48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.technical-visual img,
.technical-visual svg {
  display: block;
  width: 100%;
  height: 240px;
}

.visual-media img {
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.airframe-visual {
  display: grid;
  align-items: center;
  padding: 12px 16px 38px;
}

.airframe-visual svg {
  height: 122px;
}

.airframe-visual img {
  display: block;
  width: 100%;
  height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(15, 23, 42, .16));
}

.airframe-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  margin: 0;
  color: rgba(226, 232, 240, .86);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.component-visual {
  display: block;
  padding: 0;
}

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

.component-rail span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(26, 86, 219, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: #1e3a8a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.component-stack {
  display: grid;
  grid-template-columns: 1.3fr .86fr 1fr;
  gap: 10px;
  align-items: end;
}

.component-stack div {
  min-height: 54px;
  border: 1px solid rgba(71, 85, 105, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(226, 232, 240, .84)),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(26, 86, 219, .1) 14px 15px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.component-stack div:nth-child(2) {
  min-height: 76px;
}

.component-stack div:nth-child(3) {
  min-height: 64px;
}

.workflow-visual {
  display: block;
  padding: 0;
}

.workflow-visual div {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(26, 86, 219, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
}

.workflow-visual div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 12px;
  height: 2px;
  content: "";
  background: rgba(26, 86, 219, .42);
}

.workflow-visual span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.workflow-visual strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.blueprint-grid path,
.map-grid path {
  stroke: rgba(100, 116, 139, .24);
  stroke-width: 1;
}

.airframe-drawing path {
  stroke: rgba(30, 41, 59, .58);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.dimension-lines path {
  fill: none;
  stroke: rgba(26, 86, 219, .48);
  stroke-width: 1.2;
}

.dimension-lines text,
.assembly-tags text,
.gimbal-part text,
.motor-part text,
.battery-part text,
.shipment-strip text,
.trade-node text {
  fill: #315985;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.assembly-shadow path {
  stroke: rgba(15, 23, 42, .16);
  stroke-width: 8;
  stroke-linecap: round;
}

.exploded-guide path {
  fill: none;
  stroke: rgba(26, 86, 219, .42);
  stroke-width: 1.4;
}

.gimbal-part rect,
.motor-part rect,
.battery-part rect,
.shipment-strip rect,
.trade-node rect {
  fill: rgba(255, 255, 255, .86);
  stroke: rgba(51, 65, 85, .28);
  stroke-width: 1.4;
}

.gimbal-part path,
.motor-part path,
.battery-part path {
  fill: none;
  stroke: rgba(30, 41, 59, .62);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-lines path {
  fill: none;
  stroke: rgba(26, 86, 219, .58);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.route-lines path:nth-child(2) {
  stroke: rgba(249, 115, 22, .54);
}

.shipment-strip path {
  stroke: rgba(30, 41, 59, .52);
  stroke-width: 1.2;
}

.overview-model-card {
  background:
    linear-gradient(180deg, rgba(10, 22, 40, .98), rgba(15, 23, 42, .96)),
    linear-gradient(135deg, rgba(26, 86, 219, .34), transparent);
  color: #fff;
}

.overview-model-card .pillar-head span {
  border-color: rgba(125, 177, 255, .32);
  background: rgba(125, 177, 255, .14);
  color: #bfdbfe;
}

.overview-model-card .pillar-head strong,
.overview-model-card p,
.overview-model-card h3 {
  color: #fff;
}

.overview-model-card p {
  color: rgba(226, 232, 240, .76);
}

.overview-model-shell {
  position: relative;
  min-height: 212px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 8px;
  background: #eef3f7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.overview-model-shell canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 212px;
}

.overview-model-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-model-controls button {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #18212c;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.overview-model-controls button:hover {
  border-color: rgba(26, 86, 219, .5);
  background: #fff;
}

.product-overview .pillar-tags {
  margin-top: auto;
  padding-top: 26px;
}

.product-overview .pillar-tags span {
  border-color: rgba(26, 86, 219, .18);
  background: rgba(26, 86, 219, .07);
  color: #315985;
}

.overview-model-card .pillar-tags span {
  border-color: rgba(26, 86, 219, .18);
  background: rgba(26, 86, 219, .07);
  color: #315985;
}

.overview-model-card::after {
  background-image:
    linear-gradient(rgba(191, 219, 254, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 219, 254, .06) 1px, transparent 1px);
  opacity: .42;
}

.component-spec-sheet {
  width: min(var(--max), calc(100% - 48px));
  position: relative;
  margin: 0 auto;
  padding: 64px 0 112px;
  color: var(--ink);
}

.component-spec-header {
  display: grid;
  grid-template-columns: minmax(280px, .5fr) minmax(0, .64fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 16px;
}

.component-spec-header h2 {
  max-width: 460px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;
}

.component-spec-header > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.component-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(197, 209, 224, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 22px 64px rgba(15, 23, 42, .09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.component-spec-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.component-spec-table th,
.component-spec-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(216, 225, 236, .82);
  text-align: left;
  vertical-align: top;
}

.component-spec-table thead th {
  background: rgba(241, 245, 249, .86);
  color: #334155;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.component-spec-table tbody th {
  width: 230px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.component-spec-table td {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.component-spec-table tbody tr:last-child th,
.component-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.procurement-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 64px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
}

.procurement-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(10, 22, 40, .98) 0%, rgba(10, 22, 40, .82) 38%, rgba(10, 22, 40, .28) 72%, rgba(10, 22, 40, .18) 100%),
    linear-gradient(180deg, rgba(10, 22, 40, .1), rgba(10, 22, 40, .86)),
    url("/assets/hero-uav.png");
  background-size: cover;
  background-position: center right;
}

.procurement-hero-content {
  width: min(760px, 100%);
}

.procurement-hero .eyebrow,
.home-redesign .eyebrow,
.quote-page .eyebrow {
  color: #7db1ff;
}

.procurement-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(56px, 8vw, 96px);
  line-height: .94;
  font-weight: 900;
}

.procurement-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
}

.procurement-hero .button-secondary {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.hero-spec-strip {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: min(480px, calc(100% - 48px));
}

.hero-spec-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 650;
}

html[lang="zh-Hant"] [data-zh-hidden] {
  display: none;
}

.procurement-hero .hero-actions {
  max-width: 520px;
}

.home-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.landing-routes {
  padding-bottom: 64px;
}

.landing-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.landing-heading h2 {
  font-size: clamp(34px, 4.8vw, 56px);
}

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

.route-card {
  display: grid;
  min-height: 168px;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 225, 236, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.route-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.route-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.route-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.supply-card {
  min-height: 280px;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.supply-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.supply-card h3 {
  margin: 56px 0 16px;
  color: var(--ink);
  font-size: 24px;
}

.supply-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.flagship-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: 48px;
  align-items: center;
}

.flagship-image img,
.priority-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}

.flagship-copy h2 {
  margin-bottom: 24px;
}

.flagship-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 32px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px;
  background: #fff;
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  font-size: 14px;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 700;
}

.spec-list dd {
  color: var(--ink);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.priority-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.priority-grid h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.priority-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.quote-band {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto 96px;
  padding: 48px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.quote-band h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
}

.quote-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.6;
}

.quote-layout {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 64px;
  margin: 0 auto;
  padding: 144px 0 96px;
}

.quote-intro h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: .98;
  font-weight: 900;
}

.quote-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.next-steps {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.next-steps div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
}

.next-steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.next-steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.direct-contact-card {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.direct-contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.direct-contact-card a {
  color: var(--blue);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.05;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.direct-contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quote-form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .1);
}

.quote-form,
.quote-success {
  display: grid;
  gap: 20px;
  padding: 32px;
}

.quote-form[hidden],
.quote-success[hidden] {
  display: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 14px;
}

.quote-form textarea {
  padding: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(26, 86, 219, .14);
}

.quote-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-success h2 {
  margin: 0;
  font-size: 40px;
}

.quote-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .procurement-hero {
    min-height: 100vh;
    padding: 96px 24px 48px;
  }

  .hero-spec-strip {
    display: none;
  }

  .supply-grid,
  .route-grid,
  .priority-grid,
  .flagship-card,
  .products-hero,
  .quote-band,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-band {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .home-section,
  .products-hero,
  .product-overview,
  .component-spec-sheet,
  .quote-band,
  .quote-layout {
    width: calc(100% - 32px);
  }

  .products-hero {
    min-height: auto;
    gap: 28px;
    padding: 32px 0 56px;
  }

  .products-hero-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .products-hero-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  .product-hero-model {
    order: -1;
    min-height: 320px;
  }

  .product-overview {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 64px;
  }

  .pillar-card {
    min-height: auto;
    padding: 22px;
  }

  .technical-visual,
  .overview-model-shell {
    min-height: 188px;
  }

  .technical-visual svg {
    height: 188px;
  }

  .airframe-visual svg {
    height: 112px;
  }

  .component-spec-sheet {
    margin-bottom: 64px;
  }

  .component-spec-header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .component-spec-header h2 {
    font-size: 20px;
  }

  .component-spec-table {
    min-width: 700px;
  }

  .procurement-hero {
    min-height: clamp(650px, 86svh, 720px);
    display: flex;
    padding: 78px 18px 28px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
  }

  .procurement-hero-media {
    background-size: auto 82%;
    background-position: center 32%;
  }

  .procurement-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: .98;
  }

  .procurement-hero p:not(.eyebrow) {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.46;
  }

  .procurement-hero .hero-actions {
    display: grid;
    gap: 12px;
    max-width: none;
  }

  .procurement-hero .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-spec-strip {
    display: none;
  }

  .quote-layout {
    gap: 32px;
    padding: 108px 0 64px;
  }

  .quote-intro h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .quote-intro > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.58;
  }

  .next-steps {
    margin-top: 32px;
  }

  .supply-card,
  .route-card,
  .quote-band,
  .quote-form,
  .quote-success,
  .direct-contact-card {
    padding: 24px;
  }

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