/* ===================================================================
   SMT Bus and Coach - Made to Move
   Logistics-meets-premium / red & yellow brand
   =================================================================== */

:root {
  /* Brand */
  --smt-red: #E5141C;
  --smt-red-deep: #B40E15;
  --smt-yellow: #FFD60A;
  --smt-yellow-deep: #E5BC00;

  /* Surfaces */
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --ink-line: #2a2a2a;
  --paper: #f4f1ea;
  --paper-warm: #ebe6db;
  --paper-line: #d8d2c4;
  --white: #ffffff;

  /* Text */
  --text: #0a0a0a;
  --text-soft: #4a4a47;
  --text-mute: #8a877f;
  --text-light: #f4f1ea;
  --text-light-soft: rgba(244,241,234,0.65);

  /* Type */
  --font-display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --font-sans: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===================================================================
   UTILITY BAR
   =================================================================== */

.utility-bar {
  background: var(--ink);
  color: var(--text-light-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--ink-line);
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.utility-right {
  display: flex;
  gap: 24px;
}

.util-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.util-link {
  color: var(--text-light-soft);
  transition: color 0.2s;
}

.util-link:hover { color: var(--smt-yellow); }

.util-icon {
  display: inline-block;
  transform: rotate(95deg);
  font-size: 13px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot-live {
  background: var(--smt-yellow);
  box-shadow: 0 0 0 0 var(--smt-yellow);
  animation: pulse 2s infinite;
}

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

/* ===================================================================
   HEADER
   =================================================================== */

.site-header {
  background: var(--ink);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ink-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 40px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  position: relative;
  background: var(--smt-red);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.logo-mark-bar {
  width: 4px;
  height: 26px;
  background: var(--smt-yellow);
}

.logo-mark-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}

.logo-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light-soft);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Old .primary-nav ul rule removed - now using .primary-nav > ul defined later */

.nav-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--smt-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after { transform: scaleX(1); }

.nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-light-soft);
  letter-spacing: 0.05em;
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--smt-red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--smt-red-deep);
}

.btn-yellow {
  background: var(--smt-yellow);
  color: var(--ink);
}
.btn-yellow:hover {
  background: var(--smt-yellow-deep);
}

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

.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(244,241,234,0.4);
}
.btn-ghost-light:hover {
  background: var(--text-light);
  color: var(--ink);
  border-color: var(--text-light);
}

.header-cta {
  padding: 12px 18px;
  font-size: 13px;
}

/* ===================================================================
   HERO
   =================================================================== */

.hero {
  background: var(--ink);
  color: var(--text-light);
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.meta-line {
  width: 64px;
  height: 1px;
  background: var(--smt-yellow);
}

.meta-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-headline-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9.5vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--text-light);
}

.headline-line {
  display: block;
}

.headline-yellow {
  color: var(--smt-yellow);
}

.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--smt-yellow);
  letter-spacing: -0.02em;
}

.headline-sub {
  color: var(--text-light-soft);
}

.hero-side {
  padding-bottom: 12px;
}

.hero-blurb {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light-soft);
  margin-bottom: 28px;
  max-width: 440px;
}

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

.hero-actions .btn-ghost {
  color: var(--text-light);
  border-color: rgba(244,241,234,0.4);
}
.hero-actions .btn-ghost:hover {
  background: var(--text-light);
  color: var(--ink);
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-line);
  padding-top: 32px;
}

.stat {
  padding-right: 32px;
  border-right: 1px solid var(--ink-line);
}

.stat:last-child { border-right: 0; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--smt-yellow);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-light-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Marquee */
.marquee {
  background: var(--smt-red);
  color: var(--white);
  border-top: 1px solid var(--smt-red-deep);
  border-bottom: 1px solid var(--smt-red-deep);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.marquee-track .sep {
  font-size: 8px;
  color: var(--smt-yellow);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================================
   TRUST BAR
   =================================================================== */

.trust-bar {
  background: var(--paper);
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-line);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.trust-logo:hover { opacity: 1; }

.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--paper-line);
}

