/* ============================================================
   RazGruz — premium industrial landing
   Tokens
   ============================================================ */
:root {
  --graphite-950: #0a0c0d;
  --graphite-900: #101214;
  --graphite-800: #16191c;
  --graphite-700: #1d2125;
  --graphite-600: #262b2f;
  --line-dark: rgba(255,255,255,.08);
  --line-dark-strong: rgba(255,255,255,.16);

  --paper: #eef0f2;
  --paper-2: #e3e6e9;
  --concrete: #c9ced3;
  --ink: #14171a;
  --ink-soft: #3a4046;
  --line-light: rgba(20,23,26,.10);
  --line-light-strong: rgba(20,23,26,.22);

  --orange: #f26a21;
  --orange-2: #ff8a45;
  --orange-deep: #c8521a;
  --signal: #9acd32;

  --text-on-dark: #eef0f2;
  --text-on-dark-soft: #b6bdc4;
  --text-on-light: #16191c;
  --text-on-light-soft: #4a5057;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 60px -30px rgba(0,0,0,.55), 0 8px 24px -16px rgba(0,0,0,.5);
  --shadow-paper: 0 1px 0 rgba(255,255,255,.6) inset, 0 30px 60px -40px rgba(0,0,0,.18), 0 8px 24px -18px rgba(0,0,0,.12);

  --container: 1180px;
  --pad: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.44,1);

  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark);
  background: var(--graphite-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html {
  overflow-x: clip;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  overflow-wrap: anywhere;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Skip link */
.skip-link {
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-120%);
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid #fff; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Brand
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
}
.brand__mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  padding: 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1d2125, #0e1011);
  border: 1px solid var(--line-dark-strong);
  box-shadow: 0 4px 12px -6px rgba(0,0,0,.6);
}
.brand__bar {
  display: inline-block;
  width: 3px;
  background: var(--orange);
  border-radius: 1px;
}
.brand__bar:nth-child(1) { height: 7px; }
.brand__bar:nth-child(2) { height: 11px; }
.brand__bar:nth-child(3) { height: 14px; }
.brand__word { font-weight: 800; }
.brand__accent { color: var(--orange); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,18,20,.62);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(10,12,13,.86);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.7);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-soft);
  padding: 10px 12px;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__links a:hover { color: var(--text-on-dark); background: rgba(255,255,255,.04); }
.nav__links a.is-active {
  color: var(--text-on-dark);
  background: rgba(242,106,33,.10);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}
.nav__cta { padding-inline: 16px; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; height: 60px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bg: var(--orange);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::after { transform: translateX(120%); }
.btn > * { position: relative; z-index: 2; }

.btn--primary {
  --bg: var(--orange);
  --fg: #1a0c03;
  box-shadow: 0 12px 30px -12px rgba(242,106,33,.6), 0 2px 0 rgba(0,0,0,.18) inset;
}
.btn--primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); background: var(--orange-deep); color: #fff; }

.btn--ghost {
  --bg: transparent;
  --fg: var(--text-on-dark);
  border-color: var(--line-dark-strong);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }

.btn--lg { min-height: 52px; padding-inline: 22px; font-size: 15.5px; }
.btn--block { width: 100%; }

