/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #ececec;
  --surface: #ffffff;
  --text: #111111;
  --muted: #444444;
  --dark: #070707;
  --accent: #f15a24;
  --max-width: 1360px;
}


/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 2rem, var(--max-width)); margin: 0 auto; }


/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.loadout-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-wrap-loadout {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand-logo-full { height: 62px; width: auto; }

.site-nav-loadout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}
.site-nav-loadout a {
  color: #f4f4f4;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 1.05rem;
  position: relative;
}
.site-nav-loadout a.is-active::after,
.site-nav-loadout a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7rem;
  height: 3px;
  background: var(--accent);
}

.nav-actions-loadout {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phone-stack {
  display: grid;
  gap: 0.15rem;
  color: #fff;
}
.phone-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}
.phone-top svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}
.phone-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}


/* --------------------------------------------------------------------------
   Buttons / Shared CTA Styles
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-loadout {
  min-height: 54px;
  padding: 0 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 1.15rem;
}


/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-loadout {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #090909;
}
.hero-loadout-media,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo {
  object-fit: cover;
  object-position: 82% center;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,0.97) 0%, rgba(4,4,4,0.9) 24%, rgba(4,4,4,0.58) 48%, rgba(4,4,4,0.14) 72%, rgba(4,4,4,0) 100%);
}
.hero-ghost {
  position: absolute;
  left: 27%;
  top: 8%;
  width: min(49vw, 710px);
  opacity: 0.06;
  filter: blur(2px);
  pointer-events: none;
}
.hero-loadout-inner {
  position: relative;
  z-index: 2;
  min-height: 900px;
  display: flex;
  align-items: center;
}
.hero-copy-loadout {
  max-width: 820px;
  padding: 2rem 0 3rem;
}
.hero-copy-loadout h1 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 8.7vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero-copy-loadout h1 span { display: block; }
.hero-copy-loadout h1 .accent { color: var(--accent); }

.hero-support-loadout {
  max-width: 640px;
  margin: 1.25rem 0 1rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.28;
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 0.95rem 0 1.65rem;
}
.proof-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.proof-pill svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
  flex: none;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.05rem;
}
.btn-call-loadout,
.btn-outline-loadout {
  min-height: 80px;
  padding: 0 1.8rem;
  min-width: 320px;
  font-size: 1.62rem;
  border-radius: 4px;
}
.btn-call-loadout {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 25px rgba(241, 90, 36, 0.35);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-call-loadout svg,
.btn-outline-loadout svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.btn-outline-loadout {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  opacity: 0.85;
}
.check-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(40, 196, 91, 0.16);
  color: #5eff8f;
  font-weight: 900;
}


/* --------------------------------------------------------------------------
   Items / Reviews Strip - Base Styles
   -------------------------------------------------------------------------- */
.items-strip-loadout {
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.items-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem 0;
}
.items-strip-title p {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.items-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 1.2rem;
}
.item-take { text-align: center; color: #111; }
.item-take svg {
  width: 54px;
  height: 54px;
  stroke: #171717;
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto 0.8rem;
}
.item-take span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.05;
}
.items-review {
  min-width: 270px;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 2rem;
  display: grid;
  align-content: center;
  gap: 0.45rem;
}
.stars {
  color: var(--accent);
  font-size: 2rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.items-review strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
}
.items-review span {
  color: #333;
  font-size: 1rem;
}
.google-word {
  color: #4285F4;
  font-size: 2rem !important;
  font-weight: 700;
  letter-spacing: -0.05em;
}


/* --------------------------------------------------------------------------
   Trust Band
   -------------------------------------------------------------------------- */
.trust-band-loadout {
  background: #050505;
  color: #fff;
}
.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  padding: 2rem 0;
}
.trust-band-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-band-card svg {
  width: 58px;
  height: 58px;
  fill: var(--accent);
  flex: none;
}
.trust-band-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem;
  text-transform: uppercase;
  line-height: 1;
}
.trust-band-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.35;
}


/* --------------------------------------------------------------------------
   Shared Sections / Process / Quote
   -------------------------------------------------------------------------- */