/* ===================================================================
   SECTION HEAD (shared)
   =================================================================== */

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--smt-red);
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--smt-red);
}

.tag-light {
  color: var(--smt-yellow);
  border-bottom-color: var(--smt-yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.title-yellow {
  background: var(--smt-yellow);
  padding: 0 8px;
  display: inline-block;
  transform: skew(-3deg);
  margin-left: -2px;
}

.section-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  padding-bottom: 12px;
}

/* ===================================================================
   SERVICES
   =================================================================== */

.services {
  padding: 120px 0;
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-radius: 2px;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.service-card-feature {
  grid-row: span 2;
  background: var(--ink);
  color: var(--text-light);
  border-color: var(--ink);
  padding: 40px;
}

.service-card-feature:hover {
  border-color: var(--smt-yellow);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.service-card-feature .service-num {
  color: var(--smt-yellow);
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.service-card-feature .service-title {
  font-size: 36px;
  color: var(--text-light);
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 20px;
  flex: 1;
}

.service-card-feature .service-desc {
  color: var(--text-light-soft);
  font-size: 16px;
}

.service-points {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-points li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}

.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--smt-yellow);
}

.service-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smt-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--smt-red);
  width: fit-content;
  transition: all 0.2s;
}

.service-card-feature .service-link {
  color: var(--smt-yellow);
  border-bottom-color: var(--smt-yellow);
}

.service-link:hover {
  gap: 14px;
}

.service-tag-row {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-visual {
  margin-top: auto;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 24px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.visual-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ===================================================================
   RAIL FEATURE
   =================================================================== */

.rail-feature {
  background: var(--ink);
  color: var(--text-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.rail-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.rail-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.rail-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.rail-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-light-soft);
  margin-bottom: 48px;
  max-width: 560px;
}

.rail-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.rail-feat {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--ink-line);
}

.rail-feat:last-child {
  border-bottom: 1px solid var(--ink-line);
}

.rail-feat-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--smt-yellow);
  letter-spacing: 0.05em;
}

.rail-feat h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-light);
}

.rail-feat p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light-soft);
}

.rail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Rail Card */
.rail-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.rail-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 28px;
  border-radius: 2px;
  position: relative;
}

.rail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--smt-yellow);
}

.rail-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-line);
}

.rail-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-soft);
}

.rail-card-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--smt-yellow);
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--smt-yellow);
  animation: pulse 2s infinite;
}

.rail-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  border-bottom: 1px dashed var(--ink-line);
}

.row-label {
  color: var(--text-light-soft);
  letter-spacing: 0.04em;
}

.row-value {
  color: var(--text-light);
  font-weight: 500;
}

.status-ok {
  color: var(--smt-yellow);
}

.rail-card-bar {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
}

.bar-track {
  height: 6px;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.bar-fill {
  height: 100%;
  width: 96%;
  background: var(--smt-yellow);
  position: relative;
}

.bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(0,0,0,0.15) 4px,
    rgba(0,0,0,0.15) 8px
  );
}

.bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-light-soft);
  text-transform: uppercase;
}

.rail-card-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
}

.foot-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.rail-aside {
  background: var(--smt-red);
  color: var(--white);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 2px;
}

.aside-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--smt-yellow);
}

.aside-text {
  font-size: 14px;
  line-height: 1.5;
}

/* ===================================================================
   FLEET
   =================================================================== */

.fleet {
  background: var(--paper);
  padding: 120px 0;
}

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

.fleet-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.fleet-card-feature {
  border-color: var(--smt-yellow);
  border-width: 2px;
}

.fleet-image {
  background: var(--ink);
  padding: 32px;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-img-1 { background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%); }
.fleet-img-2 { background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%); }
.fleet-img-3 { background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%); }

.fleet-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.fleet-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--smt-yellow);
}

.fleet-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--smt-yellow);
  color: var(--ink);
  padding: 4px 10px;
}

.fleet-svg {
  width: 90%;
  height: auto;
  position: relative;
  z-index: 2;
}

.fleet-meta {
  padding: 24px;
}

