/*
 * SPYDERCRANE® Design System
 * styles.css — Shared stylesheet for all pages
 *
 * Fonts:     Exo 2 (display/headlines) + Open Sans (body) — loaded in header.cfm
 * Colors:    Red #b70006 · Slate #1a1e2b · White #ffffff
 * Version:   1.0
 * Updated:   2026
 *
 * Usage: <link rel="stylesheet" href="/styles.css"> (via header.cfm)
 */

/* Fonts loaded via <link> in header.cfm (avoids render-blocking @import) */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --red:       #b70006;
  --red-dark:  #8f0005;
  --slate:     #1c1c20;
  --slate-mid: #2e2e33;
  --white:     #ffffff;
  --off-white: #f7f7f7;
  --gray-100:  #f1f1f1;
  --gray-200:  #e2e2e2;
  --gray-400:  #9a9a9e;
  --gray-600:  #5c5c62;
  --gray-800:  #29292d;
  --font-d:    'Exo 2', sans-serif;
  --font-b:    'Open Sans', sans-serif;
  --max:       1200px;
  --r-sm:      4px;
  --r-md:      8px;
  --r-lg:      12px;
}

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1,h2,h3,h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.05;
  color: var(--gray-800);
}

.eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  padding: 12px 24px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
/* Use on light backgrounds where btn-secondary (white text) is unreadable */
.btn-secondary-light { background: var(--white); color: var(--gray-800); border: 1.5px solid #c6c6c6; }
.btn-secondary-light:hover { background: var(--off-white); border-color: var(--gray-600); }
.btn-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--slate);
}

.header-top {
  background: rgba(0,0,0,0.25);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-social {
  display: flex;
  gap: 16px;
}

.header-social a {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
}
.header-social a:hover { color: var(--white); }

.header-phone {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.header-phone a {
  color: inherit;
  transition: color 0.2s;
}
.header-phone a:hover { color: var(--red); }

.header-main .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: none;
  aspect-ratio: 275 / 46;
  object-fit: contain;
  object-position: left center;
}

/* Wide wordmark — preserve aspect ratio everywhere the brand logo appears */
.brand-logo,
.footer-logo,
.contact-modal-logo {
  display: block;
  width: auto;
  max-width: none;
  aspect-ratio: 275 / 46;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-text span { color: var(--red); }
.logo-text sup { font-size: 10px; vertical-align: super; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }

/* Models dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}
/* Invisible bridge so the menu stays open while moving the cursor down */
.nav-dropdown:hover::after,
.nav-dropdown.open::after,
.nav-dropdown:focus-within::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  z-index: 199;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 6px 0 8px;
  margin-top: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 9px 16px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-dropdown-menu .nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0;
}
.mobile-menu .mobile-models-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 16px 24px 6px;
}
.mobile-menu .mobile-model-link {
  font-size: 13px;
  padding-left: 36px;
}
.mobile-menu .mobile-model-link--subnav {
  padding-left: 24px;
}
.mobile-menu .mobile-model-link--highlight {
  font-weight: 600;
  color: var(--red);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

/* Mobile hamburger — base hidden; shown via media query below */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Compact desktop nav — 8 items + CTA must fit in 1200px container */
@media (min-width: 1201px) {
  .header-main .container { gap: 20px; }

  .main-nav {
    gap: 0;
    justify-content: flex-end;
    min-width: 0;
  }

  .nav-link {
    font-size: 11.5px;
    padding: 8px 9px;
    letter-spacing: -0.01em;
  }

  .nav-cta .btn {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* Tablet / narrow — drawer menu */
@media (max-width: 1200px) {
  .header-main .container { gap: 16px; }

  .main-nav,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .site-logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .site-logo-img {
    height: auto;
    width: min(360px, calc(100vw - 88px));
    max-width: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--slate-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 0;
}

.mobile-menu a {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 12px 24px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
  margin: 12px 24px 0;
  text-align: center;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: 12px;
  font-weight: 700;
  border: none;
}

.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--slate);
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/hero-home.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(28,28,32,0.62) 0%, rgba(28,28,32,0.32) 50%, rgba(28,28,32,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: var(--font-d);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--red); }

.hero-stat-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ============================================================
   MODELS
   ============================================================ */
.models-section { background: var(--off-white); padding: 80px 0; }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  margin-top: 10px;
  margin-bottom: 20px;
}
.section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 100%;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

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

.model-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}