.btn__arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a0c03;
  box-shadow: 0 0 0 2px rgba(26,12,3,.2);
}
.nav__cta .btn__dot { background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.25); animation: pulse 2.2s infinite var(--ease); }

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.btn__icon svg { display: block; }
.btn__icon--phone { opacity: .8; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 880px);
  padding: clamp(48px, 9vw, 96px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
  overflow: clip;
  contain: paint;
  isolation: isolate;
  background: var(--graphite-950);
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  overflow: clip;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 28%;
  filter: saturate(.82) contrast(1.04) brightness(.78);
  transform: scale(1.04);
  transform-origin: center center;
  max-inline-size: none;
  opacity: 0;
  animation: heroIn 1.6s var(--ease-out) .1s forwards;
}
@keyframes heroIn {
  to { opacity: .72; transform: scale(1.0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* deep bottom-up readability scrim */
    linear-gradient(180deg, rgba(8,10,11,.62) 0%, rgba(8,10,11,.55) 22%, rgba(8,10,11,.78) 62%, rgba(8,10,11,.96) 100%),
    /* left-side copy protection */
    linear-gradient(95deg, rgba(8,10,11,.92) 0%, rgba(8,10,11,.7) 32%, rgba(8,10,11,.18) 62%, rgba(8,10,11,0) 100%),
    /* subtle orange ambient from top-left */
    radial-gradient(60% 50% at 8% 12%, rgba(242,106,33,.18) 0%, transparent 60%);
}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 90% 0%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(120% 80% at 90% 0%, #000 0%, transparent 60%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  min-height: clamp(520px, 78vh, 760px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3f6f8;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,12,13,.62);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
}
.eyebrow__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(154,205,50,.6);
  animation: pulseG 2.2s infinite var(--ease);
}
@keyframes pulseG {
  0%   { box-shadow: 0 0 0 0 rgba(154,205,50,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(154,205,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(154,205,50,0); }
}

h1 {
  font-size: clamp(30px, 4.6vw, 58px);
  max-width: 18ch;
  margin-top: 22px;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.h1-line {
  display: block;
}
.h1-accent {
  background: linear-gradient(180deg, var(--orange-2) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.lead {
  margin-top: 20px;
  max-width: 52ch;
  font-size: clamp(15.5px, 1.45vw, 18px);
  color: #d8dde2;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

.hero__cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark-strong);
  font-size: 13px;
  color: var(--text-on-dark-soft);
  backdrop-filter: blur(8px);
}
.chip strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.chip--ok {
  background: rgba(154,205,50,.10);
  border-color: rgba(154,205,50,.35);
  color: #d6e9a3;
}
.chip__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(154,205,50,.5);
  animation: pulseG 2s infinite var(--ease);
}

/* Hero side card */
.hero__card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28,32,36,.86), rgba(14,16,18,.86));
  border: 1px solid var(--line-dark-strong);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.hero__card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-top-left-radius: var(--radius-lg);
  pointer-events: none;
}
.card-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.card-id__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.card-id__lbl {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
  color: #fff;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  font-size: 14.5px;
  color: var(--text-on-dark);
}
.checklist li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 4px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), 0 0 0 1px rgba(242,106,33,.3);
}
.micro {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-on-dark-soft);
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: clamp(36px, 11vw, 72px);
    padding-bottom: clamp(48px, 12vw, 96px);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
    gap: 28px;
  }
  .hero__card { margin-top: 4px; }
  .hero__photo img {
    object-position: 64% 30%;
    filter: saturate(.78) contrast(1.04) brightness(.66);
  }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(8,10,11,.78) 0%, rgba(8,10,11,.7) 40%, rgba(8,10,11,.88) 78%, rgba(8,10,11,.98) 100%),
      radial-gradient(80% 50% at 10% 8%, rgba(242,106,33,.18) 0%, transparent 60%);
  }
  h1 {
    font-size: clamp(26px, 7.2vw, 38px);
    max-width: 100%;
    margin-top: 18px;
    line-height: 1.08;
  }
  .lead { font-size: 15.5px; line-height: 1.5; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__cta .btn--ghost { flex-basis: 100%; }
}

@media (max-width: 380px) {
  h1 { font-size: clamp(24px, 7.6vw, 30px); }
  .hero__photo img { transform: scale(1.02); }
  .chips { gap: 8px; }
  .chip { font-size: 12.5px; padding: 8px 12px; }
}

/* ============================================================
   STEP STRIP
   ============================================================ */
.strip {
  background: var(--graphite-900);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-block: 28px;
}
.strip__item {
  position: relative;
  padding: 8px 24px 8px 56px;
}
.strip__item + .strip__item { border-left: 1px solid var(--line-dark); }
.strip__num {
  position: absolute;
  left: 20px; top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
}
.strip__item h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.strip__item p {
  font-size: 13.5px;
  color: var(--text-on-dark-soft);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .strip__grid { grid-template-columns: 1fr; gap: 16px; padding-block: 24px; }
  .strip__item + .strip__item { border-left: 0; border-top: 1px solid var(--line-dark); padding-top: 20px; }
}

/* ============================================================
   SECTIONS shared
   ============================================================ */
.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}
.section--dark     { background: var(--graphite-900); color: var(--text-on-dark); }
.section--graphite { background: var(--graphite-950); color: var(--text-on-dark); }
.section--paper    { background: var(--paper); color: var(--text-on-light); }

