/* ==========================================================================
   LYSAM TURBO & DIESEL — Main Stylesheet
   Version: 2.0 Production
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --lime:        #C8F200;
  --lime-dark:   #8FB800;
  --lime-text:   #1a2000;
  --lime-glow:   rgba(200,242,0,0.25);

  /* Neutrals */
  --black:       #111110;
  --charcoal:    #222221;
  --gray-700:    #3d3d3a;
  --gray-500:    #6b6b67;
  --gray-300:    #b4b3ae;
  --gray-100:    #f0efe9;
  --gray-50:     #f7f6f2;
  --white:       #ffffff;

  /* Semantic surfaces */
  --surface-1:   var(--white);
  --surface-2:   var(--gray-50);
  --surface-dark: var(--black);

  /* Borders */
  --border:        rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.15);

  /* Radii */
  --r-sm:  6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);

  /* Typography */
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'Courier New', monospace;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
  --t-slow: 400ms ease;

  /* Nav height */
  --nav-h: 68px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-6);
  background: var(--lime);
  color: var(--lime-text);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--lime-dark);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
.text-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-dark);
  display: block;
  margin-bottom: var(--sp-3);
}

.text-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--black);
}

.text-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: var(--sp-4);
}

.text-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

.text-h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.text-lead {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: var(--sp-8);
}

.text-body {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Accent highlight */
.accent-underline {
  color: var(--lime-dark);
  position: relative;
  display: inline;
}
.accent-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--lime);
  z-index: -1;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
}

.section-sm {
  padding: var(--sp-16) 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--sp-12);
}

.section-header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background var(--t-base), color var(--t-base),
              box-shadow var(--t-base), transform var(--t-base),
              border-color var(--t-base);
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

.btn-primary {
  background: var(--lime);
  color: var(--lime-text);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: #d4f520;
  border-color: #d4f520;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--lime-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn-dark {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* --------------------------------------------------------------------------
   6. NAV
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base);
}
.site-nav.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
  transition: width var(--t-base);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--black); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--t-fast);
}
.nav-phone:hover { color: var(--black); }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--gray-50); }
.hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.hamburger-bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  z-index: 199;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
}
.mobile-nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-links a:hover { color: var(--lime-dark); }
.mobile-nav-links a:last-of-type { border-bottom: none; }
.mobile-nav-cta {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}
.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--lime-dark); }
.breadcrumb-sep { color: var(--gray-300); font-size: 11px; }
.breadcrumb-current { color: var(--black); font-weight: 500; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  padding-top: var(--nav-h);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  padding: var(--sp-20) 0 var(--sp-16);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--sp-6);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime-dark);
  flex-shrink: 0;
}

.hero-h1 { margin-bottom: var(--sp-5); }

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--gray-500);
}
.hero-meta-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

.hero-visual {
  position: relative;
}
.hero-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-50);
  border: 1px solid var(--border);
  position: relative;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Turbo SVG placeholder */
.hero-turbo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0efe9 0%, #e8e7e1 100%);
}
.hero-turbo-placeholder svg {
  width: 55%;
  max-width: 260px;
  opacity: 0.12;
}

.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--sp-5);
  align-items: center;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  margin-bottom: 3px;
}
.hero-stat-lbl {
  font-size: 11px;
  color: var(--gray-500);
  white-space: nowrap;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --------------------------------------------------------------------------
   8. MARQUEE / CLIENTS
   -------------------------------------------------------------------------- */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  white-space: nowrap;
  padding-right: var(--sp-8);
  border-right: 1px solid var(--border);
  margin-right: var(--sp-2);
  flex-shrink: 0;
  /* Fixed — not part of animation */
  position: absolute;
  left: 24px;
  z-index: 2;
}

.marquee-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. SERVICE CARDS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover {
  border-color: rgba(200,242,0,0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gray-50);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 20px;
  transition: background var(--t-base), border-color var(--t-base);
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--lime);
  border-color: var(--lime);
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-2);
  line-height: 1.15;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  color: var(--gray-700);
}

/* --------------------------------------------------------------------------
   10. TRUST / STATS
   -------------------------------------------------------------------------- */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.trust-list { display: flex; flex-direction: column; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
}
.trust-item:first-child { padding-top: 0; }
.trust-item:last-child { border-bottom: none; padding-bottom: 0; }

.trust-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  flex-shrink: 0;
  width: 72px;
  padding-top: 2px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-1);
}
.trust-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* Credentials card */
.credentials-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}
.credentials-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-5);
}

.person-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.person-row:last-of-type { border-bottom: none; }

.person-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--lime-text);
  flex-shrink: 0;
}

.person-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.person-quals { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

.brands-block { margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.brands-lbl {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: var(--sp-3);
}
.brands-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

/* --------------------------------------------------------------------------
   11. PROCESS STEPS
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: var(--sp-12);
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: var(--border-strong);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-4);
}
.step-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.step-num.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--lime-text);
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.step-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* --------------------------------------------------------------------------
   12. REFERENCE / CLIENT CARDS
   -------------------------------------------------------------------------- */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--sp-12);
}

.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: box-shadow var(--t-base);
}
.ref-card:hover { box-shadow: var(--shadow-md); }