.section { padding: 5rem 0; }
.section-dark {
  background: linear-gradient(180deg, #111, #1b1b1b);
  color: #f3f3f3;
}
.section-light { background: linear-gradient(180deg, #ffffff, #fbfbfb); }
.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading h2,
.quote-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,0.78); }
.speed-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.speed-step {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.step-number {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.speed-step h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.speed-step p { margin: 0; color: rgba(255,255,255,0.82); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.quote-copy p:last-child { color: #555; }
.quote-options {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.quote-options div {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.quote-options div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.quote-label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.quote-options a, .quote-options p {
  margin: 0;
  color: #111;
  font-weight: 700;
}
.quote-form {
  background: #fff;
  border: 2px solid rgba(17,17,17,0.08);
  border-radius: 16px;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}
.quote-form input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(17,17,17,0.14);
  border-radius: 8px;
  font: inherit;
}
.form-note { margin: 0; color: #555; }
.btn-full {
  min-height: 58px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 2rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-wrap p { color: rgba(255,255,255,0.75); margin: 0.25rem 0 0; }
.footer-meta { text-align: right; }


/* --------------------------------------------------------------------------
   Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .items-strip-inner { grid-template-columns: 1fr; }
  .items-review {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}
@media (max-width: 980px) {
  .nav-wrap-loadout {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }
  .site-nav-loadout {
    order: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .nav-actions-loadout { justify-content: space-between; }
  .hero-loadout,
  .hero-loadout-inner { min-height: 760px; }
  .hero-ghost {
    left: 20%;
    width: min(58vw, 620px);
  }
  .items-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-band-inner,
  .quote-grid,
  .speed-steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .brand-logo-full { height: 52px; }
  .phone-stack { display: none; }
  .btn-loadout { width: 100%; }
  .hero-copy-loadout h1 {
    font-size: clamp(3.6rem, 14vw, 5.6rem);
  }
  .hero-support-loadout { font-size: 1.08rem; }
  .proof-pill { width: 100%; }
  .hero-cta-row { flex-direction: column; }
  .btn-call-loadout,
  .btn-outline-loadout {
    width: 100%;
    min-width: 0;
    min-height: 66px;
    font-size: 1.3rem;
  }
  .hero-loadout,
  .hero-loadout-inner {
    min-height: 700px;
  }
  .hero-loadout-inner { align-items: flex-end; }
  .hero-ghost {
    left: 12%;
    top: 16%;
    width: 72vw;
    opacity: 0.08;
  }
  .items-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-wrap { flex-direction: column; }
  .footer-meta { text-align: left; }
}


.btn-call-loadout {
  box-shadow: 0 8px 25px rgba(241, 90, 36, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call-loadout:hover {
  transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   Approved Upgrade Passes / Targeted Overrides
   Keep these grouped at the end to preserve cascade behavior.
   -------------------------------------------------------------------------- */

/* PASS — Conversion friction removal + intent reinforcement */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.btn-call-loadout {
  transform: scale(1.05);
  transform-origin: left center;
}

.btn-call-loadout:hover {
  transform: scale(1.07) translateY(-2px);
}

@media (max-width: 720px) {
  .hero-urgency {
    font-size: 0.95rem;
  }

  .btn-call-loadout,
  .btn-call-loadout:hover {
    transform: none;
  }
}

/* PASS J — strip consolidation source of truth */
.items-strip-loadout {
  background: #f0f0f0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.items-strip-loadout .container {
  max-width: 1200px;
  margin: 0 auto;
}

.items-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 1.15rem 0 1.1rem;
}

.items-strip-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.items-strip-title h2 {
  margin: 0 0 0.25rem;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: none;
}

.items-strip-title p {
  margin: 0;
  color: #5b5b5b;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.items-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 132px));
  justify-content: center;
  align-items: start;
  justify-items: center;
  gap: 0.95rem 1.7rem;
  width: 100%;
}

.item-take {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 96px;
  width: 100%;
}

.item-take svg {
  width: 48px;
  height: 48px;
  stroke: #171717;
  fill: none;
  stroke-width: 1.6;
  margin: 0 0 0.28rem;
  flex: 0 0 auto;
}

.item-take span {
  display: block;
  margin: 0;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 132px;
}

.items-review {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.15rem;
  width: auto;
  min-width: 0;
  margin-top: 0.15rem;
  padding: 0;
  border: 0;
  text-align: center;
}

.stars {
  color: var(--accent);
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0 0 0.05rem;
}

.items-review strong {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.items-review span {
  margin: 0;
  color: #333;
  font-size: 0.88rem;
  line-height: 1.15;
}

.google-word {
  color: #4285F4;
  font-size: 1.6rem !important;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0.12rem !important;
}

.local-trust {
  display: block;
  margin-top: 0.2rem;
  color: #333;
  font-size: 0.82rem !important;
  font-weight: 600;
  line-height: 1.15;
  max-width: 290px;
}

@media (max-width: 1200px) {
  .items-strip-inner {
    padding: 1rem 0 1rem;
    gap: 1rem;
  }

  .items-strip-grid {
    grid-template-columns: repeat(3, minmax(120px, 150px));
    gap: 1rem 1.8rem;
  }

  .item-take {
    min-height: 92px;
  }

  .items-review {
    margin-top: 0.1rem;
  }
}

@media (max-width: 720px) {
  .items-strip-inner {
    padding: 0.95rem 0;
    gap: 0.9rem;
  }

  .items-strip-title h2 {
    font-size: 1.04rem;
  }

  .items-strip-title p {
    font-size: 0.84rem;
  }

  .items-strip-grid {
    grid-template-columns: repeat(2, minmax(118px, 145px));
    gap: 0.95rem 1.3rem;
  }

  .item-take {
    min-height: 86px;
  }

  .item-take svg {
    width: 44px;
    height: 44px;
    margin-bottom: 0.2rem;
  }

  .item-take span {
    font-size: 0.88rem;
    max-width: 130px;
  }

  .stars {
    font-size: 1.55rem;
  }

  .google-word {
    font-size: 1.45rem !important;
  }

  .local-trust {
    font-size: 0.79rem !important;
  }
}


/* PASS K — conversion reinforcement */
.strip-subline {
  margin-top: 0.38rem;
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
  line-height: 1.15;
}

.strip-cta a {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  line-height: 1;
}

.strip-cta a:hover {
  text-decoration: underline;
}


/* PASS L — process conversion upgrade */
.process-subline {
  margin: -0.2rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .process-subline {
    font-size: 0.92rem;
  }
}



/* --------------------------------------------------------------------------
   Thank You Page
   -------------------------------------------------------------------------- */
.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.thank-you-card {
  width: min(100% - 2rem, 760px);
  background: #fff;
  border: 1px solid rgba(24, 33, 30, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(16, 24, 20, 0.12);
  padding: 2rem;
}

.thank-you-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}


@media (max-width: 760px) {
  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   What We Take — Premium Real Pickup Gallery
   -------------------------------------------------------------------------- */
.what-we-take-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(241, 90, 36, 0.16), transparent 34rem),
    linear-gradient(180deg, #f7f5f1 0%, #ebe7df 100%);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.what-we-take-premium::before {
  content: "";
  position: absolute;
  inset: auto -8rem -11rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}

.what-we-take-premium .container {
  max-width: 1240px;
}

.what-we-take-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  align-items: stretch;
  gap: 1.5rem;
  padding: 4.6rem 0;
  text-align: left;
}

.what-we-take-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 2rem;
  width: 100%;
  margin: 0;
  text-align: left;
}

.what-we-take-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -1.25rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.what-we-take-heading h2 {
  margin: 0;
  color: #101010;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.what-we-take-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 0.35rem;
  color: #343434;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.55;
}

.loadout-flow {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 0.72rem 1rem;
  color: #191919;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.loadout-flow strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.take-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(305px, 380px);
  grid-template-columns: none;
  justify-content: start;
  justify-items: stretch;
  align-items: stretch;
  gap: 1.15rem;
  width: 100%;
  margin-top: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 0.35rem 0 1rem;
}

.take-gallery::-webkit-scrollbar {
  height: 10px;
}

.take-gallery::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
}

.take-gallery::-webkit-scrollbar-thumb {
  background: rgba(241, 90, 36, 0.9);
  border-radius: 999px;
}

.take-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 26px;
  background: #111;
  box-shadow: 0 22px 48px rgba(0,0,0,0.16);
  scroll-snap-align: start;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.take-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 90, 36, 0.46);
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
}

.take-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

.take-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.48) 100%);
  pointer-events: none;
}

