/* ============================================================
   BARBTIC LLC — Homepage stylesheet
   Dark blue-black theme · Teal Stone accent #0F766E
   ============================================================ */

:root {
  --bg: #0D1113;
  --bg-soft: #10171A;
  --surface: #0F1917;
  --surface-2: #12201E;
  --accent: #0F766E;
  --accent-strong: #115E59;
  --accent-bright: #5EEAD4;
  --accent-deep: #04252B;
  --text: #E8F0F2;
  --text-muted: #9FB3B8;
  --line: #1E2E31;
  --line-soft: #16262A;
  --shadow: 0 18px 50px rgba(4, 18, 20, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #a7f3e6;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-page {
  overflow-x: hidden;
}

/* ============================================================
   WALL-CLOCK NAVIGATION
   ============================================================ */

.clock-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0D1113;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.clock-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clock-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.clock-nav__brand:hover {
  color: var(--text);
}

/* CSS-drawn round wall clock icon */
.clock-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  background: radial-gradient(circle at 50% 50%, var(--surface-2) 0%, var(--accent-deep) 100%);
  box-shadow: inset 0 0 0 3px rgba(15, 118, 110, 0.12), 0 0 0 3px rgba(15, 118, 110, 0.08);
}

.clock-icon__tick {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 5px;
  background: var(--accent-bright);
  border-radius: 1px;
  transform-origin: 0 0;
  transform: rotate(var(--a)) translate(0, -17px);
}

.clock-icon__hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
  background: var(--accent-bright);
}

.clock-icon__hand--hour {
  width: 3px;
  height: 11px;
  margin-left: -1.5px;
  transform: rotate(38deg);
}

.clock-icon__hand--minute {
  width: 2px;
  height: 16px;
  margin-left: -1px;
  transform: rotate(-160deg);
}

.clock-icon__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.clock-nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.clock-nav__wordmark strong {
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.clock-nav__wordmark span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.clock-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.clock-nav__links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.clock-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: width 0.25s ease;
}

.clock-nav__links a:hover {
  color: var(--text);
}

.clock-nav__links a:hover::after {
  width: 100%;
}

.clock-nav__cta {
  background: var(--accent);
  color: #f0fffb;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid var(--accent-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.clock-nav__cta:hover {
  background: var(--accent-strong);
  color: #ffffff;
  transform: translateY(-1px);
}

.clock-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.clock-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   DELIVERY-TRUCK HERO
   ============================================================ */

.truck-hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 82% 10%, rgba(15, 118, 110, 0.16), transparent 60%),
    radial-gradient(900px 500px at 8% 90%, rgba(4, 37, 43, 0.7), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.truck-hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.truck-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.truck-hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.truck-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 22px;
}

.truck-hero__title em {
  font-style: normal;
  color: var(--accent-bright);
}

.truck-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.truck-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #f0fffb;
  border-color: var(--accent-strong);
}

.btn--primary:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

/* CSS-drawn delivery truck */
.truck-stage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 320px;
}

.delivery-truck {
  position: relative;
  width: 460px;
  max-width: 100%;
  height: 250px;
}

.delivery-truck__cargo {
  position: absolute;
  left: 0;
  bottom: 92px;
  width: 250px;
  height: 128px;
  background: linear-gradient(180deg, #14433f 0%, var(--accent-strong) 100%);
  border: 2px solid var(--accent);
  border-radius: 10px 4px 4px 10px;
  box-shadow: inset 0 0 0 6px rgba(94, 234, 212, 0.06);
}

.delivery-truck__cargo-label {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 1rem;
  color: #eafffb;
}

.delivery-truck__cargo-dispatch {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--accent-bright);
  font-weight: 600;
}

.delivery-truck__door {
  position: absolute;
  top: 66px;
  bottom: 14px;
  width: 2px;
  background: rgba(4, 37, 43, 0.7);
}

.delivery-truck__door--1 { left: 74px; }
.delivery-truck__door--2 { left: 164px; }

.delivery-truck__cab {
  position: absolute;
  right: 20px;
  bottom: 92px;
  width: 168px;
  height: 96px;
  background: linear-gradient(180deg, #1a5a54 0%, var(--accent) 100%);
  border: 2px solid var(--accent-bright);
  border-radius: 12px 24px 4px 4px;
  z-index: 2;
}

.delivery-truck__windshield {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 58px;
  height: 40px;
  border-radius: 6px 10px 6px 6px;
  background: linear-gradient(135deg, #9ff0e4 0%, var(--accent-deep) 90%);
  border: 1px solid rgba(94, 234, 212, 0.5);
}

.delivery-truck__mirror {
  position: absolute;
  top: 22px;
  right: -9px;
  width: 6px;
  height: 18px;
  background: var(--accent-bright);
  border-radius: 2px;
}

.delivery-truck__bumper {
  position: absolute;
  bottom: -10px;
  left: 18px;
  right: 18px;
  height: 12px;
  background: var(--accent-strong);
  border-radius: 4px;
  border: 1px solid var(--accent);
}

.delivery-truck__wheel {
  position: absolute;
  bottom: 40px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1c2c2f 0%, #05090a 100%);
  border: 7px solid var(--accent-strong);
  box-shadow: inset 0 0 0 3px var(--accent-deep);
  z-index: 3;
}

.delivery-truck__wheel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--accent-bright);
  border: 2px solid var(--accent-deep);
}

