/* ============================================================
   HYDRAMACHINE INC. — Production Stylesheet
   Design System v1.1

   Color Palette:
   - Crimson (#8B1F1F) — primary brand
   - Steel Blue (#426D8F) — accent
   - Charcoal (#222222) — dark/text
   Fonts: Barlow (display) + Inter (body)
   Spacing: 8px base
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --crimson-900: #4A0D0D; --crimson-800: #611414; --crimson-700: #7A1A1A;
  --crimson-600: #8B1F1F; --crimson-500: #A52929; --crimson-400: #C04444;
  --crimson-300: #D47070; --crimson-200: #E5A0A0; --crimson-100: #F2D0D0;
  --crimson-50:  #FAF0F0;
  --steel-900: #1E3448; --steel-800: #2A4560; --steel-700: #355877;
  --steel-600: #426D8F; --steel-500: #5682A5; --steel-400: #7399B8;
  --steel-300: #96B4CC; --steel-200: #BBCFDF; --steel-100: #DCE7F0;
  --steel-50:  #EEF3F8;
  --charcoal-900: #111111; --charcoal-800: #1A1A1A; --charcoal-700: #222222;
  --charcoal-600: #2D2D2D; --charcoal-500: #3A3A3A;
  --gray-900: #1A1A1A; --gray-800: #2D2D2D; --gray-700: #444444;
  --gray-600: #555555; --gray-500: #717171; --gray-400: #9A9A9A;
  --gray-300: #C4C4C4; --gray-200: #E0E0E0; --gray-100: #F0F0F0;
  --gray-50: #F8F8F8;
  --success: #2E7D4F; --success-bg: #E8F5ED;
  --font-display: 'Barlow', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(17,17,17,0.06);
  --shadow-md: 0 4px 12px rgba(17,17,17,0.08);
  --shadow-lg: 0 8px 24px rgba(17,17,17,0.12);
  --shadow-xl: 0 16px 48px rgba(17,17,17,0.16);
  --max-width: 1200px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal-800);
  color: rgba(255,255,255,0.85);
  padding: 7px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; line-height: 1;
}
.trust-bar .left { display: flex; gap: 6px; align-items: center; }
.trust-bar .right { display: flex; gap: 6px; align-items: center; }
.trust-bar .divider { color: #444; margin: 0 4px; }
.trust-bar .stars { color: #F5C518; letter-spacing: -1px; }
.trust-bar .rating-text { font-weight: 600; color: #fff; }
.trust-bar .phone-num {
  font-family: var(--font-display); font-weight: 700;
  color: #fff; font-size: 13px; letter-spacing: 0.3px;
}
.trust-bar .loc-text { color: rgba(255,255,255,0.6); }
.trust-bar .open-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600; color: #4ADE80;
}
.trust-bar .open-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80; display: inline-block;
}

/* ══════════════════════════════════════════════
   MAIN NAVIGATION
   ══════════════════════════════════════════════ */
.main-nav {
  background: #fff;
  border-bottom: 3px solid var(--crimson-600);
  padding: 0 64px;
  height: 108px;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 80px; width: auto; display: block; }
.footer-logo-img { height: 80px; width: auto; display: block; max-width: min(100%, 320px); }
.logo-mark {
  width: 52px; height: 52px;
  background: var(--charcoal-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 2px solid var(--charcoal-700);
}
.logo-mark::after {
  content: '';
  position: absolute;
  width: 24px; height: 8px;
  background: var(--steel-500);
  border-radius: 4px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.logo-mark::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--crimson-500);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.3px;
}
.logo-text .hydra { color: var(--crimson-600); }
.logo-text .machine { color: var(--charcoal-700); }
.logo-text .inc {
  display: block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: -3px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--gray-700); text-decoration: none;
  position: relative; padding-bottom: 2px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--crimson-600); }
.nav-links a.active {
  color: var(--crimson-600);
  border-bottom: 2px solid var(--crimson-600);
}
.nav-links a .dropdown-arrow {
  display: inline-block; font-size: 8px; margin-left: 3px;
  transition: transform 0.15s;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; color: var(--charcoal-700);
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav-phone svg { width: 16px; height: 16px; fill: var(--crimson-600); }
.nav-quote-btn {
  background: var(--crimson-600); color: #fff;
  padding: 10px 24px; border-radius: 4px;
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; border: none;
  transition: background 0.15s;
  letter-spacing: 0.2px;
}
.nav-quote-btn:hover { background: var(--crimson-700); }

/* Hamburger (mobile only) */
.hamburger {
  display: none; width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 0;
}
.hamburger span { width: 24px; height: 2px; background: var(--charcoal-700); border-radius: 1px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav scroll state */
.main-nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* Services dropdown (desktop) */
.services-dropdown {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--gray-200); border-radius: 8px;
  box-shadow: var(--shadow-lg); padding: 8px 0; min-width: 220px; z-index: 100;
}
.nav-links a:hover > .services-dropdown,
.services-dropdown:hover { display: block; }
.services-dropdown a {
  display: block; padding: 9px 20px; font-size: 14px; font-weight: 500;
  color: var(--charcoal-600); text-decoration: none; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.services-dropdown a:hover {
  background: var(--crimson-50); color: var(--crimson-700);
}

/* Form status messages */
.form-status-msg {
  padding: 12px 16px; border-radius: 6px; font-size: 14px; margin-top: 12px;
  font-weight: 500; line-height: 1.5;
}
.form-status-msg.success {
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
}
.form-status-msg.error {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99;
  padding: 24px 20px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--charcoal-700); padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  display: block;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--crimson-600); }
