:root {
  --bg: #fff9ef;
  --bg-soft: #fff4df;
  --surface: #ffffff;
  --surface-strong: #151311;
  --ink: #151311;
  --muted: #68625c;
  --muted-2: #8a8278;
  --line: rgba(21, 19, 17, 0.1);
  --brand: #f7a928;
  --brand-strong: #e88d07;
  --brand-dark: #2e2110;
  --accent: #ffcf73;
  --success: #2e9b62;
  --danger: #d76345;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 30px rgba(21, 19, 17, 0.08);
  --shadow-md: 0 24px 70px rgba(21, 19, 17, 0.13);
  --shadow-brand: 0 22px 45px rgba(247, 169, 40, 0.28);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #fff;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 249, 239, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 45px rgba(21, 19, 17, 0.08);
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand-text small {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4f4943;
  font-size: 0.94rem;
  font-weight: 750;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(247, 169, 40, 0.14);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--surface-strong);
  color: #fff;
  box-shadow: 0 12px 26px rgba(21, 19, 17, 0.16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface-strong);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 14%, rgba(247, 169, 40, 0.42), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(255, 207, 115, 0.42), transparent 26%),
    linear-gradient(180deg, #fff7e8 0%, var(--bg) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(21, 19, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 17, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 66px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #5f5548;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(46, 155, 98, 0.13);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5.6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  font-weight: 900;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.hero-lede,
.section-heading p,
.section-intro p,
.facilities-copy p,
.quote-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #1b1408;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 26px 54px rgba(247, 169, 40, 0.35);
}

.btn-secondary {
  border-color: rgba(21, 19, 17, 0.11);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(21, 19, 17, 0.06);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(21, 19, 17, 0.05);
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orbit-one {
  width: 380px;
  height: 380px;
  right: 0;
  top: 42px;
  background: rgba(247, 169, 40, 0.22);
}

.orbit-two {
  width: 210px;
  height: 210px;
  left: 20px;
  bottom: 100px;
  background: rgba(21, 19, 17, 0.08);
}

.dashboard-card {
  position: absolute;
  inset: 50px 18px 35px 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 229, 0.84)),
    radial-gradient(circle at 80% 12%, rgba(247, 169, 40, 0.34), transparent 30%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(21, 19, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 17, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 45% 45%, black, transparent 74%);
}

.dashboard-topbar,
.dashboard-metrics,
.pipeline,
.floating-card {
  position: relative;
  z-index: 1;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(21, 19, 17, 0.92);
  color: #fff;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.dashboard-topbar p {
  margin: 0 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.dashboard-metrics article,
.floating-card {
  border: 1px solid rgba(21, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(21, 19, 17, 0.08);
}

.dashboard-metrics article {
  padding: 18px;
  border-radius: 22px;
}

.dashboard-metrics small,
.floating-card small {
  display: block;
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  display: block;
  margin: 5px 0;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.dashboard-metrics span {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
}

.pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  margin: 34px 0 0;
  padding: 16px;
  border-radius: 26px;
  background: rgba(21, 19, 17, 0.92);
  color: #fff;
}

.pipeline-step {
  display: grid;
  place-items: center;
  gap: 6px;
  min-width: 74px;
}

.pipeline-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.pipeline-step.active span {
  background: var(--brand);
  color: var(--ink);
}

.pipeline-step b {
  font-size: 0.79rem;
}

.pipeline-line {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(255, 255, 255, 0.16));
}

.floating-card {
  position: absolute;
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.order-card {
  left: 34px;
  bottom: 110px;
  width: min(255px, 52%);
  padding: 18px;
}

.order-card strong {
  display: block;
  margin: 4px 0 3px;
  font-size: 1.15rem;
}

.order-card span {
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 800;
}

.warehouse-card {
  right: 30px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.warehouse-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(247, 169, 40, 0.2);
  color: var(--brand-strong);
  font-size: 1.4rem;
}

.handoff-card {
  top: 230px;
  right: -4px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 16px;
}

.handoff-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 900;
}

.handoff-card strong {
  display: block;
  line-height: 1.15;
}

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 28px;
  background: rgba(21, 19, 17, 0.08);
  box-shadow: var(--shadow-sm);
}