.delivery-truck__wheel--rear { left: 52px; }
.delivery-truck__wheel--front { right: 34px; }

.delivery-truck__road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* ============================================================
   FULL-WIDTH STATEMENT ROW
   ============================================================ */

.statement-row {
  background: var(--accent-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-row .container {
  padding: 80px 24px;
}

.statement-row__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 22px;
}

.statement-row__text {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 980px;
}

.statement-row__text em {
  font-style: normal;
  color: var(--accent-bright);
}

/* ============================================================
   BIG-NUMERAL STAT COLUMNS
   ============================================================ */

.stats-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.stats-section .container {
  padding: 84px 24px;
}

.stats-section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.stats-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.stats-section__head p {
  color: var(--text-muted);
}

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
}

.stat-block {
  background: var(--surface);
  padding: 40px 28px;
}

.stat-block__num {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-block__label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.stat-block__suffix {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

/* ============================================================
   NUMBERED DELIVERY PROCESS LIST
   ============================================================ */

.process-section {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.process-section .container {
  padding: 88px 24px;
}

.process-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.process-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 480px;
}

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

.process-list {
  list-style: none;
  counter-reset: step;
  position: relative;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}

.process-step:first-child {
  border-top: 1px solid var(--line-soft);
}

.process-step__marker {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.process-step__marker small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.process-step__body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

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

.process-step__connector {
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--line-soft) 100%);
  z-index: 0;
}

.process-step:last-child .process-step__connector {
  bottom: 50%;
}

.process-step__marker,
.process-step__body {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TWO-COLUMN COMPARISON TABLE
   ============================================================ */

.compare-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.compare-section .container {
  padding: 88px 24px;
}

.compare-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.compare-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.compare-section__head p {
  color: var(--text-muted);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}

.compare-table thead th {
  background: var(--accent-deep);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.compare-table thead th:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.compare-table thead th span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-top: 4px;
}

.compare-table tbody td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .tick {
  color: var(--accent-bright);
  font-weight: 700;
}

.compare-table .cross {
  color: #64777c;
  font-weight: 700;
}

/* ============================================================
   HORIZONTAL SCROLL ROW OF CAPABILITY PANELS
   ============================================================ */

.capabilities-section {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow-x: hidden;
}

.capabilities-section .container {
  padding: 88px 24px;
}

.capabilities-section__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.capabilities-section__bar h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 480px;
}

.hscroll-controls {
  display: flex;
  gap: 10px;
}

.hscroll-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hscroll-btn:hover {
  background: var(--accent);
  border-color: var(--accent-bright);
  color: #fff;
}

.hscroll-viewport {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--line-soft);
  -webkit-overflow-scrolling: touch;
}

.hscroll-viewport::-webkit-scrollbar {
  height: 8px;
}

.hscroll-viewport::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 4px;
}

.hscroll-viewport::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.capability-panel {
  flex: 0 0 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.capability-panel:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.capability-panel__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
  margin-bottom: 18px;
}

.capability-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.capability-panel p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */

.cta-band {
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.22) 0%, rgba(4, 37, 43, 0.4) 100%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.cta-band .container {
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-band__text {
  color: var(--text-muted);
  max-width: 520px;
}

.cta-band__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.cta-band__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-band__note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.contact-section .container {
  padding: 88px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.contact-section__head p {
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 460px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

.contact-detail__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  min-width: 92px;
}

.contact-detail__value {
  color: var(--text);
  font-weight: 500;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px;
}

.contact-form__field {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-bright);
  min-height: 1.5em;
}

/* ============================================================
   FOOTER — compact multi-column with thin teal top rule
   ============================================================ */

.site-footer {
  background: var(--bg);
  border-top: 3px solid var(--accent);
}

.site-footer .container {
  padding: 56px 24px 40px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.site-footer__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.site-footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.site-footer__col ul {
  list-style: none;
}

.site-footer__col li {
  margin-bottom: 12px;
}

.site-footer__col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer__col a:hover {
  color: var(--accent-bright);
}

.site-footer__bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer__bottom .legal-links {
  display: flex;
  gap: 22px;
}

.site-footer__bottom .legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer__bottom .legal-links a:hover {
  color: var(--accent-bright);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .clock-nav__links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }

  .clock-nav__links.open {
    display: flex;
  }

  .clock-nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .clock-nav__toggle {
    display: flex;
  }

  .clock-nav__cta {
    display: none;
  }

  .truck-hero__grid {
    grid-template-columns: 1fr;
    padding: 60px 24px 72px;
  }

  .truck-stage {
    order: 2;
  }

  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-band .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-band__side {
    align-items: flex-start;
  }

  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .delivery-truck {
    transform: scale(0.82);
    transform-origin: center bottom;
  }

  .stats-section__grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .process-step__connector {
    left: 30px;
  }

  .process-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-table th,
  .compare-table td {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  .capability-panel {
    flex: 0 0 280px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 24px;
  }
}