.mobile-menu .mobile-menu-cta {
  margin-top: 24px; display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu .mobile-menu-cta a {
  text-align: center; padding: 14px; border-radius: 6px;
  font-size: 16px; border: none;
}
.mobile-menu .mobile-menu-cta .mm-call {
  background: var(--crimson-600); color: #fff;
  border-bottom: none;
}
.mobile-menu .mobile-menu-cta .mm-quote {
  background: var(--steel-600); color: #fff;
  border-bottom: none;
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-color: #2a2a2a;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.82) 0%, rgba(30,30,30,0.65) 50%, rgba(17,17,17,0.78) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-content { max-width: 660px; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--crimson-400);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--crimson-400);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 50px; font-weight: 900;
  line-height: 1.1; letter-spacing: -0.5px;
  color: #fff; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--crimson-300); }
.hero-sub {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px; max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; }
.btn-hero-primary {
  background: var(--crimson-600); color: #fff;
  padding: 16px 36px; border-radius: 5px;
  font-family: var(--font-display); font-size: 16px;
  font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(139,31,31,0.35);
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--crimson-500); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,31,31,0.4); }
.btn-hero-primary svg { width: 18px; height: 18px; fill: currentColor; }
.btn-hero-secondary {
  background: transparent; color: #fff;
  padding: 14px 28px; border-radius: 5px;
  font-family: var(--font-display); font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-hero-secondary svg { width: 16px; height: 16px; fill: currentColor; }

.hero-trust-points {
  display: flex; gap: 28px; font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero-trust-points span { display: flex; align-items: center; gap: 6px; }
.hero-trust-points .check {
  width: 18px; height: 18px;
  background: rgba(46,125,79,0.2);
  border: 1px solid rgba(46,125,79,0.4);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: #4ADE80;
}

/* ══════════════════════════════════════════════
   SERVICE HERO (sub-pages)
   ══════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-700) 100%);
  padding: 56px 64px;
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 40px);
}
.service-hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
}
.service-hero .breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.service-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.service-hero .breadcrumb a:hover { color: var(--crimson-300); }
.service-hero .breadcrumb .sep { margin: 0 8px; }
.service-hero .breadcrumb .current { color: #fff; font-weight: 600; }
.service-hero h1 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 900;
  color: #fff; margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-hero .hero-subtitle {
  color: var(--crimson-300);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  margin-bottom: 12px;
}
.service-hero .hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 620px; line-height: 1.65;
  margin-bottom: 20px;
}
.service-hero .hero-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.service-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.service-hero .hero-badge svg { width: 14px; height: 14px; }
.service-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary-sm {
  background: var(--crimson-600); color: #fff;
  padding: 12px 28px; border-radius: 5px;
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-primary-sm:hover { background: var(--crimson-500); }
.btn-outline-sm {
  background: transparent; color: #fff;
  padding: 10px 24px; border-radius: 5px;
  font-family: var(--font-display); font-size: 14px;
  font-weight: 600; border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-outline-sm:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-sm svg { width: 16px; height: 16px; fill: currentColor; }

/* Content sections within service main */
.content-section { margin-bottom: 48px; }
.content-section:last-child { margin-bottom: 0; }

/* Image placeholder for service pages */
.img-placeholder {
  height: 280px; border-radius: 10px;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gray-400); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin: 24px 0; overflow: hidden;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Capability list (alias for service-main ul) */
.capability-list { list-style: none; padding: 0; columns: 2; column-gap: 24px; margin: 16px 0 28px; }
.capability-list li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 8px; break-inside: avoid;
}
.capability-list li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}

/* Inline step process (service pages) */
.step-process { margin: 20px 0 28px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--gray-100);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--crimson-600) 0%, var(--crimson-500) 100%);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  box-shadow: 0 3px 8px rgba(139,31,31,0.25);
}
.step-content h4 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.step-content p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* Gallery items */
.gallery-item {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 10px;
  overflow: hidden; transition: all 0.25s;
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gallery-image {
  height: 200px;
  background: linear-gradient(135deg, var(--steel-50) 0%, var(--gray-100) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray-400); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; position: relative;
  overflow: hidden;
}
.gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--steel-600); color: #fff;
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.gallery-caption { padding: 18px 20px; }
.gallery-caption strong {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--charcoal-700); display: block; margin-bottom: 4px;
}
.gallery-caption span { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* Related service cards */
.related-card {
  border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 28px; text-align: center; transition: all 0.25s;
}
.related-card:hover {
  border-color: var(--steel-200);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.related-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--crimson-50) 0%, #fff 100%);
  border: 2px solid var(--crimson-100); border-radius: 14px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.related-card:hover .related-icon { background: var(--crimson-600); border-color: var(--crimson-600); }
.related-icon svg { width: 24px; height: 24px; stroke: var(--crimson-600); fill: none; stroke-width: 1.5; transition: stroke 0.2s; }
.related-card:hover .related-icon svg { stroke: #fff; }
.related-card h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 8px;
}
.related-card p { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }

/* Form field alias */
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 5px; letter-spacing: 0.2px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 14px; font-family: var(--font-body);
  background: var(--gray-50); color: var(--charcoal-700);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--steel-400);
  box-shadow: 0 0 0 3px rgba(66,109,143,0.1);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.5; }
.form-phone-alt {
  text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 16px; line-height: 1.5;
}
.form-phone-alt a { color: var(--charcoal-700); font-weight: 700; }

/* Sidebar trust items */
.sidebar-trust-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--gray-600); padding: 7px 0;
}
.check-circle {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%; background: var(--success-bg);
  border: 1px solid rgba(46,125,79,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--success); font-weight: 700;
}

/* Gallery section heading */
.gallery-section .eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--steel-600); margin-bottom: 8px;
  text-align: center;
}
.gallery-section h2 {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  color: var(--charcoal-700); margin-bottom: 28px; letter-spacing: -0.2px;
  text-align: center;
}
.related-section h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--charcoal-700); margin-bottom: 28px; text-align: center;
}

/* Type icon in cylinder type cards */
.type-icon { margin-right: 6px; color: var(--crimson-500); }

/* Scenario cards (Custom Fabrication page) */
.scenario-cards { display: flex; flex-direction: column; gap: 16px; }
.scenario-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--steel-50); border-radius: 10px; padding: 20px;
  border-left: 3px solid var(--crimson-500);
}
.scenario-card .scenario-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--crimson-600); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.scenario-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--charcoal-600); }
.scenario-card strong { color: var(--charcoal-800); }

/* Machine categories (Machining page) */
.machine-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.machine-cat {
  background: var(--steel-50); border-radius: 10px; padding: 24px;
  border: 1px solid var(--steel-100);
}
.machine-cat h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 16px; color: var(--charcoal-800); }
.machine-cat .cat-icon { width: 24px; height: 24px; color: var(--crimson-500); }
.machine-cat .cat-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.machine-cat p { font-size: 14px; color: var(--charcoal-500); line-height: 1.6; margin: 0; }

/* Advantage callout (Machining page) */
.advantage-callout {
  background: var(--crimson-50); border-left: 4px solid var(--crimson-500);
  padding: 28px; border-radius: 0 10px 10px 0;
}
.advantage-callout h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--crimson-700); margin-bottom: 12px;
}
.advantage-callout p { font-size: 15px; line-height: 1.7; color: var(--charcoal-600); margin: 0; }

/* Supply cards (Hoses page) */
.supply-cards { display: flex; flex-direction: column; gap: 20px; }
.supply-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--steel-50); border-radius: 10px; padding: 24px;
  border: 1px solid var(--steel-100);
}
.supply-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--crimson-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--crimson-600);
}
.supply-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.supply-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal-800); margin-bottom: 6px; }
.supply-card p { font-size: 14px; color: var(--charcoal-500); line-height: 1.6; margin: 0; }

/* Partner cards (Hoses page) */
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner-card {
  background: #fff; border: 1px solid var(--steel-100);
  border-radius: 10px; padding: 24px; text-align: center;
}
.partner-logo {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: var(--steel-600); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
}
.partner-card h4 { font-size: 17px; font-weight: 700; color: var(--charcoal-800); margin-bottom: 8px; }
.partner-card p { font-size: 14px; color: var(--charcoal-500); line-height: 1.5; margin-bottom: 8px; }
.partner-url { font-size: 13px; color: var(--steel-600); font-weight: 600; }

/* Advantage list (Hoses page) */
.advantage-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.advantage-list li {
  position: relative; padding-left: 32px;
  font-size: 15px; line-height: 1.6; color: var(--charcoal-600);
}
.advantage-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--crimson-50);
  color: var(--crimson-600); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