.fleet-meta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.fleet-spec {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.fleet-use {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

.fleet-spec-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  padding: 24px 32px;
  background: var(--ink);
  color: var(--text-light);
  border-radius: 2px;
  align-items: center;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smt-yellow);
}

.spec-value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-light);
}

.spec-divider {
  width: 1px;
  height: 32px;
  background: var(--ink-line);
}

/* ===================================================================
   ABOUT
   =================================================================== */

.about {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--paper-line);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 48px;
  max-width: 560px;
}

.about-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.about-meta {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.meta-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--smt-red);
  letter-spacing: -0.01em;
}

.about-meta h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 4px;
}

.about-meta p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* Depot card */
.depot-card {
  background: var(--ink);
  color: var(--text-light);
  padding: 36px;
  border-radius: 2px;
  position: relative;
}

.depot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--smt-red);
}

.depot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-line);
}

.depot-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smt-yellow);
}

.depot-id {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-light-soft);
  padding: 4px 8px;
  border: 1px solid var(--ink-line);
}

.depot-name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.depot-addr {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light-soft);
  margin-bottom: 28px;
}

.depot-coverage {
  padding: 20px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  margin-bottom: 24px;
}

.coverage-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-soft);
  margin-bottom: 12px;
}

.coverage-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cov-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.3);
  color: var(--smt-yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cov-pill-out {
  background: rgba(229,20,28,0.15);
  border-color: rgba(229,20,28,0.4);
  color: var(--smt-red);
}

.depot-phone {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--smt-yellow);
  color: var(--ink);
  border-radius: 2px;
  transition: background 0.2s;
}

.depot-phone:hover {
  background: var(--smt-yellow-deep);
}

.phone-label {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-num {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.phone-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 24px;
  font-weight: 600;
}

/* ===================================================================
   QUOTE / TESTIMONIAL
   =================================================================== */

.quote-section {
  background: var(--smt-yellow);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 30px,
      rgba(0,0,0,0.04) 30px,
      rgba(0,0,0,0.04) 31px
    );
}

.quote-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 160px;
  line-height: 0.6;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
  font-style: italic;
}

.big-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.quote-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  display: inline-flex;
  padding: 16px 32px 0;
  border-top: 2px solid var(--ink);
}

.attr-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
}

.attr-role {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  opacity: 0.7;
}

/* ===================================================================
   CTA / QUOTE FORM
   =================================================================== */

.cta-section {
  background: var(--ink);
  color: var(--text-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-light);
}

.cta-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-light-soft);
  margin-bottom: 48px;
  max-width: 480px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}

.cta-contact {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: center;
  transition: padding 0.2s;
}

a.cta-contact:hover {
  padding-left: 8px;
}

.cc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smt-yellow);
}

.cc-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

/* Form */
.quote-form {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 36px;
  border-radius: 2px;
  position: relative;
}

.quote-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--smt-red);
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-line);
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smt-yellow);
}

.form-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light-soft);
  padding: 4px 8px;
  border: 1px solid var(--ink-line);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-soft);
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--smt-yellow);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-sans);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-light-soft);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--text-light);
  border-top: 1px solid var(--ink-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 80px 32px 48px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-name { color: var(--text-light); }
.footer-logo .logo-tag { color: var(--text-light-soft); }

.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-soft);
  max-width: 360px;
}

.footer-head {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smt-yellow);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-line);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-light-soft);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--smt-yellow);
}

.footer-contact-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-soft);
  margin-bottom: 16px;
}

.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--smt-yellow); }

.footer-email {
  display: block;
  font-size: 14px;
  color: var(--text-light-soft);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--smt-yellow); }

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.footer-meta-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-meta-right a {
  color: var(--text-mute);
  transition: color 0.2s;
}
.footer-meta-right a:hover { color: var(--smt-yellow); }

.dot-sep {
  color: var(--ink-line);
}

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