.stats-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.83);
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.032em;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.38;
}

.split-grid,
.facilities-grid,
.quote-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

.section-intro {
  position: sticky;
  top: 130px;
}

.pain-solution-grid {
  display: grid;
  gap: 18px;
}

.pain-card,
.solution-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.solution-card {
  background: var(--surface-strong);
  color: #fff;
}

.solution-card h3 {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list.negative li::before {
  content: "!";
  background: rgba(215, 99, 69, 0.14);
  color: var(--danger);
}

.check-list.positive li {
  color: rgba(255, 255, 255, 0.76);
}

.check-list.positive li::before {
  content: "✓";
  background: rgba(247, 169, 40, 0.18);
  color: var(--brand);
}

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

.feature-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(21, 19, 17, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(21, 19, 17, 0.11);
}

.feature-card-accent {
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 169, 40, 0.33), transparent 34%),
    var(--surface-strong);
  color: #fff;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(247, 169, 40, 0.16);
  color: var(--brand-strong);
  font-size: 1.32rem;
  font-weight: 900;
}

.feature-card-accent .feature-icon {
  background: var(--brand);
  color: var(--ink);
}

.facilities {
  background: linear-gradient(180deg, transparent 0%, #fff3da 100%);
}

.facilities-grid {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.facility-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 68% 25%, rgba(247, 169, 40, 0.42), transparent 30%),
    linear-gradient(135deg, #191613, #302113 55%, #1d1712);
  box-shadow: var(--shadow-md);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
}

.facility-map::before,
.facility-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.facility-map::before {
  width: 390px;
  height: 390px;
  top: 52px;
  right: 48px;
}

.facility-map::after {
  width: 590px;
  height: 590px;
  top: -48px;
  right: -44px;
}

.capacity-card {
  position: absolute;
  z-index: 1;
  width: min(360px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.capacity-card.owned {
  top: 58px;
  left: 40px;
}

.capacity-card.network {
  right: 40px;
  bottom: 54px;
}

.capacity-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(247, 169, 40, 0.18);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.capacity-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
}

.location-pin {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--surface-strong);
  border-radius: 50% 50% 50% 0;
  background: var(--brand);
  box-shadow: 0 0 0 10px rgba(247, 169, 40, 0.18);
  transform: rotate(-45deg);
}

.pin-one {
  top: 250px;
  left: 49%;
}

.pin-two {
  top: 170px;
  right: 25%;
}

.pin-three {
  bottom: 170px;
  left: 25%;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 19, 17, 0.18), transparent);
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border: 8px solid var(--bg);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--brand);
  font-weight: 950;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.42) 100%);
}

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

.testimonial-card {
  padding: 28px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 18px;
  color: var(--brand-strong);
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 20px;
  font-size: 1.35rem;
  line-height: 1.28;
  letter-spacing: -0.035em;
  font-weight: 850;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.quote-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(247, 169, 40, 0.22), transparent 28%),
    var(--surface-strong);
  color: #fff;
}

.quote-grid {
  align-items: center;
}

.quote-copy .section-kicker {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--accent);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.quote-note strong {
  color: var(--accent);
}

.quote-note span {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.form-microcopy {
  margin: 0;
  color: var(--muted);
  font-weight: 730;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: #433c35;
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(247, 169, 40, 0.88);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(247, 169, 40, 0.15);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(21, 19, 17, 0.05);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}

.faq-item button strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(247, 169, 40, 0.16);
  color: var(--brand-dark);
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] strong {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 24px 22px;
}