/* Spec table (Custom Hoists page) */
.spec-table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
  font-size: 14px;
}
.spec-table th, .spec-table td {
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--steel-100);
}
.spec-table th {
  background: var(--steel-50); font-weight: 700;
  color: var(--charcoal-700); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-table td { color: var(--charcoal-600); }
.spec-table tr:last-child td { border-bottom: none; }

/* App tags (Custom Hoists page) */
.app-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.app-tag {
  background: var(--steel-50); border: 1px solid var(--steel-100);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; color: var(--charcoal-600); font-weight: 500;
}

/* Why buy cards (Custom Hoists page) */
.why-buy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-buy-card {
  background: var(--steel-50); border-radius: 10px; padding: 24px;
  border: 1px solid var(--steel-100);
}
.why-buy-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal-800); margin-bottom: 8px; }
.why-buy-card p { font-size: 14px; color: var(--charcoal-500); line-height: 1.6; margin: 0; }

/* Spec hero (Disassembly page) */
.spec-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  background: var(--steel-50); border-radius: 12px; padding: 32px;
  margin: 24px 0; border: 1px solid var(--steel-100);
}
.spec-hero-main { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.spec-hero-number {
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  color: var(--crimson-600); line-height: 1; letter-spacing: -2px;
}
.spec-hero-unit { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal-700); margin-top: 4px; }
.spec-hero-label { font-size: 13px; color: var(--charcoal-400); margin-top: 8px; }
.spec-details { display: flex; flex-direction: column; gap: 16px; }
.spec-detail-item { display: flex; align-items: flex-start; gap: 12px; }
.spec-detail-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--crimson-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--crimson-600); }
.spec-detail-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.spec-detail-text { font-size: 14px; color: var(--charcoal-600); line-height: 1.5; }
.spec-detail-text strong { display: block; color: var(--charcoal-800); font-size: 15px; margin-bottom: 2px; }

/* Use cases (Disassembly page) */
.use-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.use-case {
  display: flex; align-items: center; gap: 12px;
  background: var(--steel-50); padding: 14px 18px; border-radius: 8px;
  font-size: 14px; color: var(--charcoal-600);
}
.use-case-icon { font-size: 20px; flex-shrink: 0; }

/* Sidebar dealer badge (Custom Hoists page) */
.sidebar-dealer {
  background: var(--crimson-50); border: 1px solid var(--crimson-100);
  border-radius: 10px; padding: 24px; text-align: center;
}
.dealer-badge-icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: var(--crimson-600); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
}
.sidebar-dealer h4 { font-size: 16px; font-weight: 700; color: var(--crimson-700); margin-bottom: 8px; }
.sidebar-dealer p { font-size: 13px; color: var(--charcoal-500); line-height: 1.5; margin: 0; }

/* Walk-in box (Hoses page) */
.sidebar-walkin {
  background: var(--steel-50); border: 1px solid var(--steel-100);
  border-radius: 10px; padding: 24px; text-align: center;
}
.sidebar-walkin h4 { font-size: 16px; font-weight: 700; color: var(--charcoal-800); margin-bottom: 8px; }
.sidebar-walkin p { font-size: 14px; color: var(--charcoal-500); margin-bottom: 12px; }
.walkin-address { font-size: 14px; font-weight: 600; color: var(--charcoal-700); margin-bottom: 4px; }
.walkin-hours { font-size: 13px; color: var(--charcoal-400); }

/* Info box (Machining page) */
.sidebar-info {
  background: var(--steel-50); border: 1px solid var(--steel-100);
  border-radius: 10px; padding: 24px; text-align: center;
}
.sidebar-info h4 { font-size: 16px; font-weight: 700; color: var(--charcoal-800); margin-bottom: 8px; }
.sidebar-info p { font-size: 14px; color: var(--charcoal-500); margin-bottom: 12px; }
.info-phone { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--crimson-600); }

/* Hero subtitle */
.hero-subtitle {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--crimson-400); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  background: var(--steel-50);
  border-bottom: 1px solid var(--steel-100);
  padding: 44px 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: var(--steel-200);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 900;
  color: var(--crimson-600);
  line-height: 1; letter-spacing: -1px;
}
.stat-label {
  font-size: 14px; font-weight: 500;
  color: var(--gray-600); margin-top: 6px;
}

/* ══════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════ */
.section-header, .section-hdr { text-align: center; margin-bottom: 48px; max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--steel-600); margin-bottom: 10px;
}
.section-header h2, .section-hdr h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--charcoal-700);
  letter-spacing: -0.3px; margin-bottom: 12px;
}
.section-header p, .section-hdr p {
  font-size: 16px; color: var(--gray-600);
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SERVICES GRID (homepage)
   ══════════════════════════════════════════════ */
.services-section {
  padding: 80px 64px; background: #fff;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.service-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px; overflow: hidden;
  transition: all 0.25s ease;
  background: #fff;
}
.service-card:hover {
  border-color: var(--crimson-200);
  box-shadow: 0 12px 32px rgba(139,31,31,0.08);
  transform: translateY(-3px);
}
.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-card-img .img-label {
  font-size: 11px; color: var(--steel-500); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.service-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--crimson-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-img::after { transform: scaleX(1); }
.service-card-body { padding: 28px 24px; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 8px;
}
.service-card-body p {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 16px;
}
.service-card-link {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--steel-600); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s, gap 0.15s;
}
.service-card-link:hover { color: var(--crimson-600); gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ══════════════════════════════════════════════
   INDUSTRIES BAR
   ══════════════════════════════════════════════ */
.industries-section {
  background: var(--gray-50);
  padding: 48px 64px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}
.industries-section .eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 24px;
}
.industry-row {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto;
}
.industry-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.industry-icon {
  width: 62px; height: 62px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-700);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.industry-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.industry-item:hover .industry-icon {
  border-color: var(--steel-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--crimson-600);
}
.industry-item span { font-size: 12px; font-weight: 600; color: var(--gray-600); }

/* ══════════════════════════════════════════════
   WHY HYDRAMACHINE (Value Props)
   ══════════════════════════════════════════════ */
.why-section { padding: 80px 64px; background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width); margin: 0 auto;
}
.why-item { text-align: center; padding: 24px 16px; }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--steel-50) 0%, #fff 100%);
  border: 2px solid var(--steel-100);
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.why-item:hover .why-icon {
  border-color: var(--crimson-200);
  background: var(--crimson-50);
  transform: scale(1.05);
}
.why-icon svg { width: 32px; height: 32px; stroke: var(--steel-600); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item:hover .why-icon svg { stroke: var(--crimson-600); }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 10px;
}
.why-item p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section { background: var(--crimson-50); padding: 80px 64px; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--crimson-100);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 56px; color: var(--crimson-200);
  line-height: 1; position: absolute;
  top: 16px; left: 24px;
}
.testimonial-stars {
  color: #F5C518; font-size: 15px;
  margin-bottom: 14px; letter-spacing: 1px;
}
.testimonial-card blockquote {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.7; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--steel-600);
}
.testimonial-info .name { font-weight: 700; font-size: 14px; color: var(--charcoal-700); }
.testimonial-info .role { font-size: 12px; color: var(--gray-500); }
.testimonial-badge {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; padding: 4px 10px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 4px; font-size: 10px; font-weight: 600; color: var(--gray-500);
}
.testimonial-badge .g-icon { color: #4285F4; font-weight: 800; }

/* Single testimonial (service sub-pages) */
.testimonial-single {
  background: var(--gray-50); padding: 48px 64px;
  border-top: 1px solid var(--gray-200);
}
.testimonial-single-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.testimonial-single blockquote {
  font-size: 18px; font-style: italic; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--crimson-700) 0%, var(--crimson-600) 60%, var(--crimson-500) 100%);
  color: #fff;
  padding: 72px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  margin-bottom: 12px; color: #fff;
  letter-spacing: -0.3px;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  margin-bottom: 32px; max-width: 480px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-band-btns {
  display: flex; justify-content: center;
  gap: 16px; align-items: center;
}
.btn-cta-white {
  background: #fff; color: var(--crimson-700);
  padding: 16px 36px; border-radius: 5px;
  font-family: var(--font-display); font-size: 16px;
  font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.btn-cta-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-cta-outline {
  background: transparent; color: #fff;
  padding: 14px 28px; border-radius: 5px;
  font-family: var(--font-display); font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--charcoal-800);
  color: rgba(255,255,255,0.65);
  padding: 56px 64px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--max-width); margin: 0 auto 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--crimson-600);
  display: inline-block;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; margin-bottom: 12px;
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}
.footer-brand-name .fh { color: var(--crimson-400); }
.footer-brand-name .fm { color: #fff; }
.footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 13px; transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--crimson-300); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 13px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--crimson-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--crimson-300); text-decoration: none; font-weight: 600; }
.footer-contact-item a:hover { color: var(--crimson-200); }