.take-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.take-card:hover .take-card-image img {
  transform: scale(1.045);
}

.take-card-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.48rem 0.72rem;
  text-transform: uppercase;
}

.take-card-pickup .take-card-badge {
  background: rgba(241, 90, 36, 0.92);
  border-color: rgba(255,255,255,0.28);
}

.take-card-copy {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-height: 160px;
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  padding: 1.25rem 1.2rem 1.35rem;
}

.take-card-copy h3 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.take-card-copy p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.what-we-take-cta {
  display: grid;
  grid-template-columns: auto minmax(150px, 0.36fr) minmax(260px, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: 1rem 1.25rem;
  width: 100%;
  margin: 0.35rem 0 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
  padding: 1rem 1.15rem;
  text-align: left;
}

.what-we-take-cta .stars {
  margin: 0;
  color: var(--accent);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.what-we-take-cta strong {
  margin: 0;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.what-we-take-cta span {
  margin: 0;
  color: #363636;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.what-we-take-cta .strip-subline {
  grid-column: 2 / 4;
  margin: -0.45rem 0 0;
  color: #555;
  font-size: 0.82rem;
}

.what-we-take-cta .strip-cta {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
}

.what-we-take-cta .strip-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.8rem 1.15rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.what-we-take-cta .strip-cta a:hover {
  background: #d94616;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .what-we-take-inner {
    padding: 3.8rem 0;
  }

  .what-we-take-heading {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .what-we-take-heading .eyebrow {
    margin: 0;
  }

  .what-we-take-heading p:not(.eyebrow) {
    max-width: 720px;
  }

  .take-gallery {
    grid-auto-columns: minmax(292px, 72vw);
  }

  .what-we-take-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .what-we-take-cta .strip-subline,
  .what-we-take-cta .strip-cta {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .what-we-take-inner {
    padding: 3.2rem 0;
    gap: 1.15rem;
  }

  .what-we-take-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.35rem);
  }

  .what-we-take-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .loadout-flow {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .take-gallery {
    grid-auto-columns: minmax(276px, 84vw);
    gap: 0.9rem;
    padding-bottom: 0.85rem;
  }

  .take-card {
    border-radius: 22px;
  }

  .take-card-copy {
    min-height: 150px;
    padding: 1.1rem;
  }

  .take-card-copy h3 {
    font-size: 1.55rem;
  }

  .take-card-copy p {
    font-size: 0.91rem;
  }

  .what-we-take-cta {
    padding: 1rem;
  }

  .what-we-take-cta .strip-cta,
  .what-we-take-cta .strip-cta a {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Section Spacing + Sticky Navigation Anchor Offset Pass
   -------------------------------------------------------------------------- */
:root {
  --nav-anchor-offset: 128px;
}

html {
  scroll-padding-top: var(--nav-anchor-offset);
}

#items-strip,
#process,
#reviews-strip,
#quote {
  scroll-margin-top: var(--nav-anchor-offset);
}

.what-we-take-inner {
  padding-top: 5.8rem;
  padding-bottom: 5.8rem;
}

.trust-band-inner {
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
}

.section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

@media (max-width: 980px) {
  :root {
    --nav-anchor-offset: 170px;
  }

  .what-we-take-inner {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .trust-band-inner {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }

  .section {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-anchor-offset: 150px;
  }

  .what-we-take-inner {
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }

  .trust-band-inner {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .section {
    padding-top: 4.65rem;
    padding-bottom: 4.65rem;
  }
}

/* --------------------------------------------------------------------------
   Hero to What We Take Spacing Fix
   -------------------------------------------------------------------------- */
#items-strip {
  scroll-margin-top: calc(var(--nav-anchor-offset) + 48px);
}

.what-we-take-inner {
  padding-top: clamp(8rem, 8vw, 9.75rem);
}

@media (max-width: 980px) {
  #items-strip {
    scroll-margin-top: calc(var(--nav-anchor-offset) + 32px);
  }

  .what-we-take-inner {
    padding-top: 6.4rem;
  }
}

@media (max-width: 720px) {
  #items-strip {
    scroll-margin-top: calc(var(--nav-anchor-offset) + 24px);
  }

  .what-we-take-inner {
    padding-top: 5.35rem;
  }
}

/* --------------------------------------------------------------------------
   How It Works — hierarchy + conversion pass
   -------------------------------------------------------------------------- */
.process-heading {
  max-width: 840px;
  margin-bottom: 2.6rem;
}

.process-subline {
  max-width: 640px;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.45;
}

.speed-steps {
  gap: 1.25rem;
}

.speed-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 260px;
  overflow: hidden;
  padding: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.step-number {
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  margin: 0;
  color: rgba(255, 122, 24, 0.22);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 8vw, 6.35rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.78;
  pointer-events: none;
}

.speed-step-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  max-width: 95%;
  padding-top: 3.1rem;
}

.speed-step h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.speed-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.process-action {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 2.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
}

.process-action p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.45;
}

.process-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.process-cta-row .btn-call-loadout,
.process-cta-row .btn-outline-loadout {
  min-width: 168px;
  min-height: 52px;
}

.process-action span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .speed-step {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .process-heading {
    margin-bottom: 2rem;
  }

  .process-subline {
    font-size: 0.98rem;
  }

  .speed-steps {
    gap: 1rem;
  }

  .speed-step {
    min-height: 0;
    padding: 1.55rem;
  }

  .step-number {
    top: 0.55rem;
    right: 0.8rem;
    font-size: 4.3rem;
  }

  .speed-step-copy {
    max-width: 100%;
    padding-top: 2.45rem;
  }

  .process-action {
    margin-top: 2rem;
    padding-top: 1.8rem;
  }

  .process-cta-row,
  .process-cta-row .btn-call-loadout,
  .process-cta-row .btn-outline-loadout {
    width: 100%;
  }
}


/* --------------------------------------------------------------------------
   Contact Section — conversion pass
   -------------------------------------------------------------------------- */
.quote-section {
  position: relative;
}

.quote-grid {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.quote-copy h2 {
  max-width: 760px;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #444;
  font-size: 1.08rem;
  line-height: 1.55;
}

.quote-options {
  margin-top: 2rem;
}

.quote-options div {
  padding: 1rem 0;
}

.quote-label {
  letter-spacing: 0.08em;
}

.quote-form {
  position: relative;
  gap: 1.05rem;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.11);
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.quote-form-header {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.quote-form-header span {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.quote-form-header p {
  margin: 0;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.45;
}

.quote-form input {
  border-color: rgba(17, 17, 17, 0.16);
  background: #fbfbfb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-form input:focus {
  border-color: rgba(255, 122, 24, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.13);
  outline: none;
}

.form-note {
  color: #444;
  font-weight: 700;
  line-height: 1.45;
}

.btn-full {
  min-height: 62px;
  font-size: 1.22rem;
  box-shadow: 0 18px 44px rgba(255, 122, 24, 0.22);
}

.quote-callout {
  margin: -0.2rem 0 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.quote-callout a {
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.quote-callout a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .quote-grid {
    gap: 2rem;
  }

  .quote-form {
    padding: 1.35rem;
  }

  .quote-form-header {
    padding-bottom: 0.8rem;
  }

  .btn-full {
    min-height: 58px;
    font-size: 1.1rem;
  }
}




/* --------------------------------------------------------------------------
   Thin Two-Layer Floating Trust Strip — corrected replacement
   -------------------------------------------------------------------------- */






/* PORT EXACT DEMO STYLE 1 */
.panel {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 24px 70px rgba(34, 28, 20, 0.10);
}

.stars { color: #f05a24; letter-spacing: .12em; }

/* STYLE 1 */
.single-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 20px;
  margin-top: 2rem;
}

.single-ticker .left {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 950;
  text-transform: uppercase;
}

.single-ticker .window {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
}

.single-ticker .window:before,
.single-ticker .window:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.single-ticker .window:before { left: 0; background: linear-gradient(90deg, rgba(255,255,255,.95), transparent); }
.single-ticker .window:after { right: 0; background: linear-gradient(270deg, rgba(255,255,255,.95), transparent); }

.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: moveLeft 36s linear infinite;
}

.pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 22px rgba(0,0,0,.055);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.pill:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #f05a24;
}

.quote-btn {
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  background: #f05a24;
  color: white;
  padding: 13px 18px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

@keyframes moveLeft { to { transform: translateX(-50%); } }

.panel:hover .ticker-track { animation-play-state: paused; }

@media (max-width: 820px) {
  .single-ticker { grid-template-columns: 1fr; }
  .quote-btn { width: 100%; text-align: center; }
}


/* SAFE STYLE 1 MICRO POLISH — SCOPED ONLY */
#reviews-strip.single-ticker {
  box-shadow:
    0 22px 62px rgba(34, 28, 20, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

#reviews-strip.single-ticker .ticker-track {
  gap: 10px;
  animation-duration: 42s;
  will-change: transform;
}

#reviews-strip.single-ticker .pill {
  border-color: rgba(0, 0, 0, 0.065);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: rgba(18, 18, 18, 0.88);
  font-weight: 850;
}

#reviews-strip.single-ticker .pill::before {
  box-shadow: 0 0 0 3px rgba(240, 90, 36, 0.08);
}

#reviews-strip.single-ticker .quote-btn {
  box-shadow:
    0 14px 28px rgba(240, 90, 36, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

#reviews-strip.single-ticker .quote-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(240, 90, 36, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  #reviews-strip.single-ticker .quote-btn {
    transition: none;
  }

  #reviews-strip.single-ticker .quote-btn:hover {
    transform: none;
  }
}