.model-card-img {
  background: var(--gray-100);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}
.model-card-img img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.model-card-body {
  padding: 16px;
  border-top: 1px solid var(--gray-200);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.model-card-name {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.model-card-cap {
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}

.model-card-link {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}
.model-card-link::after { content: ' →'; }


.model-card-rental {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(183,0,6,0.08);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(183,0,6,0.2);
}

/* ============================================================
   MODELS SHOWCASE (shared include)
   ============================================================ */
.models-showcase {
  background: #898989;
  padding: 48px 0 56px;
}

.models-showcase h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin: 0 0 36px;
}

.models-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  align-items: stretch;
}

.models-showcase-card {
  text-align: center;
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s;
}

.models-showcase-card:hover { transform: translateY(-4px); }

.series-img-wrap {
  position: relative;
  height: 220px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.models-showcase-card img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%) translateY(var(--plane-y, 0));
  transform-origin: bottom center;
}

.models-showcase-card.series-card-sm img {
  max-width: 145px;
  max-height: 145px;
}

.models-showcase-card.series-card-300 img {
  max-width: 232px;
  max-height: 232px;
}

.models-showcase-card.series-card-lg img {
  max-width: 255px;
  max-height: 255px;
}

.models-showcase-card.series-card-pc { --plane-y: -29px; }
.models-showcase-card.series-card-090 { --plane-y: -3px; }
.models-showcase-card.series-card-200 { --plane-y: -8px; }
.models-showcase-card.series-card-300 { --plane-y: 10px; }
.models-showcase-card.series-card-400 { --plane-y: -16px; }
.models-showcase-card.series-card-500 { --plane-y: -3px; }
.models-showcase-card.series-card-700 { --plane-y: -2px; }
.models-showcase-card.series-card-1006 { --plane-y: -4px; }

.models-showcase-card .series-name {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  min-height: 1.35em;
}

.models-showcase-card .series-spec {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  min-height: calc(2 * 1.6 * 13px);
}

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

@media (max-width: 768px) {
  .models-showcase { padding: 40px 0 48px; }

  .models-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 320px;
    margin: 0 auto;
  }

  .series-img-wrap { height: 200px; }

  .models-showcase-card img,
  .models-showcase-card.series-card-sm img,
  .models-showcase-card.series-card-300 img,
  .models-showcase-card.series-card-lg img {
    max-width: min(220px, 72vw);
    max-height: 200px;
  }

  .models-showcase-card .series-name { font-size: 18px; }
  .models-showcase-card .series-spec { font-size: 14px; min-height: 0; }

  .models-showcase-card.series-card-pc { --plane-y: -20px; }
  .models-showcase-card.series-card-090 { --plane-y: -2px; }
  .models-showcase-card.series-card-200 { --plane-y: -4px; }
  .models-showcase-card.series-card-300 { --plane-y: 7px; }
  .models-showcase-card.series-card-400 { --plane-y: -11px; }
  .models-showcase-card.series-card-500 { --plane-y: -2px; }
  .models-showcase-card.series-card-700 { --plane-y: 0; }
  .models-showcase-card.series-card-1006 { --plane-y: -2px; }
}

/* ============================================================
   STRIP CTA
   ============================================================ */