.sec-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242,106,33,.10);
  border: 1px solid rgba(242,106,33,.28);
}
.sec-eyebrow--dark {
  color: var(--orange-deep);
  background: rgba(242,106,33,.10);
  border-color: rgba(200,82,26,.25);
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 18px 0 14px;
  text-wrap: balance;
}
.section--dark .sec-head h2,
.section--graphite .sec-head h2 { color: #fff; }
.section--paper .sec-head h2 { color: var(--ink); }
.sec-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-on-dark-soft);
}
.sec-sub--dark { color: var(--text-on-light-soft); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #181c20, #11141700);
  background-color: var(--graphite-800);
  border: 1px solid var(--line-dark);
  transition: transform .35s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 0% 0%, rgba(242,106,33,.08), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background-color: #1b2024;
}
.svc:hover::before { opacity: 1; }
.svc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.svc__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.svc__tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line-dark-strong);
  background: rgba(255,255,255,.02);
}
.svc h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #fff;
  text-wrap: balance;
}
.svc p {
  font-size: 14.5px;
  color: var(--text-on-dark-soft);
  line-height: 1.55;
}
.svc--accent {
  background-color: #1a1410;
  border-color: rgba(242,106,33,.35);
}
.svc--accent::after {
  content: "";
  position: absolute;
  right: -1px; bottom: -1px;
  width: 60px; height: 60px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  border-bottom-right-radius: var(--radius-md);
  pointer-events: none;
}

.microline {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-soft);
}

@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS (paper)
   ============================================================ */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.process__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 36px 70px -40px rgba(0,0,0,.22), 0 12px 28px -18px rgba(0,0,0,.15);
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  margin-bottom: 14px;
}
.process__step h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 14.5px;
  color: var(--text-on-light-soft);
  line-height: 1.55;
}
.process__step::after {
  content: "";
  position: absolute;
  top: 20px; right: 14px;
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  opacity: .5;
}
.process__step:last-child::after { display: none; }

@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }

/* ============================================================
   USE CASES
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case {
  position: relative;
  padding: 104px 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--graphite-800), var(--graphite-700));
  border: 1px solid var(--line-dark);
  min-height: 240px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.case::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  background:
    linear-gradient(180deg, rgba(10,12,13,.12) 0%, rgba(10,12,13,.82) 100%),
    var(--case-image) center 42% / cover no-repeat;
  opacity: .78;
  transition: transform .8s var(--ease-out), opacity .3s var(--ease);
  z-index: -1;
}
.case:nth-child(1) { --case-image: url("assets/user-supplied/warehouse-unloading.jpg"); }
.case:nth-child(2) { --case-image: url("assets/user-supplied/construction-demolition.jpg"); }
.case:nth-child(3) { --case-image: url("assets/user-supplied/office-moving.jpg"); }
.case:nth-child(4) { --case-image: url("assets/user-supplied/store-delivery.jpg"); }
.case:nth-child(2)::before { background-position: 50% 48%; }
.case:nth-child(3)::before { background-position: 48% 38%; }
.case:nth-child(4)::before { background-position: 54% 42%; }
.case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 20% 0%, rgba(242,106,33,.12), transparent 55%);
  pointer-events: none;
  opacity: .75;
  z-index: -1;
}
.case:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 60px -42px rgba(0,0,0,.9);
}
.case:hover::before { transform: scale(1.04); opacity: .86; }
.case__corner {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  opacity: .9;
}
.case h3 {
  font-size: 19px;
  color: #fff;
  margin: 18px 0 8px;
  text-wrap: balance;
}
.case p {
  font-size: 14px;
  color: #c9d0d6;
  line-height: 1.55;
}

@media (max-width: 980px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cases { grid-template-columns: 1fr; } }

/* ============================================================
   FACTS / TRUST
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.fact::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 0 2px 2px 0;
}
.fact__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #fff;
  letter-spacing: -0.01em;
}
.fact__lbl {
  font-size: 13px;
  color: var(--text-on-dark-soft);
  line-height: 1.4;
}

@media (max-width: 860px) { .facts { grid-template-columns: repeat(2, 1fr); } }

.trust {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--graphite-800), var(--graphite-700));
  border: 1px solid var(--line-dark);
}
.trust__photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.trust__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 1.2s var(--ease-out);
}
.trust:hover .trust__photo img { transform: scale(1.04); }
.trust__photo figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 6px 10px;
  font-size: 11.5px;
  color: #fff;
  background: rgba(10,12,13,.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
}
.trust__text h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  color: #fff;
  margin-bottom: 10px;
}
.trust__text p {
  color: var(--text-on-dark-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.trust__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.trust__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-on-dark);
}
.trust__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--orange);
}

.link--ext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--orange-2);
  border-bottom: 1px solid rgba(242,106,33,.3);
  padding-bottom: 2px;
  min-height: 44px;
}
.link--ext:hover { color: #fff; border-bottom-color: #fff; }
.section--paper .link--ext { color: var(--orange-deep); border-bottom-color: rgba(200,82,26,.4); }
.section--paper .link--ext:hover { color: var(--ink); border-bottom-color: var(--ink); }

@media (max-width: 860px) {
  .trust { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 12px 24px -22px rgba(0,0,0,.15);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item:hover { border-color: var(--line-light-strong); }
.faq__item[open] { border-color: rgba(242,106,33,.45); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  min-height: 44px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 22px 20px;
  color: var(--text-on-light-soft);
  font-size: 15px;
  line-height: 1.6;
  animation: faqOpen .25s var(--ease-out);
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px);} to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq__body { animation: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.section--contact { padding-bottom: clamp(80px, 10vw, 140px); }
.contact {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact__copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  color: #fff;
  margin: 16px 0 12px;
}
.contact__rows {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-dark);
  min-height: 44px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.contact__row:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(242,106,33,.4);
  transform: translateX(2px);
}
.contact__lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.contact__val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  word-break: break-word;
}
.contact__go {
  color: var(--text-on-dark-soft);
  font-size: 18px;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.contact__row:hover .contact__go { transform: translateX(4px); color: #fff; }

.contact__card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--graphite-800), var(--graphite-700));
  border: 1px solid var(--line-dark-strong);
  box-shadow: var(--shadow-card);
}
.contact__card::before {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 70px; height: 70px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  border-top-right-radius: var(--radius-lg);
}
.contact__card h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.contact__card .addr {
  font-size: 16px;
  color: var(--text-on-dark);
  line-height: 1.5;
  margin-bottom: 18px;
}
.meta {
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}
.meta > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-block: 8px;
  border-top: 1px solid var(--line-dark);
}
.meta dt {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-on-dark-soft);
}
.meta dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-on-dark);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
  .contact__row { grid-template-columns: 1fr auto; }
  .contact__lbl { grid-column: 1 / -1; }
  .meta > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07090a;
  color: var(--text-on-dark-soft);
  padding-block: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.brand--sm { font-size: 16px; }
.footer__brand p { margin-top: 10px; font-size: 14px; max-width: 36ch; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-on-dark-soft);
  min-height: 30px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-dark);
  margin-top: 8px;
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--text-on-dark-soft);
  max-width: 90ch;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   Reveal-on-scroll
   Fails open: without `html.js` the content is visible. With JS,
   reveals fade/slide in when intersected.
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
html.js .reveal:not(.is-in) {
  opacity: 1;
  transform: translateY(14px);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* Process steps draw their connector line on reveal */
html.js .process__step:not(.is-in)::after { transform: scaleX(0); }
.process__step::after {
  transform-origin: left center;
  transition: transform .6s var(--ease-out) .15s;
}

/* Service cards: subtle scale entrance */
html.js .svc:not(.is-in) { transform: translateY(14px) scale(.985); }
.svc.is-in { animation: svcSettle .8s var(--ease-out); }
@keyframes svcSettle {
  0% { filter: brightness(1); }
  40% { filter: brightness(1.06); }
  100% { filter: brightness(1); }
}

/* Reduced motion: turn off motion, keep all content visible */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal,
  html.js .reveal:not(.is-in) { opacity: 1 !important; transform: none !important; }
  html.js .process__step:not(.is-in)::after { transform: none !important; }
  html.js .svc:not(.is-in) { transform: none !important; }
  .hero__photo img { opacity: .72 !important; transform: none !important; animation: none !important; }
}