.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--crimson-300); }

/* ══════════════════════════════════════════════
   MOBILE STICKY BAR
   ══════════════════════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 8px 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  z-index: 90;
  gap: 8px;
}
.mobile-sticky-btn {
  flex: 1; padding: 14px;
  border-radius: 6px; border: none;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-sticky-btn.call-btn { background: var(--crimson-600); color: #fff; }
.mobile-sticky-btn.quote-btn { background: var(--steel-600); color: #fff; }

/* ══════════════════════════════════════════════
   SERVICE SUB-PAGE: 2-COLUMN LAYOUT
   ══════════════════════════════════════════════ */
.service-content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 64px;
}
.service-main h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--charcoal-700); margin-bottom: 16px;
}
.service-main h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 12px;
}
.service-main p {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 16px;
}
.service-main ul {
  margin-bottom: 24px; padding-left: 0; list-style: none;
}
.service-main ul li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 8px;
}
.service-main ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 88px; }
.sidebar-form {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 28px;
  box-shadow: var(--shadow-md); margin-bottom: 24px;
}
.sidebar-form h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 16px;
  text-align: center;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--gray-300); border-radius: 5px;
  font-size: 14px; font-family: var(--font-body);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--crimson-400);
  box-shadow: 0 0 0 3px rgba(139,31,31,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--crimson-600); color: #fff;
  border: none; border-radius: 5px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--crimson-700); }
.form-note {
  text-align: center; font-size: 11px;
  color: var(--gray-500); margin-top: 10px;
}

/* Trust box (sidebar) */
.sidebar-trust {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 24px; margin-bottom: 24px;
}
.sidebar-trust h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 14px;
  text-align: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 13px; color: var(--gray-600);
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Emergency box (sidebar) */
.sidebar-emergency {
  background: var(--crimson-50);
  border: 2px solid var(--crimson-200);
  border-radius: 10px; padding: 24px;
  text-align: center;
}
.sidebar-emergency h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--crimson-700); margin-bottom: 8px;
}
.sidebar-emergency p {
  font-size: 13px; color: var(--gray-600);
  margin-bottom: 12px; line-height: 1.5;
}
.sidebar-emergency .emergency-phone {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--crimson-600);
}
.sidebar-emergency .emergency-phone a {
  color: var(--crimson-600); text-decoration: none;
}

/* Info box (sidebar variant) */
.sidebar-info {
  background: var(--steel-50);
  border: 1px solid var(--steel-200);
  border-radius: 10px; padding: 24px;
  text-align: center;
}
.sidebar-info h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--steel-700); margin-bottom: 8px;
}
.sidebar-info p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Walk-in box (sidebar variant) */
.sidebar-walkin {
  background: var(--success-bg);
  border: 1px solid #B8DBC7;
  border-radius: 10px; padding: 24px;
  text-align: center;
}
.sidebar-walkin h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--success); margin-bottom: 8px;
}
.sidebar-walkin p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Dealer box (sidebar variant) */
.sidebar-dealer {
  background: linear-gradient(135deg, var(--charcoal-700) 0%, var(--charcoal-600) 100%);
  border-radius: 10px; padding: 24px; text-align: center; color: #fff;
}
.sidebar-dealer h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
}
.sidebar-dealer p { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.dealer-badge-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--crimson-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
}

/* ══════════════════════════════════════════════
   GALLERY / PROJECT CARDS
   ══════════════════════════════════════════════ */
.gallery-section {
  background: var(--gray-50); padding: 56px 64px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.gallery-item { text-align: left; }
.gallery-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 8px; overflow: hidden;
  transition: all 0.25s;
}
.gallery-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.gallery-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-body { padding: 20px; }
.gallery-card-body h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 6px;
}
.gallery-card-body p {
  font-size: 13px; color: var(--gray-600); line-height: 1.6;
}

/* ══════════════════════════════════════════════
   RELATED SERVICES
   ══════════════════════════════════════════════ */
.related-section { padding: 56px 64px; background: #fff; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}

/* ══════════════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; margin: 32px 0;
}
.process-step { text-align: center; padding: 20px 12px; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--crimson-600); color: #fff;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 6px;
}
.process-step p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════
   FORMS (contact page)
   ══════════════════════════════════════════════ */
.contact-form-section { padding: 80px 64px; background: #fff; }
.contact-form-container {
  max-width: 800px; margin: 0 auto;
}
.contact-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form-grid .full-width { grid-column: 1 / -1; }

/* ══════════════════════════════════════════════
   CONTENT SPECIFIC: Machine Categories
   ══════════════════════════════════════════════ */
.machine-categories {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.machine-cat {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px;
  transition: all 0.2s;
}
.machine-cat:hover { border-color: var(--steel-300); box-shadow: var(--shadow-sm); }
.cat-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.cat-icon svg { width: 20px; height: 20px; stroke: var(--steel-600); fill: none; stroke-width: 1.5; }
.machine-cat h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.machine-cat p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Advantage callout */
.advantage-callout {
  background: linear-gradient(135deg, var(--crimson-50) 0%, #fff 100%);
  border-left: 4px solid var(--crimson-600);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px; margin: 32px 0;
}
.advantage-callout h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--crimson-700); margin-bottom: 8px;
}
.advantage-callout p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════════════════════
   CONTENT SPECIFIC: Supply/Partner Cards
   ══════════════════════════════════════════════ */
.supply-cards { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.supply-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px;
}
.supply-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.supply-icon svg { width: 22px; height: 22px; stroke: var(--steel-600); fill: none; stroke-width: 1.5; }
.supply-card h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.supply-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.partner-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0;
}
.partner-card {
  text-align: center; padding: 24px 16px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 8px; transition: all 0.2s;
}
.partner-card:hover { border-color: var(--steel-300); box-shadow: var(--shadow-sm); }
.partner-logo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--steel-50); border: 2px solid var(--steel-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--steel-600);
}
.partner-card h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.partner-card p { font-size: 12px; color: var(--gray-500); }