@media (max-width: 1100px) {
  .hero-headline-row { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-feature { grid-row: auto; grid-column: span 2; }
  .rail-inner { grid-template-columns: 1fr; gap: 48px; }
  .rail-right { position: static; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fleet-spec-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; }
  .spec-divider { display: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .utility-bar { display: none; }
  .header-inner { height: 72px; }
  /* primary-nav drawer handled in newer mobile rules below */
  .hero { padding-top: 56px; }
  .hero-inner { padding-bottom: 56px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat { padding-right: 0; border-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--ink-line); }
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-feature { grid-column: auto; }
  .rail-feature { padding: 72px 0; }
  .fleet { padding: 72px 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .about { padding: 72px 0; }
  .about-meta-row { grid-template-columns: 1fr; gap: 24px; }
  .quote-section { padding: 64px 0; }
  .quote-mark { font-size: 100px; }
  .cta-section { padding: 72px 0; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 56px 20px 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .header-cta { display: none; }
  .marquee-track { font-size: 14px; gap: 20px; }
}

/* ===================================================================
   SUB-PAGE HEROS, BREADCRUMBS, SHARED PAGE COMPONENTS
   =================================================================== */

/* Sub-page hero (shorter than home hero) */
.subhero {
  background: var(--ink);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--ink-line);
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 30%, transparent 90%);
  pointer-events: none;
}

.subhero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-light-soft);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--text-light-soft);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--smt-yellow); }

.breadcrumb .crumb-sep {
  color: var(--ink-line);
  font-size: 10px;
}

.breadcrumb .crumb-current {
  color: var(--smt-yellow);
}

.subhero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.subhero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}

.subhero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-light);
}

.subhero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--smt-yellow);
}

.subhero-blurb {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light-soft);
  padding-bottom: 12px;
  max-width: 440px;
}

/* Page section spacing helper */
.page-section {
  padding: 100px 0;
}

.page-section-light { background: var(--paper); }
.page-section-dark { background: var(--ink); color: var(--text-light); }
.page-section-warm { background: var(--paper-warm); }

/* ===================================================================
   FEATURE GRID (3-up text blocks with numbers)
   =================================================================== */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feat-block {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feat-block:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.page-section-dark .feat-block {
  background: var(--ink-soft);
  border-color: var(--ink-line);
  color: var(--text-light);
}

.feat-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}

.page-section-dark .feat-num { color: var(--smt-yellow); }

.feat-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feat-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.page-section-dark .feat-block p { color: var(--text-light-soft); }

/* ===================================================================
   PROCESS STEPS (numbered horizontal flow)
   =================================================================== */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-step {
  padding: 32px 24px 24px;
  border-left: 1px solid var(--paper-line);
  position: relative;
}

.process-step:first-child { border-left: 0; padding-left: 0; }

.page-section-dark .process-step {
  border-left-color: var(--ink-line);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--smt-red);
}

.process-step:first-child::before { left: 0; }

.page-section-dark .process-step::before { background: var(--smt-yellow); }

.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--smt-red);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: block;
}

.page-section-dark .step-num { color: var(--smt-yellow); }

.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}

.page-section-dark .process-step p { color: var(--text-light-soft); }

/* ===================================================================
   SPLIT CONTENT (image + text alternating)
   =================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}

.split-reverse .split-text { order: 2; }
.split-reverse .split-visual { order: 1; }

.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.split-text > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.page-section-dark .split-text > p { color: var(--text-light-soft); }

.split-visual {
  background: var(--ink);
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.split-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}

.split-visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.visual-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smt-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

.visual-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--smt-yellow);
  color: var(--ink);
  padding: 4px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
}

/* ===================================================================
   FAQ
   =================================================================== */

.faq-wrap {
  max-width: 880px;
  margin: 56px auto 0;
}

.faq-item {
  border-top: 1px solid var(--paper-line);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--paper-line); }