/* HIGH CONVERSION COPY PASS SUPPORT STYLES */
.hero-action-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

.take-card-micro {
  margin-top: 0.55rem;
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-local-line {
  margin-top: 0.5rem;
  font-weight: 850;
}


/* EXECUTE FIXES — CTA COPY SUPPORT */
.quote-trust-stack {
  display: grid;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
}

.quote-trust-stack p {
  margin: 0;
  color: #111;
  font-weight: 800;
  line-height: 1.35;
}

.quote-urgency {
  margin: 1rem 0 0;
  color: #555;
  font-size: 0.98rem;
  font-weight: 800;
}

/* ==========================================
   REVIEW TICKER — RESTORE MOVEMENT (SAFE FIX)
   ========================================== */

.single-ticker {
  overflow: hidden;
  position: relative;
}

.single-ticker .window {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

.ticker-track .pill {
  white-space: nowrap;
  flex: 0 0 auto;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .single-ticker:hover .ticker-track,
  .ticker-track:hover {
    animation-play-state: paused;
  }
}

/* =========================
   JC WEBSITES DEMO RETURN
========================= */
.jc-demo-return {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.82);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.jc-demo-return:hover,
.jc-demo-return:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(10, 10, 12, 0.16);
  color: #111111;
  outline: none;
}

@media (max-width: 640px) {
  .jc-demo-return {
    top: 12px;
    left: 12px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}


/* --------------------------------------------------------------------------
   Mobile Refinement Pass — LoadOut source-of-truth responsive stabilization
   Scope: mobile-only visual/responsive refinement. No layout redesign, no
   section reordering, no HTML/JS dependency changes.
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .nav-wrap-loadout {
    min-height: 0;
    gap: 0.9rem;
    padding: 0.85rem 0 0.95rem;
  }

  .site-nav-loadout {
    gap: 1rem 1.35rem;
  }

  .site-nav-loadout a {
    font-size: 0.98rem;
  }

  .nav-actions-loadout {
    gap: 0.75rem;
  }

  .hero-loadout,
  .hero-loadout-inner {
    min-height: 700px;
  }

  .hero-copy-loadout {
    max-width: 720px;
    padding: 3.2rem 0 2.7rem;
  }

  .hero-gradient {
    background:
      linear-gradient(90deg, rgba(4,4,4,0.98) 0%, rgba(4,4,4,0.91) 34%, rgba(4,4,4,0.62) 68%, rgba(4,4,4,0.18) 100%);
  }

  .hero-support-loadout {
    max-width: 560px;
  }

  .trust-band-card {
    align-items: center;
  }

  .single-ticker {
    gap: 0.85rem;
    padding: 1rem;
  }

  .single-ticker .left {
    white-space: normal;
    line-height: 1.15;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-anchor-offset: 124px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .loadout-header {
    position: sticky;
  }

  .nav-wrap-loadout {
    grid-template-columns: minmax(0, auto) minmax(116px, 1fr);
    gap: 0.65rem 0.75rem;
    min-height: 0;
    padding: 0.62rem 0 0.72rem;
  }

  .brand-logo-full {
    height: 44px;
  }

  .nav-actions-loadout {
    justify-content: end;
    min-width: 0;
  }

  .nav-actions-loadout .btn-loadout {
    width: auto;
    min-height: 42px;
    padding: 0 0.85rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .site-nav-loadout {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.12rem 0 0.16rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav-loadout::-webkit-scrollbar {
    display: none;
  }

  .site-nav-loadout a {
    flex: 0 0 auto;
    font-size: 0.84rem;
    letter-spacing: 0.055em;
  }

  .site-nav-loadout a.is-active::after,
  .site-nav-loadout a:hover::after {
    bottom: -0.38rem;
    height: 2px;
  }

  .hero-loadout,
  .hero-loadout-inner {
    min-height: 660px;
  }

  .hero-loadout-inner {
    align-items: flex-end;
  }

  .hero-photo {
    object-position: 84% center;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(4,4,4,0.18) 0%, rgba(4,4,4,0.38) 28%, rgba(4,4,4,0.84) 66%, rgba(4,4,4,0.97) 100%),
      linear-gradient(90deg, rgba(4,4,4,0.76) 0%, rgba(4,4,4,0.5) 58%, rgba(4,4,4,0.18) 100%);
  }

  .hero-copy-loadout {
    max-width: 100%;
    padding: 12.25rem 0 2.35rem;
  }

  .hero-copy-loadout h1 {
    font-size: clamp(3.05rem, 13.2vw, 4.85rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .hero-support-loadout {
    margin: 1rem 0 0.85rem;
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin: 0.85rem 0 1.15rem;
  }

  .proof-pill {
    width: auto;
    gap: 0.62rem;
    font-size: 1.05rem;
  }

  .proof-pill svg {
    width: 25px;
    height: 25px;
  }

  .hero-cta-row {
    gap: 0.78rem;
    margin-bottom: 0.85rem;
  }

  .btn-call-loadout,
  .btn-outline-loadout {
    min-height: 58px;
    padding: 0 1rem;
    font-size: 1.12rem;
  }

  .btn-call-loadout svg,
  .btn-outline-loadout svg {
    width: 22px;
    height: 22px;
  }

  .hero-urgency,
  .hero-action-note {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .check-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
  }

  #items-strip {
    scroll-margin-top: calc(var(--nav-anchor-offset) + 14px);
  }

  .what-we-take-inner {
    padding-top: 3.35rem;
    padding-bottom: 3.55rem;
  }

  .what-we-take-heading {
    gap: 0.7rem;
  }

  .what-we-take-heading .eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.13em;
  }

  .what-we-take-heading h2 {
    font-size: clamp(2.45rem, 12.4vw, 3.8rem);
    line-height: 0.92;
  }

  .what-we-take-heading p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .loadout-flow {
    min-height: 42px;
    padding: 0.66rem 0.8rem;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
  }

  .take-gallery {
    grid-auto-columns: minmax(262px, 82vw);
    gap: 0.8rem;
    margin-top: 0.15rem;
    padding: 0.15rem 0 0.75rem;
  }

  .take-card {
    border-radius: 20px;
  }

  .take-card-image {
    aspect-ratio: 16 / 10.5;
  }

  .take-card-badge {
    left: 0.8rem;
    bottom: 0.8rem;
    min-height: 28px;
    font-size: 0.72rem;
    padding: 0.42rem 0.6rem;
  }

  .take-card-copy {
    min-height: 0;
    gap: 0.48rem;
    padding: 1rem;
  }

  .take-card-copy h3 {
    font-size: 1.42rem;
    line-height: 0.98;
  }

  .take-card-copy p,
  .take-card-micro {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .single-ticker {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.8rem;
    margin-top: 1.25rem;
    padding: 0.9rem;
    border-radius: 20px;
  }

  .single-ticker .left {
    align-items: flex-start;
    gap: 0.55rem;
    white-space: normal;
  }

  .single-ticker .left .stars {
    flex: 0 0 auto;
    font-size: 1.12rem;
    letter-spacing: 0.08em;
  }

  .single-ticker .left strong {
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .single-ticker .window {
    height: 38px;
  }

  .single-ticker .window::before,
  .single-ticker .window::after {
    width: 42px;
  }

  .ticker-track {
    gap: 0.55rem;
  }

  .pill {
    height: 31px;
    padding: 0 0.72rem;
    font-size: 0.76rem;
  }

  .quote-btn {
    min-height: 44px;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    line-height: 1;
  }

  .trust-band-inner {
    gap: 1.15rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .trust-band-card {
    gap: 0.82rem;
    align-items: flex-start;
  }

  .trust-band-card svg {
    width: 42px;
    height: 42px;
  }

  .trust-band-card h3 {
    font-size: 1.45rem;
  }

  .trust-band-card p {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-heading {
    margin-bottom: 1.65rem;
  }

  .section-heading h2,
  .quote-copy h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 0.98;
  }

  .process-heading {
    margin-bottom: 1.55rem;
  }

  .process-subline {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .speed-steps {
    gap: 0.85rem;
  }

  .speed-step {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .step-number {
    top: 0.48rem;
    right: 0.72rem;
    font-size: 3.65rem;
  }

  .speed-step-copy {
    gap: 0.58rem;
    padding-top: 2.1rem;
  }

  .speed-step h3 {
    font-size: 1.58rem;
    line-height: 0.96;
  }

  .speed-step p,
  .process-action p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .process-action {
    gap: 0.85rem;
    margin-top: 1.65rem;
    padding-top: 1.45rem;
  }

  .process-cta-row {
    gap: 0.72rem;
  }

  .process-cta-row .btn-call-loadout,
  .process-cta-row .btn-outline-loadout {
    min-height: 54px;
    font-size: 1.05rem;
  }

  .quote-grid {
    gap: 1.65rem;
  }

  .quote-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .quote-options {
    gap: 0.25rem;
    margin-top: 1.35rem;
  }

  .quote-options div {
    padding: 0.8rem 0;
  }

  .quote-form {
    gap: 0.88rem;
    padding: 1.08rem;
    border-radius: 14px;
  }

  .quote-form label {
    gap: 0.36rem;
    font-size: 0.94rem;
  }

  .quote-form input {
    min-height: 48px;
    padding: 0.82rem 0.9rem;
  }

  .quote-form-header span {
    font-size: 1rem;
  }

  .quote-form-header p,
  .form-note,
  .quote-callout,
  .quote-urgency {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .btn-full {
    min-height: 54px;
    font-size: 1.02rem;
  }

  .footer-wrap {
    gap: 0.75rem;
  }
}

@media (max-width: 420px) {
  .nav-wrap-loadout {
    grid-template-columns: 1fr;
  }

  .nav-actions-loadout {
    justify-content: stretch;
  }

  .nav-actions-loadout .btn-loadout {
    width: 100%;
  }

  .brand-logo-full {
    height: 42px;
  }

  .hero-loadout,
  .hero-loadout-inner {
    min-height: 650px;
  }

  .hero-photo {
    object-position: 86% center;
  }

  .hero-copy-loadout {
    padding-top: 11.25rem;
    padding-bottom: 2.15rem;
  }

  .hero-copy-loadout h1 {
    font-size: clamp(2.78rem, 14.5vw, 3.8rem);
  }

  .hero-support-loadout {
    font-size: 0.94rem;
  }

  .btn-call-loadout,
  .btn-outline-loadout {
    min-height: 54px;
    font-size: 1rem;
  }

  .what-we-take-inner {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .take-gallery {
    grid-auto-columns: minmax(248px, 86vw);
  }

  .section {
    padding-top: 3.35rem;
    padding-bottom: 3.35rem;
  }
}

/* --------------------------------------------------------------------------
   Interaction Polish Pass — subtle premium response layer
   -------------------------------------------------------------------------- */
:root {
  --motion-quick: 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-smooth: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --lift-subtle: translateY(-3px);
  --lift-button: translateY(-1px);
}

.btn-loadout,
.btn-call-loadout,
.btn-outline-loadout,
.btn-full,
.quote-btn,
.what-we-take-cta .strip-cta a,
.quote-callout a,
.jc-demo-return {
  transition:
    transform var(--motion-quick),
    box-shadow var(--motion-quick),
    background var(--motion-quick),
    border-color var(--motion-quick),
    color var(--motion-quick),
    opacity var(--motion-quick);
}

.take-card,
.trust-band-card,
.speed-step,
.quote-form,
#reviews-strip.single-ticker .pill {
  transition:
    transform var(--motion-smooth),
    box-shadow var(--motion-smooth),
    border-color var(--motion-smooth),
    background var(--motion-smooth);
}

.take-card-image img {
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-loadout:focus-visible,
.btn-call-loadout:focus-visible,
.btn-outline-loadout:focus-visible,
.btn-full:focus-visible,
.quote-btn:focus-visible,
.what-we-take-cta .strip-cta a:focus-visible,
.quote-callout a:focus-visible,
.site-nav-loadout a:focus-visible {
  outline: 3px solid rgba(241, 90, 36, 0.44);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-loadout:hover,
  .btn-full:hover,
  .quote-btn:hover,
  .what-we-take-cta .strip-cta a:hover {
    transform: var(--lift-button);
    box-shadow: 0 16px 32px rgba(241, 90, 36, 0.24);
  }

  .btn-call-loadout:hover {
    transform: scale(1.055) translateY(-1px);
    box-shadow: 0 14px 34px rgba(241, 90, 36, 0.34);
  }

  .btn-outline-loadout:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.07);
    opacity: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .take-card:hover {
    transform: var(--lift-subtle);
    border-color: rgba(241, 90, 36, 0.42);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.2);
  }

  .take-card:hover .take-card-image img {
    transform: scale(1.035);
  }

  .trust-band-card:hover {
    transform: translateY(-2px);
  }

  .speed-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 24, 0.24);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.052)),
      rgba(255, 255, 255, 0.062);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24);
  }

  .quote-form:hover,
  .quote-form:focus-within {
    border-color: rgba(255, 122, 24, 0.24);
    box-shadow: 0 28px 82px rgba(17, 17, 17, 0.13);
  }

  #reviews-strip.single-ticker .pill:hover {
    transform: translateY(-1px);
    border-color: rgba(241, 90, 36, 0.18);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }
}