/* Advantage list */
.advantage-list { margin: 24px 0; }
.advantage-list li {
  position: relative; padding-left: 28px;
  font-size: 14px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 10px; list-style: none;
}
.advantage-list li::before {
  content: '✓'; position: absolute; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: 2px;
}

/* ══════════════════════════════════════════════
   CONTENT SPECIFIC: Spec Table & Tags
   ══════════════════════════════════════════════ */
.spec-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0; border-radius: 8px; overflow: hidden;
}
.spec-table thead th {
  background: var(--charcoal-700); color: #fff;
  padding: 12px 16px; text-align: left;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
}
.spec-table tbody td {
  padding: 10px 16px; font-size: 14px; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.spec-table tbody tr:nth-child(even) { background: var(--gray-50); }

.app-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.app-tag {
  padding: 6px 14px; border-radius: 20px;
  background: var(--steel-50); border: 1px solid var(--steel-200);
  font-size: 12px; font-weight: 600; color: var(--steel-700);
}

/* Why buy cards */
.why-buy-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.why-buy-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px;
}
.why-buy-card h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 6px;
}
.why-buy-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ══════════════════════════════════════════════
   CONTENT SPECIFIC: Spec Hero & Use Cases
   ══════════════════════════════════════════════ */
.spec-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  background: var(--gray-100);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 32px 36px;
  margin: 24px 0;
  color: var(--charcoal-700);
}
.spec-hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.spec-hero-number {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  color: var(--crimson-600); line-height: 1;
}
.spec-hero-unit {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--charcoal-700);
}
.spec-hero-label { font-size: 14px; color: var(--gray-600); margin-top: 4px; }
.spec-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.spec-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px;
}
.spec-detail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--steel-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--steel-700);
}
.spec-detail-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.use-cases {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.use-case {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px;
}
.use-case-icon {
  font-size: 28px; margin-bottom: 10px;
}
.use-case h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.use-case p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Scenario cards */
.scenario-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin: 24px 0;
}
.scenario-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px;
}
.scenario-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--crimson-600); color: #fff;
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scenario-card h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.scenario-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Cylinder type cards */
.cylinder-types {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0;
}
.cyl-type-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 20px; text-align: center;
  transition: all 0.2s;
}
.cyl-type-card:hover { border-color: var(--crimson-200); box-shadow: var(--shadow-sm); }
.cyl-type-card h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 6px;
}
.cyl-type-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.equip-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin: 20px 0;
}
.equip-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-600);
}
.equip-item svg { width: 16px; height: 16px; stroke: var(--steel-600); fill: none; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FORM SUCCESS/ERROR STATES
   ══════════════════════════════════════════════ */
.form-status {
  padding: 16px; border-radius: 8px;
  margin-top: 16px; font-size: 14px; font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--success-bg); color: var(--success);
  border: 1px solid #B8DBC7;
}
.form-status.error {
  display: block;
  background: var(--crimson-50); color: var(--crimson-700);
  border: 1px solid var(--crimson-200);
}

/* ══════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ══════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-700) 100%);
  padding: 80px 64px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 40px);
}
.about-hero-content { position: relative; z-index: 1; }
.about-section { padding: 80px 64px; }
.about-section.alt-bg { background: var(--gray-50); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: var(--max-width); margin: 0 auto;
}
.about-img-placeholder {
  height: 400px; border-radius: 12px;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* (Old contact styles removed - see CONTACT US PAGE section below) */

/* ══════════════════════════════════════════════
   INDUSTRIES PAGE SPECIFIC
   ══════════════════════════════════════════════ */
.industry-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.industry-card-full {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 32px; text-align: center;
  transition: all 0.25s;
}
.industry-card-full:hover {
  border-color: var(--crimson-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.industry-card-full .ic-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--steel-50); border: 2px solid var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px;
}
.industry-card-full h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 8px;
}
.industry-card-full p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PAGE HERO (Services Overview, generic inner pages)
   ══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 64px 64px 56px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-700) 50%, var(--charcoal-600) 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 40px);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-700) 50%, var(--charcoal-600) 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 40px);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
}
.page-hero .breadcrumb,
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--crimson-300); }
.breadcrumb .bc-sep { margin: 0 8px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 900;
  color: #fff; margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.page-hero h1 .accent { color: var(--crimson-300); }
.page-hero .hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 620px; line-height: 1.65;
}

/* ══════════════════════════════════════════════
   SERVICES OVERVIEW GRID
   ══════════════════════════════════════════════ */
.overview-grid-section {
  padding: 64px;
  background: var(--gray-50);
}
.overview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--max-width); margin: 0 auto;
}
.ov-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.ov-card:hover {
  border-color: var(--crimson-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.ov-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ov-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ov-card-img .img-label {
  font-size: 11px; color: var(--steel-500); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.ov-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--crimson-600); color: #fff;
  padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-display);
}
.ov-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.ov-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--charcoal-700); margin-bottom: 10px;
}
.ov-card-body p {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.65; margin-bottom: 14px;
}
.ov-card-body ul {
  list-style: none; padding: 0; margin-bottom: 20px;
}
.ov-card-body ul li {
  position: relative; padding-left: 22px;
  font-size: 13px; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 6px;
}
.ov-card-body ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--success); font-weight: 700; font-size: 12px;
}
.ov-link {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--steel-600);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  transition: color 0.15s, gap 0.15s;
}
.ov-link:hover { color: var(--crimson-600); gap: 12px; }
.ov-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════════════════════
   MID-PAGE CTA STRIP
   ══════════════════════════════════════════════ */
.mid-cta {
  background: var(--steel-50);
  border-top: 1px solid var(--steel-100);
  border-bottom: 1px solid var(--steel-100);
  padding: 40px 64px;
  display: flex; justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.mid-cta-text h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--charcoal-700); margin-bottom: 4px;
}
.mid-cta-text p { font-size: 14px; color: var(--gray-600); }
.btn-crimson {
  background: var(--crimson-600); color: #fff;
  padding: 14px 32px; border-radius: 5px;
  font-family: var(--font-display); font-size: 15px;
  font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-crimson:hover { background: var(--crimson-700); transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   TESTIMONIAL STRIP (single inline)
   ══════════════════════════════════════════════ */
.testi-strip {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 64px;
  text-align: center;
  max-width: 100%;
}
.testi-stars {
  color: #F5C518; font-size: 18px;
  margin-bottom: 16px; letter-spacing: 2px;
}
.testi-strip blockquote {
  font-size: 18px; font-style: italic;
  color: var(--gray-600); line-height: 1.7;
  max-width: 680px; margin: 0 auto 16px;
}
.testi-author {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal-700);
}
.testi-role {
  font-size: 13px; color: var(--gray-500); margin-bottom: 10px;
}
.testi-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 4px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  font-size: 11px; font-weight: 600; color: var(--gray-500);
}
.testi-badge .g-icon { color: #4285F4; font-weight: 800; }

/* ══════════════════════════════════════════════
   ABOUT US PAGE
   ══════════════════════════════════════════════ */
.about-story { padding: 80px 64px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.about-story-text h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--charcoal-700); margin-bottom: 8px; letter-spacing: -0.3px; }
.story-accent { display: inline-block; width: 40px; height: 3px; background: var(--crimson-600); margin-bottom: 20px; }
.about-story-text p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.about-story-image {
  height: 400px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--steel-500); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid var(--steel-200); position: relative;
}
.about-story-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--crimson-600); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }

.about-values { padding: 80px 64px; background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: var(--max-width); margin: 0 auto; }
.value-card { text-align: center; padding: 32px 24px; background: #fff; border-radius: 10px; border: 1px solid var(--gray-200); transition: all 0.25s; }
.value-card:hover { border-color: var(--crimson-200); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--crimson-50) 0%, #fff 100%);
  border: 2px solid var(--crimson-100); border-radius: 16px;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.value-card:hover .value-icon { background: var(--crimson-50); border-color: var(--crimson-200); transform: scale(1.05); }
.value-icon svg { width: 32px; height: 32px; stroke: var(--crimson-600); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--charcoal-700); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.about-team { padding: 80px 64px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: var(--max-width); margin: 0 auto; }
.team-card { text-align: center; transition: transform 0.2s; }
.team-card:hover { transform: translateY(-3px); }
.team-photo {
  width: 100%; height: 220px; border-radius: 10px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--gray-100) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid var(--gray-200); overflow: hidden; position: relative;
}
.team-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--crimson-600); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.team-card:hover .team-photo::after { transform: scaleX(1); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--charcoal-700); margin-bottom: 2px; }
.team-card .role { font-size: 13px; color: var(--gray-500); }

.about-facility { padding: 80px 64px; background: var(--steel-50); border-top: 1px solid var(--steel-100); }
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-width); margin: 0 auto; }
.facility-photo {
  height: 220px; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--steel-200) 0%, var(--steel-100) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--steel-600); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid var(--steel-200); transition: all 0.25s; position: relative;
}
.facility-photo:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.facility-photo .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; padding: 20px 16px 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
}
.facility-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-certs { padding: 64px; }
.certs-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; }
.cert-item { text-align: center; transition: transform 0.2s; }
.cert-item:hover { transform: translateY(-2px); }
.cert-badge {
  width: 88px; height: 88px; background: #fff; border: 2px solid var(--gray-200);
  border-radius: 50%; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.cert-item:hover .cert-badge { border-color: var(--steel-300); box-shadow: var(--shadow-md); }
.cert-badge .cert-icon { font-size: 28px; margin-bottom: 2px; }
.cert-badge .cert-text { font-size: 8px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.cert-item .cert-name { font-size: 12px; color: var(--gray-600); font-weight: 600; }

/* ══════════════════════════════════════════════
   CONTACT US PAGE
   ══════════════════════════════════════════════ */
.contact-main { padding: 64px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: var(--max-width); margin: 0 auto; }
.contact-form-section h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--charcoal-700); margin-bottom: 8px; }
.contact-form-section .form-desc { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.form-field label .req { color: var(--crimson-600); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-size: 14px; font-family: var(--font-body); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--steel-400); box-shadow: 0 0 0 3px rgba(66,109,143,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--crimson-600); color: #fff; padding: 16px 32px; border: none;
  border-radius: 6px; font-family: var(--font-display); font-size: 16px; font-weight: 700; cursor: pointer;
  width: 100%; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(139,31,31,0.2);
}
.form-submit:hover { background: var(--crimson-500); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(139,31,31,0.3); }
.form-submit svg { width: 18px; height: 18px; fill: currentColor; }
.form-note { font-size: 12px; color: var(--gray-500); margin-top: 16px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note svg { width: 14px; height: 14px; fill: var(--gray-400); }

/* Contact details 2x2 grid */
.contact-details-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 20px;
}
.contact-detail-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--crimson-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--crimson-600); fill: none; }
.contact-detail-text { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.contact-detail-text strong { color: var(--charcoal-700); display: block; font-size: 15px; margin-bottom: 2px; }
.contact-detail-text a { color: var(--crimson-600); text-decoration: none; font-weight: 600; }
.contact-detail-text a:hover { color: var(--crimson-500); }

.contact-map {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--steel-200); margin-bottom: 20px; background: #fff;
}
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.map-address { padding: 10px 14px 4px; font-size: 13px; color: var(--gray-600); font-weight: 500; }
.map-links { padding: 0 14px 12px; display: flex; align-items: center; }
.map-link { font-size: 13px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: all 0.15s; }
.map-link-btn {
  background: var(--crimson-600);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(184, 20, 34, 0.2);
}
.map-link-btn:hover {
  background: var(--crimson-700);
  color: #fff;
  box-shadow: 0 6px 12px rgba(184, 20, 34, 0.26);
}
.contact-map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--steel-100) 0%, var(--steel-50) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}

.contact-review-badge {
  background: var(--success-bg); border: 1px solid #B8E0C8; border-radius: 10px;
  padding: 24px; text-align: center;
}
.crb-icon { font-size: 11px; font-weight: 800; color: #4285F4; margin-bottom: 4px; }
.crb-rating { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--charcoal-700); line-height: 1; }
.crb-stars { color: #F5C518; font-size: 20px; margin: 6px 0; letter-spacing: 1px; }
.crb-count { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.crb-link { font-size: 13px; color: var(--steel-600); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color 0.15s; }
.crb-link:hover { color: var(--crimson-600); }

/* ══════════════════════════════════════════════
   INDUSTRIES PAGE
   ══════════════════════════════════════════════ */
.industries-grid-section { padding: 80px 64px; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.industry-card {
  border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden;
  transition: all 0.25s; background: #fff;
}
.industry-card:hover { border-color: var(--steel-300); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.industry-card-image {
  height: 120px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--steel-50) 0%, var(--gray-50) 100%);
  position: relative; overflow: hidden;
}
.industry-card-image .ind-icon {
  width: 64px; height: 64px; background: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-700);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.25s;
}
.industry-card-image .ind-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.industry-card:hover .ind-icon { border-color: var(--steel-300); box-shadow: var(--shadow-md); transform: scale(1.08); color: var(--crimson-600); }
.industry-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--steel-600); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.industry-card:hover .industry-card-image::after { transform: scaleX(1); }
.industry-card-body { padding: 24px; }
.industry-card-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--charcoal-700); margin-bottom: 8px; }
.industry-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; }
.services-used { font-size: 12px; color: var(--gray-500); }
.services-used strong { color: var(--steel-600); }

.ind-mid-cta {
  background: var(--steel-50); padding: 36px 64px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--steel-100); border-bottom: 1px solid var(--steel-100);
}
.ind-mid-cta-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal-700); margin-bottom: 4px; }
.ind-mid-cta-text p { font-size: 15px; color: var(--gray-600); }