.faq-panel p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 112px;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 74px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 207, 115, 0.64), transparent 26%),
    linear-gradient(135deg, #fff, #fff1d3 60%, #f8ba4a);
  box-shadow: var(--shadow-md);
}

.final-cta-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 50%;
}

.final-cta-card h2,
.final-cta-card p,
.final-cta-card a,
.final-cta-card span {
  position: relative;
  z-index: 1;
}

.final-cta-card p {
  max-width: 650px;
}

.site-footer {
  padding: 42px 0;
  background: #100f0e;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.52);
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer nav a {
  font-weight: 800;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--brand);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .facilities-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .section-intro {
    position: static;
  }

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 840px) {
  .section-pad {
    padding: 84px 0;
  }

  .nav-shell {
    border-radius: 26px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 86px 20px auto 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(21, 19, 17, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(2.45rem, 10.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .hero-proof,
  .stats-grid,
  .feature-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

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

  .dashboard-card {
    inset: 28px 0 34px;
  }

  .handoff-card {
    right: 12px;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  h1 {
    font-size: clamp(2.25rem, 9vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.028em;
  }

  h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.026em;
  }

  .brand-text small {
    display: none;
  }

  .nav-shell {
    padding-left: 12px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .stats-grid,
  .feature-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .dashboard-card {
    padding: 16px;
    border-radius: 28px;
  }

  .dashboard-metrics,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .pipeline {
    gap: 10px;
    align-items: stretch;
  }

  .pipeline-line {
    width: 2px;
    height: 20px;
    justify-self: center;
  }

  .pipeline-step {
    min-width: 0;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .capacity-card {
    position: relative;
    inset: auto !important;
    margin: 24px auto;
  }

  .facility-map {
    min-height: auto;
    padding: 18px 0;
  }

  .location-pin {
    display: none;
  }

  blockquote {
    font-size: 1.18rem;
  }

  .final-cta {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Brand imagery update: uses Stallion page assets as requested */
.brand {
  gap: 12px;
}

.brand-logo {
  width: clamp(128px, 13vw, 168px);
  height: auto;
  object-fit: contain;
}

.brand-service {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(247, 169, 40, 0.15);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-photo-stack {
  position: relative;
  min-height: 620px;
}

.hero-photo-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-photo-card img,
.feature-media img,
.facility-photo-wrap img,
.testimonial-media img,
.quote-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  inset: 18px 72px 18px 28px;
  transform: rotate(-2deg);
}

.hero-photo-secondary {
  right: 0;
  bottom: 24px;
  width: 42%;
  height: 44%;
  border-radius: 30px;
  transform: rotate(4deg);
}

.hero-dashboard-overlay {
  position: absolute;
  top: 70px;
  right: 14px;
  z-index: 4;
  width: min(310px, 58%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(21, 19, 17, 0.18);
}

.mini-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mini-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 19, 17, 0.2);
}

.mini-topbar b {
  margin-left: 4px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-row strong {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mini-row span,
.mini-status span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.mini-pipeline i {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.mini-pipeline i:nth-child(4) {
  background: rgba(21, 19, 17, 0.13);
}

.mini-status {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(247, 169, 40, 0.15);
}

.hero-badge-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(21, 19, 17, 0.9);
  color: #fff;
  box-shadow: 0 18px 45px rgba(21, 19, 17, 0.2);
}

.hero-badge-card strong {
  color: var(--brand);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-badge-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-fast {
  left: 0;
  bottom: 120px;
}

.badge-accurate {
  right: 42px;
  bottom: 0;
}

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-card h3,
.feature-card p {
  padding-inline: 28px;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  padding-bottom: 28px;
}

.feature-media {
  height: 178px;
  overflow: hidden;
  border-radius: 28px 28px 18px 18px;
  background: #f4ead8;
}

.feature-card-accent .feature-media {
  opacity: 0.85;
}

.facility-map {
  background: #151311;
}

.facility-photo-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}

.facility-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 19, 17, 0.86), rgba(21, 19, 17, 0.2) 55%, rgba(247, 169, 40, 0.28));
}

.step-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: -12px 0 22px;
  border-radius: 24px;
  background: rgba(247, 169, 40, 0.14);
}

.step-icon img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.testimonial-card {
  overflow: hidden;
}

.testimonial-media {
  height: 170px;
  margin: -28px -28px 22px;
  overflow: hidden;
  background: #f2eadf;
}

.quote-image-panel {
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.quote-image-panel img {
  display: block;
  aspect-ratio: 16 / 10;
}

@media (max-width: 1080px) {
  .hero-photo-stack {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 840px) {
  .brand-logo {
    width: 132px;
  }

  .brand-service {
    font-size: 0.64rem;
  }

  .hero-photo-stack {
    min-height: 570px;
  }

  .hero-photo-main {
    inset: 22px 52px 38px 10px;
  }

  .hero-dashboard-overlay {
    right: 0;
    width: min(300px, 62%);
  }
}

@media (max-width: 620px) {
  .brand-service {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo-stack {
    min-height: 560px;
  }

  .hero-photo-main {
    inset: 0 0 150px 0;
    transform: none;
    border-radius: 30px;
  }

  .hero-photo-secondary {
    display: none;
  }

  .hero-dashboard-overlay {
    top: auto;
    right: 12px;
    bottom: 86px;
    width: calc(100% - 24px);
  }

  .hero-badge-card {
    position: absolute;
    padding: 12px 14px;
  }

  .badge-fast {
    left: 12px;
    bottom: 16px;
  }

  .badge-accurate {
    right: 12px;
    bottom: 16px;
  }

  .facility-photo-wrap {
    position: relative;
    height: 330px;
    display: block;
    opacity: 0.78;
    border-radius: 28px;
    overflow: hidden;
  }

  .facility-map {
    padding: 16px;
  }

  .capacity-card {
    margin: 14px auto 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .step-icon {
    margin-top: -8px;
  }

  .testimonial-media {
    height: 210px;
  }
}


/* Fix: make the footer logo area clearly visible on the dark footer */
.site-footer .footer-brand {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.site-footer .footer-brand .brand-logo {
  width: 150px;
  filter: none;
}

.site-footer .footer-brand .brand-service {
  background: rgba(247, 169, 40, 0.18);
  color: var(--brand-dark);
}

.site-footer > .container > div:first-child {
  display: grid;
  gap: 14px;
}

.site-footer p {
  margin-top: 0;
}

@media (max-width: 620px) {
  .site-footer .footer-brand .brand-logo {
    width: 136px;
  }
}

/* Professional motion layer: subtle, premium, and accessibility-safe */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes softFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg)); }
  50% { transform: translate3d(0, -10px, 0) rotate(var(--float-rotate, 0deg)); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 6px rgba(46, 155, 98, 0.13); }
  50% { box-shadow: 0 0 0 11px rgba(46, 155, 98, 0.04); }
}

@keyframes statRise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lineFlow {
  from { background-position: 0 0; }
  to { background-position: 220px 0; }
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(247, 169, 40, 0.18); }
  50% { box-shadow: 0 0 0 18px rgba(247, 169, 40, 0.04); }
}

.status-dot {
  animation: pulseDot 2.8s ease-in-out infinite;
}

.hero-photo-main {
  --float-rotate: -2deg;
}

.hero-photo-secondary {
  --float-rotate: 4deg;
  animation-delay: 0.7s;
}

.hero-visual.is-visible .hero-photo-main,
.hero-visual.is-visible .hero-photo-secondary {
  animation-name: softFloat;
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-visual.is-visible .hero-dashboard-overlay {
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.hero-visual.is-visible .hero-badge-card {
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.hero-visual.is-visible .badge-accurate {
  animation-delay: 0.65s;
}

.mini-pipeline i {
  background-size: 220% 100%;
}

.hero-visual.is-visible .mini-pipeline i:not(:nth-child(4)) {
  animation: lineFlow 2.8s linear infinite;
}

.btn,
.feature-card,
.timeline-step,
.testimonial-card,
.faq-item,
.capacity-card,
.lead-form,
.final-cta-card {
  will-change: transform;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -60%;
  width: 52%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  opacity: 0;
  transition: left 0.7s var(--ease-premium), opacity 0.35s ease;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  left: 115%;
  opacity: 1;
}

.feature-card,
.timeline-step,
.testimonial-card,
.faq-item,
.capacity-card,
.lead-form {
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.feature-card:hover,
.timeline-step:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 169, 40, 0.24);
  box-shadow: 0 28px 70px rgba(21, 19, 17, 0.12);
}

.feature-media img,
.testimonial-media img,
.quote-image-panel img,
.facility-photo-wrap img {
  transition: transform 0.65s var(--ease-premium), filter 0.65s ease;
}

.feature-card:hover .feature-media img,
.testimonial-card:hover .testimonial-media img,
.quote-image-panel:hover img {
  transform: scale(1.045);
}

.facility-map:hover .facility-photo-wrap img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.location-pin {
  animation: pinPulse 2.9s ease-in-out infinite;
}

.pin-two {
  animation-delay: 0.55s;
}

.timeline::before {
  background: linear-gradient(90deg, transparent, rgba(247, 169, 40, 0.12), rgba(21, 19, 17, 0.2), rgba(247, 169, 40, 0.12), transparent);
  background-size: 220px 100%;
}

.timeline.is-visible::before {
  animation: lineFlow 4.5s linear infinite;
}

.stats-grid article {
  opacity: 0;
}

.stats-grid.is-visible article {
  animation: statRise 0.7s var(--ease-premium) forwards;
}

.stats-grid.is-visible article:nth-child(1),
.feature-grid .reveal:nth-child(1),
.testimonial-grid .reveal:nth-child(1) { animation-delay: 0.02s; transition-delay: 0.02s; }

.stats-grid.is-visible article:nth-child(2),
.feature-grid .reveal:nth-child(2),
.testimonial-grid .reveal:nth-child(2) { animation-delay: 0.08s; transition-delay: 0.08s; }

.stats-grid.is-visible article:nth-child(3),
.feature-grid .reveal:nth-child(3),
.testimonial-grid .reveal:nth-child(3) { animation-delay: 0.14s; transition-delay: 0.14s; }

.stats-grid.is-visible article:nth-child(4),
.feature-grid .reveal:nth-child(4) { animation-delay: 0.20s; transition-delay: 0.20s; }

.stats-grid.is-visible article:nth-child(5),
.feature-grid .reveal:nth-child(5) { animation-delay: 0.26s; transition-delay: 0.26s; }

.stats-grid.is-visible article:nth-child(6),
.feature-grid .reveal:nth-child(6) { animation-delay: 0.32s; transition-delay: 0.32s; }

.reveal {
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}

.reveal.is-visible {
  transform: translateY(0);
}

.section-heading.reveal.is-visible,
.section-intro.reveal.is-visible,
.hero-copy.reveal.is-visible {
  transition-duration: 0.9s;
}

@media (hover: none) {
  .feature-card:hover,
  .timeline-step:hover,
  .testimonial-card:hover,
  .faq-item:hover {
    transform: none;
  }

  .feature-card:hover .feature-media img,
  .testimonial-card:hover .testimonial-media img,
  .quote-image-panel:hover img,
  .facility-map:hover .facility-photo-wrap img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-grid article {
    opacity: 1;
  }

  .btn,
  .feature-card,
  .timeline-step,
  .testimonial-card,
  .faq-item,
  .capacity-card,
  .lead-form,
  .final-cta-card {
    will-change: auto;
  }
}