.page-section-dark .faq-item {
  border-color: var(--ink-line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  transition: all 0.2s;
}

.page-section-dark .faq-toggle {
  background: var(--ink-soft);
  border-color: var(--ink-line);
  color: var(--smt-yellow);
}

.faq-item[open] .faq-toggle {
  background: var(--smt-red);
  color: var(--white);
  border-color: var(--smt-red);
  transform: rotate(45deg);
}

.faq-body {
  padding: 16px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 720px;
}

.page-section-dark .faq-body { color: var(--text-light-soft); }

/* ===================================================================
   PRICING / TIER CARDS
   =================================================================== */

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

.tier-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.tier-card-feature {
  background: var(--ink);
  color: var(--text-light);
  border-color: var(--ink);
}

.tier-card-feature:hover {
  border-color: var(--smt-yellow);
}

.tier-flag {
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--smt-yellow);
  color: var(--ink);
  padding: 5px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.tier-card-feature .tier-num { color: var(--smt-yellow); }

.tier-name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.55;
}

.tier-card-feature .tier-desc { color: var(--text-light-soft); }

.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--smt-red);
}

.tier-card-feature .tier-price { color: var(--smt-yellow); }

.tier-price-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.tier-features {
  margin-bottom: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--text-soft);
}

.tier-card-feature .tier-features li { color: var(--text-light-soft); }

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--smt-red);
}

.tier-card-feature .tier-features li::before { background: var(--smt-yellow); }

.tier-cta {
  width: 100%;
  justify-content: center;
}

/* ===================================================================
   DAY TRIP CARDS (booking style)
   =================================================================== */

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.trip-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.trip-image {
  background: var(--ink);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.trip-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.trip-image-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--text-light);
  font-family: var(--font-display);
  text-align: center;
}

.trip-illu {
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--smt-yellow);
}

.trip-illu small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-light-soft);
  margin-top: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--smt-red);
  color: var(--white);
  padding: 5px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
}

.trip-flag-yellow {
  background: var(--smt-yellow);
  color: var(--ink);
}

.trip-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.trip-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.trip-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.trip-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  flex: 1;
}

.trip-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--paper-line);
  margin-top: auto;
}

.trip-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trip-price-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.trip-price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trip-book {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smt-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--smt-red);
  transition: gap 0.2s;
}

.trip-book:hover { gap: 12px; }

.trip-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trip-info-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trip-info-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--smt-red);
  border-radius: 50%;
  display: inline-block;
}

/* Trip filter bar */
.trip-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--ink);
  border-radius: 2px;
  margin-top: 32px;
  align-items: center;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smt-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 12px;
}

.filter-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--text-light-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover, .filter-pill-active {
  background: var(--smt-yellow);
  color: var(--ink);
  border-color: var(--smt-yellow);
}

/* ===================================================================
   VACANCY / JOB CARDS
   =================================================================== */

.vacancy-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
}

.vacancy {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 32px;
  align-items: center;
  transition: background 0.2s;
}

.vacancy:hover {
  background: var(--paper-warm);
}

.vac-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.06em;
}

.vac-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.vac-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vac-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.vac-tag-urgent {
  background: var(--smt-red);
  color: var(--white);
  border-color: var(--smt-red);
}

.vac-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smt-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--smt-red);
  transition: gap 0.2s;
  white-space: nowrap;
}

.vac-link:hover { gap: 14px; }

/* Driver perks */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.perk {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 24px;
  border-radius: 2px;
}

.perk-icon {
  width: 40px;
  height: 40px;
  background: var(--smt-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.perk h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.perk p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-light-soft);
}

/* ===================================================================
   BLOG CARDS
   =================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.blog-image {
  background: var(--ink);
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.blog-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.blog-cat {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--smt-yellow);
  color: var(--ink);
  padding: 5px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  flex: 1;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.blog-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smt-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--smt-red);
  transition: gap 0.2s;
  width: fit-content;
}

.blog-link:hover { gap: 14px; }

/* ===================================================================
   CONTACT PAGE SPECIFICS
   =================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 28px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--smt-yellow);
}

.contact-card-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--smt-yellow);
  letter-spacing: 0.06em;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.contact-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-light-soft);
  margin-bottom: 12px;
}

.contact-card a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--smt-yellow);
  letter-spacing: -0.01em;
  display: inline-block;
}

.map-block {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  height: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.map-pin-dot {
  width: 24px;
  height: 24px;
  background: var(--smt-red);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 0 rgba(229,20,28,0.6);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(229,20,28,0.6); }
  70% { box-shadow: 0 0 0 24px rgba(229,20,28,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,20,28,0); }
}

.map-pin-label {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--smt-yellow);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light-soft);
  letter-spacing: 0.04em;
}

.map-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-weight: normal;
}

/* ===================================================================
   ABOUT PAGE - TIMELINE
   =================================================================== */