.ind-testimonials { background: var(--crimson-50); padding: 80px 64px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.testi-card {
  background: #fff; padding: 32px 28px; border-radius: 10px; border: 1px solid var(--crimson-100);
  transition: box-shadow 0.25s; position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 48px; color: var(--crimson-200); line-height: 1; position: absolute; top: 16px; left: 24px; }
.testi-card .t-stars { color: #F5C518; font-size: 15px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-card blockquote { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-card .t-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--steel-600);
}
.testi-info .t-name { font-weight: 700; font-size: 14px; color: var(--charcoal-700); }
.testi-info .t-company { font-size: 12px; color: var(--gray-500); }
.testi-industry {
  display: inline-block; margin-top: 12px; padding: 3px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 700; color: var(--steel-600);
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--steel-50); border: 1px solid var(--steel-100);
}
.testi-google-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; margin-left: 8px;
  padding: 3px 10px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 3px; font-size: 10px; font-weight: 600; color: var(--gray-500);
}
.testi-google-badge .g-icon { color: #4285F4; font-weight: 800; }

/* ══════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }

/* ══════════════════════════════════════════════
   HERO FORM - Two Column Service Hero
   ══════════════════════════════════════════════ */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-form-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--charcoal-700);
  margin-bottom: 4px; text-align: center;
}
.hero-form-sub {
  font-size: 13px; color: var(--gray-500);
  text-align: center; margin-bottom: 20px;
}
.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hf-field { margin-bottom: 10px; }
.hf-field input,
.hf-field select,
.hf-field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 13px;
  font-family: var(--font-body);
  background: var(--gray-50); color: var(--charcoal-700);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.hf-field input:focus,
.hf-field select:focus,
.hf-field textarea:focus {
  outline: none; border-color: var(--steel-400);
  box-shadow: 0 0 0 3px rgba(66,109,143,0.1);
}
.hf-field textarea { resize: vertical; min-height: 60px; }
.hf-field input::placeholder,
.hf-field textarea::placeholder {
  color: var(--gray-400); font-size: 13px;
}
.hf-submit {
  width: 100%; padding: 13px;
  background: var(--crimson-600); color: #fff;
  border: none; border-radius: 6px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(139,31,31,0.25);
}
.hf-submit:hover {
  background: var(--crimson-500);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139,31,31,0.35);
}
.hf-submit svg { width: 16px; height: 16px; }
.hf-phone-alt {
  text-align: center; font-size: 12px;
  color: var(--gray-500); margin-top: 12px;
}
.hf-phone-alt a {
  color: var(--charcoal-700); font-weight: 700;
}
.form-status { text-align: center; margin-top: 8px; font-size: 13px; }

