@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================================
   HL Vending Solutions — Site CSS
   Clean static site stylesheet (no Bootstrap)
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- TOKENS ---- */
:root {
  --teal:       #638B8E;
  --teal-dark:  #4e7072;
  --teal-light: #eaf1f2;
  --rose:       #B77166;
  --sun:        #E6CD0F;
  --sun-dark:   #c9b40d;
  --canyon:     #CBB07C;
  --gray-50:    #f9f9f9;
  --gray-100:   #f0f0f0;
  --gray-200:   #e2e2e2;
  --gray-500:   #888;
  --gray-700:   #444;
  --gray-900:   #1a1a1a;
  --font:       'Inter', 'Acumin Pro', 'Myriad Pro', 'Segoe UI', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --nav-h:      80px;
  --max-w:      1120px;
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.72;
  color: var(--gray-700);
  background: #fff;
}
h1 { font-family: var(--font-serif); font-size: 3.1rem;  font-weight: 800; letter-spacing: -0.02em;  line-height: 1.1;  color: var(--gray-900); }
h2 { font-family: var(--font-serif); font-size: 2rem;    font-weight: 700; letter-spacing: -0.01em; line-height: 1.2;  color: var(--teal); }
h3 { font-size: 1.3rem;  font-weight: 700; line-height: 1.3;  color: var(--gray-900); }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }
p  { line-height: 1.75; }

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #2D3A3B;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid #638B8E;
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--teal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0 18px;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--teal); }
.nav-links > li.active > a {
  color: var(--rose);
  box-shadow: inset 0 -3px 0 var(--rose);
}
/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) - 2px);
  left: 0;
  background: #fff;
  border-top: 3px solid var(--teal);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 230px;
  padding: 8px 0;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-cta { flex-shrink: 0; margin-left: 24px; }