.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--paper-line);
}

.page-section-dark .timeline::before { background: var(--ink-line); }

.tl-item {
  position: relative;
  padding: 24px 0 32px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 32px;
  width: 12px;
  height: 12px;
  background: var(--smt-red);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--smt-red);
}

.page-section-dark .tl-item::before {
  background: var(--smt-yellow);
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--smt-yellow);
}

.tl-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-section-dark .tl-year { color: var(--smt-yellow); }

.tl-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tl-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
}

.page-section-dark .tl-item p { color: var(--text-light-soft); }

/* Stats strip (about) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  background: var(--ink);
  padding: 40px;
  border-radius: 2px;
}

.stat-strip .stat {
  border-right: 1px solid var(--ink-line);
  padding: 0 24px;
}
.stat-strip .stat:first-child { padding-left: 0; }
.stat-strip .stat:last-child { border-right: 0; padding-right: 0; }

/* ===================================================================
   RESPONSIVE FOR NEW COMPONENTS
   =================================================================== */

@media (max-width: 1100px) {
  .subhero-grid { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 0; padding-left: 0; }
  .split { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .split-reverse .split-text { order: 1; }
  .split-reverse .split-visual { order: 2; }
  .tier-grid { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
  .stat-strip .stat { border-right: 0; padding: 0; border-bottom: 1px solid var(--ink-line); padding-bottom: 16px; }
}

@media (max-width: 720px) {
  .subhero { padding: 40px 0 56px; }
  .page-section { padding: 64px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-left: 0; padding-left: 0; }
  .trips-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .vacancy { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .vac-num { display: none; }
  .stat-strip { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 17px; }
  .timeline { padding-left: 32px; }
  .tl-item::before { left: -28px; }
}

/* Active nav state */
.nav-link-active {
  color: var(--smt-yellow);
}
.nav-link-active::after {
  transform: scaleX(1) !important;
  background: var(--smt-yellow);
}

/* ===================================================================
   IMPROVED HEADER: DROPDOWN + MOBILE HAMBURGER
   =================================================================== */

/* Header refinements */
.site-header {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(10,10,10,0.92);
}

.header-inner {
  gap: 24px;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.primary-nav > ul > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-light-soft);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-light);
  background: rgba(255,255,255,0.04);
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--smt-yellow);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.nav-link::after { display: none; }

.nav-link-active {
  color: var(--smt-yellow);
  background: rgba(255,214,10,0.06);
}

.nav-link-active .nav-num { opacity: 1; }

/* Caret on items with submenus */
.nav-link-has-sub::before {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-item-sub:hover .nav-link-has-sub::before,
.nav-item-sub:focus-within .nav-link-has-sub::before {
  transform: rotate(225deg) translateY(-2px);
}

/* Submenu */
.nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 380px;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  padding: 16px;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 1001;
}

.nav-item-sub:hover .nav-sub,
.nav-item-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-sub-link {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 12px 14px;
  color: var(--text-light-soft);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  align-items: start;
}

.nav-sub-link:hover {
  background: var(--ink-soft);
  color: var(--text-light);
}

.nav-sub-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smt-yellow);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.nav-sub-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.nav-sub-desc {
  display: block;
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-mute);
  line-height: 1.4;
}