/* Trust strip below hero form */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  min-width: 0;
  flex-shrink: 0;
}
.hero-trust-item svg { flex-shrink: 0; }
.hero-trust-stars {
  display: flex; gap: 2px; flex-shrink: 0;
}
.hero-trust-bold {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.hero-trust-label {
  font-size: 12px; color: rgba(255,255,255,0.65);
}
.hero-trust-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE: TABLET (max-width: 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-bar { padding: 7px 24px; font-size: 11px; }
  .main-nav { padding: 0 40px; height: 92px; }
  .nav-inner { gap: 12px; }
  .nav-logo-img { height: 64px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-quote-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 92px; }
  .hero { padding: 56px 40px; min-height: 420px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .stats-bar { padding: 36px 40px; }
  .stat-number { font-size: 36px; }
  .services-section { padding: 60px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-section { padding: 40px; }
  .industry-row { gap: 32px; }
  .why-section { padding: 60px 40px; }
  .why-grid { gap: 24px; }
  .testimonials-section { padding: 60px 40px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid .testimonial-card:nth-child(3) { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .cta-band { padding: 56px 40px; }
  .cta-band h2 { font-size: 28px; }
  .footer { padding: 48px 40px 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Service sub-page layout */
  .service-content-layout { padding: 40px; grid-template-columns: 1fr 320px; gap: 32px; }
  .service-hero { padding: 40px; }
  .service-hero-grid { grid-template-columns: 1fr 360px; gap: 32px; }
  .hero-form-card { padding: 24px; }
  .hero-form-card h3 { font-size: 18px; }
  .hf-field input, .hf-field select, .hf-field textarea { padding: 9px 10px; font-size: 12px; }
  .hf-submit { padding: 11px; font-size: 14px; }
  .hero-trust-strip { gap: 8px 12px; padding: 10px 12px; }
  .hero-trust-label { font-size: 11px; }
  .hero-trust-bold { font-size: 13px; }
  .hero-trust-divider { display: none; }
  .gallery-section { padding: 40px; }
  .related-section { padding: 40px; }
  .testimonial-single { padding: 40px; }

  /* Service sub-page specific components - tablet */
  .scenario-cards { gap: 12px; }
  .machine-categories { gap: 16px; }
  .supply-cards { gap: 16px; }
  .partner-cards { gap: 16px; }
  .why-buy-cards { gap: 16px; }
  .use-cases { gap: 12px; }
  .spec-hero { gap: 24px; padding: 28px; }
  .spec-hero-number { font-size: 48px; }
  .app-tags { gap: 8px; }
  .step-process { gap: 16px; }

  /* About page - tablet */
  .about-story { padding: 60px 40px; }
  .about-story-grid { gap: 40px; }
  .about-values { padding: 60px 40px; }
  .about-team { padding: 60px 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facility { padding: 60px 40px; }
  .about-certs { padding: 60px 40px; }
  .certs-row { gap: 24px; }

  /* Contact page - tablet */
  .contact-main { padding: 60px 40px; }
  .contact-layout { gap: 40px; }
  .contact-details-grid { gap: 12px; }
  .contact-detail-card { padding: 18px; gap: 12px; }

  /* Industries page - tablet */
  .industries-grid-section { padding: 60px 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-mid-cta { padding: 40px; }
  .ind-testimonials { padding: 60px 40px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services overview */
  .page-hero { padding: 48px 40px; }
  .page-hero h1 { font-size: 34px; }
  .overview-grid-section { padding: 48px 40px; }
  .mid-cta { padding: 32px 40px; }
  .testi-strip { padding: 40px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE: SMALL TABLET (max-width: 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Stack hero to single column */
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-hero { padding: 32px 24px; }
  .service-hero h1 { font-size: 30px; }
  .service-hero .hero-desc { font-size: 15px; }
  .service-hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary-sm, .btn-outline-sm { width: 100%; justify-content: center; }

  /* Form stays comfortable width */
  .hero-form-card { padding: 24px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-form-col { width: 100%; }
  .hf-row { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Trust strip - stacked on small tablet */
  .hero-trust-strip {
    gap: 8px 14px;
    padding: 12px 16px;
    max-width: 480px; margin: 0 auto; width: 100%;
    box-sizing: border-box;
  }
  .hero-trust-divider { display: none; }

  /* Sidebar stacks */
  .service-content-layout { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .spec-details { grid-template-columns: 1fr; }

  /* Contact page - small tablet */
  .page-hero { padding: 40px 24px 32px; }
  .page-hero h1 { font-size: 32px; }
  .contact-main { padding: 40px 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-details-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* About page - small tablet */
  .about-story { padding: 48px 24px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-values { padding: 48px 24px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-team { padding: 48px 24px; }
  .about-facility { padding: 48px 24px; }
  .about-certs { padding: 48px 24px; }

  /* Industries page - small tablet */
  .industries-grid-section { padding: 48px 24px; }
  .section-hdr h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE: MOBILE (max-width: 640px)
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Trust bar */
  .trust-bar { padding: 6px 16px; font-size: 10px; justify-content: center; gap: 4px; }
  .trust-bar .left { display: none; }
  .trust-bar .right { gap: 6px; }

  /* Navigation */
  .main-nav { padding: 0 20px; height: 68px; }
  .nav-logo-img { height: 52px; }
  .nav-logo .logo-mark { width: 40px; height: 40px; }
  .logo-text { font-size: 17px; }
  .logo-text .inc { font-size: 8px; }
  .mobile-menu { top: 68px; }

  /* Mobile sticky bar */
  .mobile-sticky { display: flex; }

  /* Hero */
  .hero { padding: 40px 20px; min-height: auto; }
  .hero h1 { font-size: 28px; line-height: 1.15; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-trust-points { flex-direction: column; gap: 8px; margin-top: 4px; }

  /* Stats */
  .stats-bar { padding: 28px 20px; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 34px; }
  .stat-item:not(:last-child)::after { display: none; }

  /* Services */
  .services-section { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 26px; }
  .service-card-img { height: 140px; }

  /* Industries */
  .industries-section { padding: 36px 20px; }
  .industry-row { gap: 20px; }
  .industry-icon { width: 48px; height: 48px; font-size: 18px; border-radius: 10px; }
  .industry-item span { font-size: 10px; }

  /* Why section */
  .why-section { padding: 48px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Testimonials */
  .testimonials-section { padding: 48px 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:nth-child(3) { max-width: none; }

  /* CTA band */
  .cta-band { padding: 48px 20px; }
  .cta-band h2 { font-size: 24px; }
  .cta-band p { font-size: 15px; }
  .cta-band-btns { flex-direction: column; gap: 10px; }
  .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 36px 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Service sub-page - further overrides handled in hero form mobile block below */
  .service-content-layout { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .service-sidebar { position: static; }
  .gallery-section { padding: 32px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .related-section { padding: 32px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .testimonial-single { padding: 32px 20px; }

  /* Content-specific responsive */
  .machine-categories { grid-template-columns: 1fr; }
  .cylinder-types { grid-template-columns: 1fr; }
  .partner-cards { grid-template-columns: 1fr; }
  .why-buy-cards { grid-template-columns: 1fr; }
  .use-cases { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .spec-hero { text-align: center; padding: 24px 20px; }
  .spec-hero-number { font-size: 42px; }
  .spec-hero-label { font-size: 13px; }
  .spec-details { grid-template-columns: 1fr; gap: 12px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .scenario-cards { gap: 10px; }
  .scenario-card { padding: 14px 14px 14px 48px; }
  .scenario-num { width: 28px; height: 28px; font-size: 13px; left: 10px; }
  .supply-cards { gap: 14px; }
  .supply-card { padding: 16px; gap: 12px; }
  .supply-icon { min-width: 36px; width: 36px; height: 36px; }
  .supply-icon svg { width: 18px; height: 18px; }
  .advantage-callout { padding: 20px; }
  .advantage-list li { padding-left: 28px; }
  .spec-table { font-size: 14px; }
  .spec-table th, .spec-table td { padding: 8px 12px; }
  .app-tags { gap: 6px; }
  .app-tag { font-size: 12px; padding: 5px 12px; }
  .step-process { gap: 14px; }
  .step { gap: 12px; }
  .step-num { min-width: 32px; width: 32px; height: 32px; font-size: 14px; }
  .hero-subtitle { font-size: 12px; }

  /* About page - mobile */
  .about-story { padding: 48px 20px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-story-image { height: 250px; }
  .about-values { padding: 48px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-team { padding: 48px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-photo { height: 180px; }
  .about-facility { padding: 48px 20px; }
  .facility-grid { grid-template-columns: 1fr; gap: 16px; }
  .facility-photo { height: 180px; }
  .about-certs { padding: 48px 20px; }
  .certs-row { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .cert-badge { width: 60px; height: 60px; }

  /* Contact page - mobile */
  .contact-main { padding: 24px 16px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-section h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field input, .form-field select, .form-field textarea { padding: 10px 12px; font-size: 14px; }
  .form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
  .contact-details-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-detail-card { padding: 16px; gap: 12px; }
  .contact-detail-icon { width: 36px; height: 36px; }
  .contact-detail-icon svg { width: 16px; height: 16px; }
  .contact-detail-text { font-size: 13px; }
  .contact-detail-text strong { font-size: 14px; }
  .contact-map iframe { height: 180px; }

  /* Industries page - mobile */
  .industries-grid-section { padding: 32px 20px; }
  .industries-grid { grid-template-columns: 1fr; gap: 16px; }
  .ind-mid-cta { flex-direction: column; text-align: center; padding: 32px 20px; gap: 16px; }
  .ind-testimonials { padding: 48px 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Page hero + section headers mobile */
  .page-hero { padding: 28px 16px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero .hero-desc { font-size: 14px; }
  .section-hdr h2 { font-size: 24px; }
  .section-hdr p { font-size: 14px; }
  .section-hdr { margin-bottom: 28px; }

  /* Services overview mobile */
  .overview-grid-section { padding: 32px 20px; }
  .overview-grid { grid-template-columns: 1fr; gap: 20px; }
  .ov-card-img { height: 160px; }
  .mid-cta { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .testi-strip { padding: 32px 20px; }
  .testi-strip blockquote { font-size: 15px; }

  /* Hero form - mobile */
  .service-hero { padding: 28px 16px; }
  .service-hero h1 { font-size: 26px; }
  .service-hero .hero-subtitle { font-size: 14px; }
  .service-hero .hero-desc { font-size: 14px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary-sm, .btn-outline-sm { width: 100%; justify-content: center; }
  .hero-form-card { padding: 18px; max-width: 100%; }
  .hero-form-card h3 { font-size: 17px; }
  .hero-form-sub { font-size: 12px; margin-bottom: 14px; }
  .hf-row { grid-template-columns: 1fr; gap: 0; }
  .hf-field { margin-bottom: 8px; }
  .hf-field input, .hf-field select, .hf-field textarea { padding: 10px 12px; font-size: 14px; }
  .hf-submit { padding: 12px; font-size: 14px; }
  .hero-trust-strip { gap: 6px 10px; padding: 10px 12px; max-width: 100%; }
  .hero-trust-divider { display: none; }
  .hero-trust-item { gap: 4px; font-size: 11px; }
  .hero-trust-bold { font-size: 13px; }
  .hero-trust-label { font-size: 11px; }
  .hero-trust-stars svg { width: 12px; height: 12px; }
}