.nav-contact-mobile { display: none; }
/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  line-height: 1;
}
.btn-primary   { background: var(--sun);  color: var(--gray-900); border-color: var(--sun); }
.btn-primary:hover { background: var(--sun-dark); border-color: var(--sun-dark); }
.btn-teal      { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-rose      { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn-rose:hover { background: #a06056; border-color: #a06056; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: #fff; color: var(--teal); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---- LAYOUT ---- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section     { padding: 88px 40px; max-width: var(--max-w); margin: 0 auto; }
.section-full { padding: 88px 40px; }
.section-alt  { background: var(--gray-50); }
.section-teal { background: var(--teal); color: #fff; }
.section-dark { background: var(--gray-900); color: #fff; }
.text-center  { text-align: center; }

/* ---- EYEBROW + TYPOGRAPHY AIDS ---- */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.eyebrow-white { color: rgba(255,255,255,0.75); }
.section-lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 620px;
  line-height: 1.75;
}
.lead-center { margin: 0 auto; }
.divider {
  width: 40px; height: 3px;
  background: var(--sun);
  border: none;
  margin: 14px 0 32px;
}
.divider-center { margin: 14px auto 32px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 40px 100px;
  min-height: 500px;
  text-align: left;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(99,139,142,0.82);
}
.hero-slide.active { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-pillars {
  display: flex;
  gap: 0;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-pillars span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.hero-pillars span:first-child { padding-left: 0; border-left: none; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero h1  { color: #fff; font-size: 3.4rem; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 580px;
  margin: 0 0 40px;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--teal);
  color: #fff;
  padding: 64px 40px 56px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1  { color: #fff; font-size: 2.5rem; margin-bottom: 12px; }
.page-hero .hero-sub { margin: 0; max-width: 520px; }

/* ---- STAT BAND ---- */
.stat-band { background: var(--gray-900); padding: 28px 40px; }
.stat-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 8px 48px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 2rem; font-weight: 700; color: var(--sun); line-height: 1; display: block; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ---- VALUE CARDS ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  padding: 36px 28px;
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--teal); margin-bottom: 10px; }
.value-card p  { font-size: 0.95rem; color: var(--gray-700); }

/* ---- PROCESS STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  counter-reset: steps;
}
.step {
  counter-increment: steps;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px 22px;
}
.step::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: 0.88rem; color: var(--gray-700); line-height: 1.65; }

/* ---- MACHINE CARDS ---- */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.machine-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.machine-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.machine-type-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--canyon);
  margin-bottom: 6px;
  display: block;
}
.machine-card h3 { color: var(--rose); margin-bottom: 10px; }
.machine-card p  { font-size: 0.92rem; color: var(--gray-700); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.machine-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-canyon { background: #f5ede0; color: #7a5a30; }

/* ---- DIVISION GRID (homepage) ---- */
.section-warm { background: rgba(203, 176, 124, 0.45); }
.division-cards-outer {
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.division-cards-outer .machine-grid {
  margin-top: 0; /* override default 48px — cards sit flush against hero */
}
.division-grid .machine-card {
  overflow: visible;
  position: relative;
  transition: box-shadow 0.35s ease;
}
.division-grid .machine-card:hover {
  transform: translateY(0);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Card-peek: full-width top panel that slides up into the teal hero zone on hover.
   Hidden by default (opacity: 0) so card content starts at the top naturally.
   On hover: slides up AND fades in — looks like the card face extending upward. */
.card-peek {
  position: absolute;
  top: 0;
  left: -1px;  /* align with card's 1px border */
  right: -1px;
  height: 60px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.division-grid .machine-card:hover .card-peek {
  opacity: 1;
  transform: translateY(-100%); /* slides up its own height into the teal zone */
}

/* Badge pills — sit inside .card-peek on desktop, inline in card on mobile */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-active {
  background: #E6CD0F;
  color: #5a4f00;
}
.badge-soon {
  background: #CBB07C;
  color: #4a3610;
}

/* ---- MACHINE DETAIL PAGE ---- */
.machine-detail-hero {
  background: var(--teal);
  color: #fff;
  padding: 64px 40px 56px;
}
.machine-detail-inner { max-width: var(--max-w); margin: 0 auto; }
.machine-detail-inner .machine-type-label { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.machine-detail-inner h1 { color: #fff; font-size: 2.75rem; margin-bottom: 16px; }
.machine-detail-inner .hero-sub { text-align: left; margin: 0 0 28px; }

/* ---- MACHINE PHOTO ---- */
.machine-photo-section { padding-bottom: 0; text-align: center; }
.machine-photo-img {
  display: inline-block;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.machine-photo-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: 10px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.9rem;
}
.machine-photo-placeholder span:first-child { font-size: 2.5rem; }

/* ---- AGE VERIFICATION CALLOUT ---- */
.age-verify-callout {
  background: var(--teal-light);
  border: 1px solid rgba(99,139,142,0.35);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 32px 40px;
  max-width: 800px;
}
.age-verify-callout .eyebrow { color: var(--teal); }
.age-verify-callout h3 { color: var(--teal); margin-bottom: 8px; }
.age-verify-callout p { font-size: 0.95rem; margin-bottom: 24px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px;
}
.feature-card .feature-icon { font-size: 1.75rem; margin-bottom: 14px; }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p  { font-size: 0.9rem; color: var(--gray-700); }
.best-for-list {
  columns: 2;
  column-gap: 32px;
  margin-top: 32px;
}
.best-for-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  break-inside: avoid;
}
.best-for-list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ---- LOCATION CARDS ---- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.loc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.loc-card h4 { margin-bottom: 4px; }
.loc-card p  { font-size: 0.85rem; color: var(--gray-500); }
.tier-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.tier-1 { background: var(--teal-light); color: var(--teal-dark); }
.tier-2 { background: var(--gray-100); color: var(--gray-500); }

/* ---- CTA SECTION ---- */
.cta-section {
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(183,113,102,0.7) 0%, rgba(183,113,102,0.15) 55%, transparent 70%),
    radial-gradient(ellipse 45% 70% at 85% 30%, rgba(183,113,102,0.6) 0%, rgba(183,113,102,0.12) 50%, transparent 65%),
    radial-gradient(ellipse 35% 60% at 70% 80%, rgba(183,113,102,0.5) 0%, rgba(183,113,102,0.1) 45%, transparent 60%),
    var(--teal);
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 3.4rem); line-height: 1.4; max-width: 1100px; margin: 0 auto; }
.cta-section p  { font-size: 1.05rem; opacity: 0.88; max-width: 480px; margin: 0 auto 36px; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3   { color: var(--teal); margin-bottom: 12px; }
.contact-info p    { font-size: 0.95rem; margin-bottom: 28px; }
.contact-detail    { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  display: block;
  margin-bottom: 3px;
}
.contact-detail-value { font-size: 0.95rem; color: var(--gray-700); }
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  margin-bottom: 18px;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(99,139,142,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; text-align: center; padding: 15px; font-size: 0.95rem; }
.form-note { font-size: 0.78rem; color: #666; margin-top: -10px; margin-bottom: 20px; }

/* ---- UNDER CONSTRUCTION ---- */
.uc-page {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.uc-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.uc-page h1 { font-size: 2.5rem; margin-bottom: 14px; }
.uc-page p  { font-size: 1.05rem; color: var(--gray-700); max-width: 460px; margin: 0 auto 32px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.55);
  padding: 56px 40px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.coming-chip {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-bottom a:hover { color: #fff; }

/* ---- FOOTER SIMPLE ---- */
.site-footer-simple {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 36px 40px;
  color: var(--gray-500);
  font-size: 0.88rem;
}
.footer-simple-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-simple-links {
  display: flex;
  gap: 32px;
}
.footer-simple-links a {
  color: var(--gray-500);
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-simple-links a:hover { color: var(--teal); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .value-grid   { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .machine-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid     { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .best-for-list { columns: 1; }
  .division-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.65rem; }
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 2.25rem; }
  .section { padding: 64px 24px; }
  .section-full { padding: 64px 24px; }
  .container { padding: 0 24px; }
  .page-hero { padding: 48px 24px 40px; }
  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--gray-100);
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    height: auto;
    line-height: 1.5;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-dropdown { display: none !important; }
  .nav-dropdown a { padding: 10px 36px; font-size: 0.85rem; border-bottom: 1px solid var(--gray-100); }
  .nav-cta  { display: none; }
  .nav-contact-mobile { display: list-item; padding: 12px 24px; }
  .nav-contact-mobile a { border-bottom: none !important; padding: 0 !important; display: inline-block; }
  .nav-logo { flex: 1; }
  .nav-logo-text { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner  { gap: 0; padding: 0 20px; }
  /* sections */
  .steps-grid   { grid-template-columns: 1fr; }
  .machine-grid { grid-template-columns: 1fr; }
  .loc-grid     { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-band-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; width: 100%; }
  .stat-item:last-child { border-bottom: none; }
  .division-cards-outer { margin-top: 32px; }
  /* On mobile/tablet: card-peek is inline in the card, hidden until hover/tap */
  .card-peek {
    position: static;
    height: auto;
    border: none;
    border-radius: 0;
    padding: 0 0 16px 0;
    opacity: 0;
    transform: none !important;
    transition: opacity 0.2s ease;
  }
  .division-grid .machine-card:hover .card-peek {
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .machine-grid { grid-template-columns: 1fr; }
}