.strip-cta {
  background: var(--red);
  padding: 36px 0;
}
.strip-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-cta h3 {
  font-family: var(--font-d);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.strip-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   RENTAL STRIP (homepage)
   ============================================================ */
.rental-section {
  background: var(--off-white);
  padding: 72px 0;
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.rental-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.rental-copy > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.rental-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.rental-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  font-family: var(--font-b);
}

.rental-checklist-item span {
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.rental-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rental-models-panel {
  background: var(--slate);
  border-radius: var(--r-lg);
  padding: 36px;
  color: var(--white);
}

.rental-models-title {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.rental-models-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rental-model-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rental-model-row:first-child {
  padding-top: 0;
}

.rental-model-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rental-model-info {
  min-width: 0;
  flex: 1;
}

.rental-model-name {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.rental-model-spec {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  line-height: 1.4;
}

.rental-model-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.rental-model-link:hover {
  color: #ff4d52;
}

.rental-models-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.rental-models-footer a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.rental-models-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   HOMEPAGE — section utilities
   ============================================================ */
.section-header--full { max-width: 100%; }

.models-section-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 4px;
}

.models-section-title-row h2 { margin-bottom: 0; }

.text-link-red {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.text-link-red:hover { color: var(--red-dark); }

.section-intro { color: var(--gray-600); }

.text-link-red-inline {
  color: var(--red);
  font-weight: 600;
}

.text-link-red-inline:hover { color: var(--red-dark); }

.models-grid--last { margin-bottom: 0; }

.model-cta-bar--spaced { margin-top: 36px; }

.model-cta-heading {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
}

.power-section {
  background: var(--slate);
  padding: 72px 0;
}

.power-section .section-header h2 { color: var(--white); }

.power-section .section-header p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

.power-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
}

.power-card--highlight {
  background: rgba(183, 0, 6, 0.15);
  border-color: rgba(183, 0, 6, 0.4);
}

.power-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.power-card-title {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.power-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.power-card--highlight .power-card-desc {
  color: rgba(255, 255, 255, 0.55);
}

.power-card-badge {
  margin-top: 12px;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.power-section-cta { text-align: center; }

.power-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.power-section-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.why-content > p.lead-spacing {
  margin-top: 20px;
  margin-bottom: 32px;
}

.industries-section .section-header h2 { color: var(--white); }

.testimonial-photo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonial-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.testimonial-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 30, 43, 0.88) 0%, rgba(26, 30, 43, 0.65) 45%, rgba(26, 30, 43, 0.35) 100%);
}

.testimonial-photo .container {
  position: relative;
  z-index: 1;
}

.testimonial-photo__content { max-width: 600px; }

.testimonial-photo .eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
}

.testimonial-quote {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-rule {
  width: 36px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-company {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-b);
}

.testimonial-company:hover { color: var(--white); }

.locations-section h2 { margin-top: 12px; }

.locations-section .locations-copy > p {
  margin-top: 20px;
  margin-bottom: 32px;
}

.locations-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.quote-section h2 { margin-top: 12px; }

.quote-section .quote-copy > p {
  margin-top: 20px;
  margin-bottom: 28px;
}

.trust-list--tight { margin-top: 4px; }

/* ============================================================
   WHY
   ============================================================ */
.why-section { background: var(--white); padding: 80px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  border-radius: var(--r-lg);
  background: #ededed;
  padding: 32px;
  max-height: 480px;
  object-fit: contain;
}



.why-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.why-content > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 36px;
}

.why-content .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.why-content .why-feature { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(183,0,6,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-feature-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 3px;
}
.why-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--slate); padding: 80px 0; }
.industries-section .section-header h2 { color: var(--white); }
.industries-section .section-header p { color: rgba(255,255,255,0.5); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: border-color 0.2s, background 0.2s;
}
.industry-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(183,0,6,0.5);
}

.industry-icon { font-size: 26px; margin-bottom: 14px; }
.industry-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.industry-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section { background: var(--off-white); padding: 80px 0; }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.locations-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.locations-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 32px;
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section { background: var(--white); padding: 80px 0; }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.quote-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.quote-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 36px;
}

.trust-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 0; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}
.trust-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(183,0,6,0.1);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-form {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
}

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

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 18px; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
  font-family: var(--font-b);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-radios { display: flex; gap: 16px; flex-wrap: wrap; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  cursor: pointer;
}
.form-radio input[type="radio"] {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  flex-shrink: 0;
}

.training-type-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.training-type-radios .form-radio { font-size: 14px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--slate); padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-text {
  font-size: 20px;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  border-top: none;
}
.footer-bottom .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-trademark {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.25);
  max-width: 600px;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }



/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--gray-400);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gray-800); }

.modal-eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.modal-form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#contact-modal-form,
#quote-modal-form,
#training-modal-form,
#parts-modal-form,
#tech-modal-form {
  position: relative;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: none;
  margin-bottom: 16px;
}

.footer-bottom .container--flush { padding: 0; }

.modal-box--md { max-width: 560px; }

.modal-box--sm { max-width: 520px; }