.ref-lime { width: 32px; height: 3px; background: var(--lime); border-radius: 2px; margin-bottom: var(--sp-5); }
.ref-company { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: var(--sp-3); }
.ref-scope { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-bottom: var(--sp-5); }
.ref-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.ref-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-dark); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--black);
  padding: var(--sp-20) 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-12);
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.cta-h2 span { color: var(--lime); }
.cta-sub { font-size: 16px; color: var(--gray-300); line-height: 1.65; }
.cta-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-3);
  min-width: 220px;
}
.cta-tel {
  font-size: 14px;
  color: var(--gray-300);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: color var(--t-fast);
}
.cta-tel:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   14. CONTACT / FORM
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  margin-top: var(--sp-12);
}

.contact-list { display: flex; flex-direction: column; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }

.contact-icon-box {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-lbl {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 3px;
}
.contact-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  display: block;
  line-height: 1.5;
  transition: color var(--t-fast);
}
.contact-val:hover { color: var(--lime-dark); }

/* Form */
.quote-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-4); }
.form-group:last-of-type { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label .req { color: var(--lime-dark); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-300); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(143,184,0,0.18);
}
.form-input.is-error { border-color: #d94f4f; }
.field-error {
  font-size: 12px;
  color: #d94f4f;
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b67' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-10) var(--sp-5);
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: var(--sp-4); }
.form-success-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.form-success-msg { font-size: 15px; color: var(--gray-500); }

/* Google Maps */
.maps-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--sp-5);
  height: 240px;
}
.maps-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-brand-logo {
  height: 30px;
  width: auto;
  margin-bottom: var(--sp-4);
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.footer-reg { font-size: 11px; color: var(--charcoal); }

.footer-col-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444;
  margin-bottom: var(--sp-4);
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-nav-list a:hover { color: var(--white); }

.footer-contact-entry {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}
.footer-contact-entry a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-contact-entry a:hover { color: var(--white); }

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid #1a1a18;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-copy { font-size: 12px; color: #383836; }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-links a {
  font-size: 12px;
  color: #383836;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--gray-500); }

/* --------------------------------------------------------------------------
   16. WHATSAPP FLOAT
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  z-index: 300;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
  animation: wa-pulse 3s ease 2.5s 1;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; }

@keyframes wa-pulse {
  0%,100% { transform: scale(1); }
  35%      { transform: scale(1.18); }
  55%      { transform: scale(0.94); }
  75%      { transform: scale(1.06); }
}

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* --------------------------------------------------------------------------
   18. INNER PAGE HERO (Services, About, Contact)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.page-hero .text-h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: var(--sp-4);
}
.page-hero .text-lead { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   19. ABOUT PAGE — TIMELINE
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: var(--sp-10);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--border-strong);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--sp-8);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--lime);
}
.timeline-year {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime-dark);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.timeline-body { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-body {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    padding: var(--sp-12) 0 var(--sp-10);
  }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-stats { left: 0; bottom: -16px; }
  .hero-sub { max-width: 100%; }

  .trust-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .process-grid::before { display: none; }
  .refs-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .cta-aside { align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: var(--sp-16) 0; }
  .section-sm { padding: var(--sp-12) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-stats { position: static; margin-top: var(--sp-4); }
  .hero-img-frame { border-radius: var(--r-md); }
  .wa-float { bottom: 20px; right: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   21. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-nav, .wa-float, .mobile-nav, .cta-band { display: none; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}

/* --------------------------------------------------------------------------
   22. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .wa-float { animation: none; }
}

/* --------------------------------------------------------------------------
   23. IMAGES — fit, transitions, loading states
   -------------------------------------------------------------------------- */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.hero-img-frame img,
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-frame:hover img {
  transform: scale(1.02);
}
/* Image loading shimmer */
img[loading="lazy"] {
  background: var(--gray-100);
}
/* Page hero image full width */
.about-workshop-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .about-workshop-img { height: 240px; }
}

/* --------------------------------------------------------------------------
   24. PRINT STYLES — full
   -------------------------------------------------------------------------- */
@media print {
  .site-nav, .wa-float, .mobile-nav, .cta-band,
  .marquee-strip, .hero-actions, .nav-actions { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  h1,h2,h3 { page-break-after: avoid; }
  .container { max-width: 100%; padding: 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  /* Scroll-reveal animations never fire during print/PDF rendering (no
     scroll events), so force all reveal-gated content to its visible
     end-state — otherwise most sections render blank on the page. */
  .reveal, .reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   25. SVG ICON SYSTEM
   All icons are inline SVGs — no emoji, no icon font dependency
   -------------------------------------------------------------------------- */
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}
.service-icon .icon,
.contact-icon-box .icon {
  width: 22px;
  height: 22px;
}

/* --------------------------------------------------------------------------
   26. SERVICE DETAIL LIST (services page auto-electrics)
   -------------------------------------------------------------------------- */
.service-detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail-list li {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.service-detail-list li strong {
  color: var(--black);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   27. FOUNDER NAME (about page)
   -------------------------------------------------------------------------- */
.founder-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   28. FORM SUCCESS ICON size override
   -------------------------------------------------------------------------- */
.form-success-icon .icon {
  width: 48px;
  height: 48px;
  color: var(--lime-dark);
}