@media (hover: none), (pointer: coarse) {
  .btn-loadout:active,
  .btn-call-loadout:active,
  .btn-outline-loadout:active,
  .btn-full:active,
  .quote-btn:active,
  .what-we-take-cta .strip-cta a:active {
    transform: scale(0.985);
  }

  .take-card:hover,
  .speed-step:hover,
  .trust-band-card:hover,
  #reviews-strip.single-ticker .pill:hover,
  .quote-form:hover {
    transform: none;
  }

  .take-card:hover .take-card-image img {
    transform: none;
  }
}

@media (max-width: 720px) {
  .btn-call-loadout:hover,
  .btn-outline-loadout:hover,
  .btn-loadout:hover,
  .btn-full:hover,
  .quote-btn:hover,
  .what-we-take-cta .strip-cta a:hover {
    box-shadow: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-loadout,
  .btn-call-loadout,
  .btn-outline-loadout,
  .btn-full,
  .quote-btn,
  .what-we-take-cta .strip-cta a,
  .quote-callout a,
  .jc-demo-return,
  .take-card,
  .take-card-image img,
  .trust-band-card,
  .speed-step,
  .quote-form,
  #reviews-strip.single-ticker .pill {
    transition: none;
  }

  .btn-loadout:hover,
  .btn-call-loadout:hover,
  .btn-outline-loadout:hover,
  .btn-full:hover,
  .quote-btn:hover,
  .what-we-take-cta .strip-cta a:hover,
  .take-card:hover,
  .trust-band-card:hover,
  .speed-step:hover,
  #reviews-strip.single-ticker .pill:hover {
    transform: none;
  }
}