.modal-box--lg {
  max-width: 860px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.modal-box--scroll {
  max-height: 90vh;
  overflow-y: auto;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  margin-top: 4px;
}

.modal-footnote {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 10px;
}

.modal-footnote a {
  color: var(--red);
  font-weight: 600;
}

.modal-intro-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0 0 20px;
}

.modal-textarea--sm { resize: vertical; min-height: 70px; }

.modal-textarea--md { resize: vertical; min-height: 90px; }

.modal-textarea--lg { resize: vertical; min-height: 100px; }

.modal-close--raised {
  top: 16px;
  right: 20px;
  z-index: 2;
}

.contact-modal-form-wrap {
  padding: 36px 32px;
  overflow-y: auto;
  max-height: 90vh;
}

.contact-modal-title-text {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-social-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.contact-social-btn {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-modal-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.contact-modal-info {
  background: var(--slate);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-modal-eyebrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}

.contact-modal-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-left: 2px solid var(--red);
  padding-left: 8px;
  margin-bottom: 10px;
}

.contact-modal-section-label.muted {
  color: rgba(255, 255, 255, 0.5);
  border-left-color: rgba(255, 255, 255, 0.2);
}

.contact-modal-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-modal-phones {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-modal-phones a,
.contact-modal-phones .contact-modal-phone-row {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-modal-phones a:hover {
  color: var(--white);
}

.contact-modal-phones .contact-phone-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-modal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  display: inline-block;
}

.contact-modal-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-modal-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-modal-divider.tight {
  gap: 0;
}

.contact-modal-dept-phone {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.contact-form-eyebrow.is-tech {
  color: var(--red);
}

.contact-modal-logo {
  height: 38px;
  width: auto;
  max-width: none;
  display: block;
}

@media (max-width: 720px) {
  .contact-modal-grid {
    grid-template-columns: 1fr;
  }

  .contact-modal-info {
    padding: 28px 24px;
    gap: 20px;
  }
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  font-family: var(--font-b);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus { border-color: var(--red); }

.modal-field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.modal-field-hint {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 6px;
  line-height: 1.4;
}

.modal-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-800);
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.modal-radio input[type="radio"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
}

.modal-form-group input[type="file"] {
  padding: 8px 0;
  border: none;
  background: transparent;
}

.model-cta-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.model-cta-text {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--gray-600);
}

.model-cta-text strong {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  display: block;
  margin-bottom: 2px;
}

.model-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.model-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .model-cta-bar { padding: 20px 16px; }
  .model-cta-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 16px; }
  .model-cta-btns { flex-direction: column; width: 100%; }
  .model-cta-btns .btn { width: 100%; justify-content: center; }
  .modal-form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   MOBILE — max 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-dropdown .nav-dropdown-menu { display: none !important; }
  .teaser-grid { grid-template-columns: 1fr !important; gap: 40px !important; }



  .power-grid { grid-template-columns: 1fr 1fr !important; }

  .rental-section { padding: 48px 0; }
  .rental-grid { grid-template-columns: 1fr; gap: 32px; }
  .rental-models-panel { padding: 28px 20px; }
  .rental-actions { flex-direction: column; }
  .rental-actions .btn { width: 100%; justify-content: center; }

  .header-top { display: none; }

  .header-main .container { gap: 0; height: 60px; }

  .site-logo { max-width: calc(100% - 48px); }

  .site-logo-img {
    width: min(280px, calc(100vw - 72px));
    height: auto;
    max-width: none;
  }

  .hamburger { display: flex; }

  .hero { padding-top: 80px; min-height: auto; padding-bottom: 48px; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .models-grid,
  .models-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .model-card-img { height: 130px; }

  .strip-cta .container { flex-direction: column; text-align: center; }
  .strip-btns { justify-content: center; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-content .why-features { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  

  .industries-grid { grid-template-columns: 1fr 1fr; }

  @media (max-width: 480px) { .power-grid { grid-template-columns: 1fr !important; } }

  .locations-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-frame iframe { height: 300px; }

  .quote-grid { grid-template-columns: 1fr; gap: 40px; }

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

  .form-radios { flex-direction: column; align-items: flex-start; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  .footer-bottom .container { flex-direction: column; gap: 12px; }
}

/* ============================================================
   SMALL MOBILE — max 480px
   ============================================================ */
@media (max-width: 480px) {

  .models-grid,
  .models-row2 {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 14px; }
}