/* Hamburger button (mobile only) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1100;
}

.nav-toggle-bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--text-light);
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile drawer states */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }

  .header-cta { display: none; }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 1050;
    padding: 88px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }
  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-nav > ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
  }

  .primary-nav > ul > li {
    border-bottom: 1px solid var(--ink-line);
  }
  .primary-nav > ul > li:first-child {
    border-top: 1px solid var(--ink-line);
  }

  .nav-link {
    width: 100%;
    padding: 18px 4px;
    font-size: 16px;
    border-radius: 0;
    justify-content: flex-start;
  }
  .nav-link:hover { background: transparent; }
  .nav-num { font-size: 11px; min-width: 24px; }

  /* Submenu becomes inline (always visible on mobile) */
  .nav-link-has-sub::before { display: none; }

  .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: 0;
    padding: 0 0 16px 28px;
    box-shadow: none;
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .nav-sub-link {
    padding: 10px 4px;
    grid-template-columns: 24px 1fr;
  }
  .nav-sub-title { font-size: 14px; }
  .nav-sub-desc { display: none; }

  /* Mobile-only CTA inside drawer */
  .nav-mobile-cta {
    display: block;
    margin-top: 24px;
    text-align: center;
  }

  .nav-mobile-meta {
    display: block;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ink-line);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.06em;
  }
  .nav-mobile-meta a {
    display: block;
    color: var(--smt-yellow);
    font-family: var(--font-display);
    font-size: 22px;
    margin-top: 6px;
    letter-spacing: -0.01em;
  }

  /* Lock body scroll when drawer open */
  body.nav-open { overflow: hidden; }
}

/* Hide mobile-only items on desktop */
@media (min-width: 1101px) {
  .nav-mobile-cta, .nav-mobile-meta { display: none; }
}

/* Keep utility bar simpler on mobile */
@media (max-width: 720px) {
  .utility-inner { flex-direction: column; gap: 6px; align-items: flex-start; }
  .utility-right { gap: 12px; flex-wrap: wrap; }
  .util-item { font-size: 11px; }
}

/* ===================================================================
   QUOTE PAGE (split: sidebar + form)
   =================================================================== */

.quote-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.quote-side {
  position: sticky;
  top: 100px;
}

.quote-side h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
}

.quote-side > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.quote-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-side-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.quote-side-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--smt-red);
}

.quote-direct {
  background: var(--ink);
  color: var(--text-light);
  padding: 24px;
  border-radius: 2px;
}
.quote-direct .qd-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--smt-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.quote-direct .qd-phone {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}
.quote-direct .qd-meta {
  font-size: 13px;
  color: var(--text-light-soft);
}

.quote-form-pane {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 36px;
}

@media (max-width: 1100px) {
  .quote-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-side { position: static; }
}

@media (max-width: 720px) {
  .quote-form-pane { padding: 24px; }
}

/* ===================================================================
   SERVICES HUB CARDS
   =================================================================== */

.services-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hub-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.hub-card-visual {
  background: var(--ink);
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.hub-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hub-card-visual-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hub-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--smt-yellow);
  color: var(--ink);
  padding: 5px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

.hub-card-meta {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.hub-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smt-red);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hub-card-meta h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hub-card-meta p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 16px;
  flex: 1;
}

.hub-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hub-card-bullets li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 14px;
  position: relative;
}
.hub-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 2px;
  background: var(--smt-red);
}

.hub-card-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smt-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--smt-red);
  transition: gap 0.2s;
  align-self: flex-start;
}
.hub-card-link:hover { gap: 14px; }

@media (max-width: 1100px) {
  .services-hub { grid-template-columns: 1fr; }
  .hub-card { grid-template-columns: 1fr; }
  .hub-card-visual { min-height: 180px; }
}

/* ===================================================================
   ADDITIONAL MOBILE POLISH
   =================================================================== */

@media (max-width: 720px) {
  .subhero { padding: 48px 0 56px; }
  .subhero-title { font-size: clamp(40px, 11vw, 64px); }
  .subhero-blurb { font-size: 16px; }

  .header-inner { padding: 14px 0; }
  .logo-name { font-size: 14px; }
  .logo-tag { font-size: 10px; }

  .section-title { font-size: clamp(32px, 7.5vw, 44px); }

  .cta-section { padding: 64px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-title { font-size: clamp(40px, 9vw, 56px); }
  .quote-form { padding: 24px; }
  .field-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; align-items: flex-start; font-size: 11px; }

  .trust-logos { flex-wrap: wrap; gap: 12px 18px; justify-content: flex-start; }
  .trust-divider { display: none; }
}
