/* ============================================
   BRODRICKS PLUMBING GROUP — PRODUCTION STYLES
   ============================================ */

/* ----- DESIGN TOKENS ----- */
:root {
  /* OKLCH Color System */
  --color-base:     oklch(11% 0.012 250);
  --color-bg:       oklch(14% 0.014 250);
  --color-surface:  oklch(17% 0.016 250);

  /* Light sections */
  --color-light-bg: oklch(96.5% 0.005 252);
  --color-card:     oklch(99% 0.003 252);
  --color-border:   oklch(89% 0.009 252);

  /* Brand blue */
  --color-primary:        oklch(71% 0.11 236);
  --color-primary-hover:  oklch(65% 0.12 236);
  --color-primary-bg:     oklch(71% 0.11 236 / 0.10);
  --color-primary-border: oklch(71% 0.11 236 / 0.28);

  /* Accent gold — stat numbers only */
  --color-accent: oklch(74% 0.13 70);

  /* Text on light */
  --color-text-dark:       oklch(13% 0.012 250);
  --color-text-muted-dark: oklch(50% 0.012 252);

  /* Text on dark */
  --color-text-light:       oklch(94% 0.006 252);
  --color-text-muted-light: oklch(68% 0.01 252);

  /* Borders */
  --border-dark:  0.5px solid oklch(100% 0 0 / 0.08);
  --border-light: 0.5px solid oklch(89% 0.009 252);

  /* Spacing — 4pt scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  --pad-section: clamp(80px, 10vw, 128px);
  --pad-x:       clamp(20px, 6vw, 96px);
  --max-w:       1440px;

  /* Typography */
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Radius */
  --r-xs: 2px;
  --r-sm: 4px;
  --r:    8px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

section[id] { scroll-margin-top: 72px; }

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--color-primary);
  color: oklch(100% 0 0);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.15s;
}
.skip-link:focus { top: 16px; }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: oklch(0% 0 0 / 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-light-bg);
  line-height: 1.6;
}

img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
address { font-style: normal; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-pad {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.005em;
}

h3 {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.h2--light { color: var(--color-text-light); }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.eyebrow--light  { color: var(--color-primary); }
.eyebrow--accent { color: var(--color-primary); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(52px, 7vw, 80px);
}

.section-header-left h2 { margin-top: 0; }

.section-sub {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.78;
  padding-bottom: 4px;
}

.section-sub--light { color: var(--color-text-muted-light); }

.section-header--full {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.section-header--full .section-sub { margin-top: 16px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 44px;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 0.845rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background   0.18s var(--ease),
    color        0.18s var(--ease),
    border-color 0.18s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn:active { opacity: 0.8; }

.btn-lg {
  height: 46px;
  padding: 0 28px;
  font-size: 0.875rem;
}

.btn-accent {
  background: var(--color-primary);
  color: oklch(100% 0 0);
  border-color: var(--color-primary);
}
.btn-accent:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-light);
  border-color: oklch(100% 0 0 / 0.18);
}
.btn-ghost:hover {
  background: oklch(100% 0 0 / 0.06);
  border-color: oklch(100% 0 0 / 0.28);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-border);
}
.btn-outline-dark:hover {
  background: var(--color-text-dark);
  color: var(--color-card);
  border-color: var(--color-text-dark);
}

.ripple {
  position: absolute;
  width: 6px; height: 6px;
  background: oklch(100% 0 0 / 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: translate(-50%, -50%) scale(40); opacity: 0; }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: oklch(99% 0.003 252);
  border-bottom: 1px solid oklch(89% 0.009 252);
}

.header:not(.scrolled) .nav-links a {
  color: oklch(100% 0 0 / 0.8);
}
.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
  color: oklch(100% 0 0);
}
.header:not(.scrolled) .nav-links a::after {
  background: oklch(100% 0 0 / 0.7);
}
.header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}
.header:not(.scrolled) .btn-nav-cta {
  background: oklch(100% 0 0 / 0.12);
  border: 1px solid oklch(100% 0 0 / 0.3);
  color: oklch(100% 0 0);
}
.header:not(.scrolled) .hamburger span {
  background: oklch(100% 0 0);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
}

.nav-logo { flex-shrink: 0; }
.logo-img  { height: 25px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted-dark);
  letter-spacing: 0.02em;
  transition: color 0.18s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-text-dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-primary);
  transition: width 0.22s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { grid-column: 4; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--color-base);
  color: oklch(100% 0 0);
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s var(--ease), opacity 0.15s var(--ease);
  white-space: nowrap;
}
.header.scrolled .btn-nav-cta,
.header.scrolled .nav-cta {
  background: #030507;
  color: oklch(100% 0 0);
}
.btn-nav-cta:hover { opacity: 0.82; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text-dark);
  transition: transform 0.22s, opacity 0.22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  background: var(--color-base);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 100px var(--pad-x) 72px var(--pad-x);
  text-align: left;
}

.hero-img-panel {
  position: absolute;
  left: 42%;
  right: 0;
  bottom: 0;
  top: 88px;
  overflow: hidden;
  border-radius: 4px 0 0 0;
}

.hero-img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 55%;
  background: linear-gradient(to right,
    oklch(11% 0.012 250) 0%,
    oklch(11% 0.012 250 / 0.75) 30%,
    oklch(11% 0.012 250 / 0.30) 65%,
    oklch(11% 0.012 250 / 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-inner {
  max-width: 720px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: oklch(100% 0 0 / 0.92);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 0 14px;
}

.hero-content h1 {
  color: oklch(100% 0 0);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: oklch(100% 0 0 / 0.88);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 0 48px;
}

.hero-divide {
  height: 1px;
  background: oklch(100% 0 0 / 0.10);
  margin: 32px 0;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 clamp(20px, 2.5vw, 40px);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: oklch(100% 0 0 / 0.15);
  flex-shrink: 0;
}

.hero-stat-numwrap {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  line-height: 1;
}

.hero-stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: oklch(100% 0 0);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-suffix {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  padding-bottom: 3px;
}

.hero-stat-cert {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: oklch(100% 0 0);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-cert-check {
  display: block;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: oklch(100% 0 0 / 0.55);
  line-height: 1.55;
}

.hero-stat-license {
  font-size: 0.65rem;
  font-weight: 500;
  color: oklch(100% 0 0 / 0.38);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--color-primary);
  color: oklch(100% 0 0);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.btn-hero-primary:focus-visible {
  outline: 2px solid oklch(100% 0 0);
  outline-offset: 3px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 4px;
  background: transparent;
  color: oklch(100% 0 0 / 0.72);
  border: none;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}
.btn-hero-ghost:hover {
  color: oklch(100% 0 0);
}
.btn-hero-ghost:focus-visible {
  outline: 2px solid oklch(100% 0 0);
  outline-offset: 3px;
}

.hero-trust-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  background: oklch(11% 0.012 250 / 0.40);
  padding: 14px var(--pad-x);
}

.hero-trust-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-trust-bar span[role="listitem"] {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / 0.48);
}

.hero-trust-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: oklch(100% 0 0 / 0.16);
  flex-shrink: 0;
}

/* ============================================
   CAPABILITY STRIP
   ============================================ */
.cap-strip {
  background: oklch(100% 0 0);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  padding: 56px 0;
}

.cap-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cap-group {
  display: flex;
  align-items: center;
  flex: 1;
}

.cap-group-divider {
  width: 0.5px;
  height: 52px;
  background: oklch(0% 0 0 / 0.10);
  flex-shrink: 0;
  margin: 0 clamp(24px, 4vw, 60px);
}

.cap-cert-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--color-base);
  letter-spacing: -0.02em;
  line-height: 1;
}

.cap-cert-check {
  display: block;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
}

.cap-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 clamp(16px, 3vw, 48px);
}

.cap-item:first-child { padding-left: 0; }
.cap-item:last-child  { padding-right: 0; }

.cap-numwrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}

.cap-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--color-base);
  letter-spacing: -0.02em;
  line-height: 1;
}

.cap-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-left: 1px;
}

.cap-label {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--color-text-muted-dark);
  line-height: 1.55;
}

.cap-divider {
  width: 1px;
  height: 52px;
  background: oklch(0% 0 0 / 0.10);
  flex-shrink: 0;
  margin: 0 clamp(16px, 2vw, 32px);
}

/* ============================================
   SERVICES / CAPABILITIES — Wunder layout
   ============================================ */
.services {
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-inner {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

.services-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--color-text-dark);
  margin: 10px 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.services-credentials {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted-dark);
  margin-bottom: 14px;
}

.services-header > p {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.78;
}

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

.service-primary-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, oklch(0% 0 0 / 0.35) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--color-text-dark);
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.service-card-body > p {
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  line-height: 1.78;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-list li {
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.service-card-list li::before {
  content: '✓';
  font-size: 0.65rem;
  font-weight: 700;
  color: oklch(100% 0 0);
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.18s var(--ease), opacity 0.18s var(--ease);
}
.service-card-cta:hover { gap: 12px; opacity: 0.8; }

.services-also {
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px);
  background: var(--color-card);
}

.services-also-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted-dark);
  margin-bottom: 20px;
}

.services-also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--color-border);
}

.services-also-item {
  padding: 0 24px;
  border-right: 1px solid var(--color-border);
}

.services-also-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 4px;
  font-family: var(--font-body);
}

.services-also-item p {
  font-size: 0.78rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
  margin: 0;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.services-cta-text {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
}

.services-cta-text strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  height: 48px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--color-base);
  background: transparent;
  color: var(--color-base);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.btn-outline:hover {
  background: var(--color-base);
  color: oklch(98% 0.003 252);
}

/* ============================================
   PROCESS
   ============================================ */
.process { background: oklch(94% 0.007 252); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: var(--border-light);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: oklch(100% 0 0);
  position: relative;
}

.process-steps::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 40px;
  right: calc(20% - 40px);
  border-top: 1px dashed oklch(52% 0.215 258 / 0.3);
  pointer-events: none;
  z-index: 0;
}

.process-step {
  padding: 36px 26px 42px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: var(--border-light);
  position: relative;
}

.process-step:last-child { border-right: none; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: oklch(99% 0.003 252);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: var(--color-text-dark);
  font-size: 0.975rem;
  line-height: 1.35;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--color-text-muted-dark);
  line-height: 1.78;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why { background: var(--color-card); }

.why .container { position: relative; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.why h2 { color: var(--color-text-dark); }

.why-body {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.82;
  max-width: 440px;
  margin-top: 28px;
}

.why-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.why-proof-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: oklch(100% 0 0 / 0.04);
  border: 1px solid oklch(100% 0 0 / 0.08);
  border-radius: var(--r-xs);
}

.why-proof-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-bg);
  border: 1px solid var(--color-primary-border);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.why-proof-item strong {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.3;
}

.why-proof-item span {
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}

.why-trusted {
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
  opacity: 0.5;
  margin-top: 20px;
}

/* Feature list — right column */
.why-right {
  display: flex;
  flex-direction: column;
  border: var(--border-light);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.why-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--color-card);
  border-bottom: var(--border-light);
  transition: background 0.18s var(--ease);
}

.why-feature:last-child { border-bottom: none; }
.why-feature:hover      { background: var(--color-light-bg); }

/* Bare icon — no tinted box */
.why-feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature-body h3 {
  font-size: 0.975rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.why-feature-body p {
  font-size: 0.83rem;
  color: var(--color-text-muted-dark);
  line-height: 1.72;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-surface); }

.testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
}

.testimonial-body {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-text-light);
  quotes: none;
  text-align: left;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid oklch(100% 0 0 / 0.10);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: oklch(100% 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
  line-height: 1.4;
}

.testimonial-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--color-bg); }

.contact { overflow: visible; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 800px;
  overflow: visible;
}

.contact-img-panel { overflow: hidden; }

.contact-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.contact-form-wrap {
  background: var(--color-surface);
  border-left: var(--border-dark);
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.form-label-top {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: oklch(100% 0 0);
  margin-bottom: 28px;
  text-transform: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: visible;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: visible;
}

.form-group label {
  font-size: 0.67rem;
  font-weight: 600;
  color: oklch(94% 0.006 252 / 0.90);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: oklch(100% 0 0 / 0.18);
  border: 1px solid oklch(100% 0 0 / 0.38);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-light);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: oklch(94% 0.006 252 / 0.50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-bg);
}

.form-group.error label {
  color: oklch(65% 0.2 15);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: oklch(65% 0.2 15);
  box-shadow: 0 0 0 3px oklch(65% 0.2 15 / 0.12);
}
.form-error {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: oklch(65% 0.2 15);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.form-submit {
  width: auto;
  align-self: flex-start;
  height: 44px;
  padding: 0 24px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0;
}

/* Honeypot — screen-reader hidden, invisible to users, visible to bots */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* General form status (network errors, rate-limit notices) */
.form-status {
  display: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 4px;
}
.form-status.is-error {
  display: block;
  color: oklch(65% 0.2 15);
  background: oklch(65% 0.2 15 / 0.08);
  border: 1px solid oklch(65% 0.2 15 / 0.20);
}
.form-status.is-success {
  display: block;
  color: oklch(100% 0 0);
  background: oklch(55% 0.18 145);
  border: 1px solid oklch(48% 0.18 145);
  transition: opacity 0.4s ease;
}
.form-status.is-success.fade-out {
  opacity: 0;
}

/* ---- Custom Select ---- */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  background: oklch(100% 0 0 / 0.18);
  border: 1px solid oklch(100% 0 0 / 0.38);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-light);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), border-radius 0.15s var(--ease);
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-bg);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--color-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.custom-select-value { flex: 1; }
.custom-select-value.placeholder { color: oklch(94% 0.006 252 / 0.52); }

.custom-select-icon {
  flex-shrink: 0;
  color: oklch(94% 0.006 252 / 0.72);
  transition: transform 0.2s var(--ease);
}

.custom-select.open .custom-select-icon { transform: rotate(180deg); }

.custom-select-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  background: oklch(19% 0.016 250);
  border: 1px solid var(--color-primary);
  border-top: none;
  border-bottom-left-radius: var(--r-sm);
  border-bottom-right-radius: var(--r-sm);
  padding: 4px 0;
  z-index: 300;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
  overflow: hidden;
}

.custom-select.open .custom-select-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: oklch(94% 0.006 252 / 0.65);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  border-bottom: 1px solid oklch(100% 0 0 / 0.05);
}

.custom-select-list li:last-child { border-bottom: none; }

.custom-select-list li:hover {
  background: oklch(100% 0 0 / 0.05);
  color: oklch(94% 0.006 252);
}

.custom-select-list li[aria-selected="true"] {
  color: oklch(94% 0.006 252);
  background: oklch(42% 0.18 258 / 0.14);
}

.custom-select-list li[aria-selected="true"]::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.07s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.14s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.21s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.28s; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-base);
  border-top: var(--border-dark);
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-row + .footer-row {
  margin-top: 28px;
  padding-top: 28px;
}

.footer-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-logo-img { height: 24px; width: auto; }

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-nav a {
  font-size: 13px;
  color: oklch(94% 0.006 252 / 0.72);
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--color-text-muted-light); }
.footer-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-contact a,
.footer-contact span {
  font-size: 13px;
  color: oklch(94% 0.006 252 / 0.72);
  transition: color 0.18s;
}
.footer-contact a:hover { color: var(--color-text-muted-light); }

.footer-hours {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-hours span     { font-size: 13px; color: oklch(94% 0.006 252 / 0.72); }
.footer-hours-note     { opacity: 0.6; }

.footer-row--bottom p {
  font-size: 13px;
  color: oklch(94% 0.006 252 / 0.72);
}

.footer-abn {
  font-size: 13px;
  color: oklch(94% 0.006 252 / 0.72);
}

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-legal a {
  font-size: 13px;
  color: oklch(94% 0.006 252 / 0.72);
  transition: color 0.18s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-legal a:hover { color: var(--color-text-muted-light); }

/* ============================================
   RESPONSIVE — TABLET (≤ 1060px)
   ============================================ */
@media (max-width: 1060px) {

  .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-primary-grid { grid-template-columns: 1fr; }
  .services-also-grid    { grid-template-columns: 1fr 1fr; }
  .services-also-item:nth-child(2n) { border-right: none; }
  .services-also-item:nth-child(1),
  .services-also-item:nth-child(2) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
  }
  .services-cta { flex-direction: column; align-items: flex-start; }

  /* Testimonials: stack on tablet */
  .testimonial-split { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-img-wrap { aspect-ratio: 16 / 9; order: -1; }
  .testimonial-body { font-size: 1.05rem; }

  /* Process: 3-col (row1: 1-2-3, row2: 4-5) */
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3n) { border-right: none; }
  .process-step:nth-child(5)  { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2),
  .process-step:nth-child(3)  { border-bottom: var(--border-light); }
  .process-steps::after       { display: none; }

  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-body   { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — MOBILE NAV (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 0;
    padding: 14px var(--pad-x);
  }

  /* Always show hamburger lines clearly — works on both transparent & white header */
  .hamburger {
    display: flex;
    grid-column: 4;
    padding: 10px;
    margin-right: -10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hamburger span { background: var(--color-text-dark); }
  .header:not(.scrolled) .hamburger span { background: oklch(100% 0 0); }

  /* Mobile nav panel */
  .nav-links {
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid oklch(100% 0 0 / 0.10);
    box-shadow: 0 12px 40px oklch(0% 0 0 / 0.55);
    flex-direction: column;
    gap: 0;
    padding: 0 24px 16px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s var(--ease), opacity 0.22s var(--ease), visibility 0s 0.28s;
    pointer-events: none;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.28s var(--ease), opacity 0.22s var(--ease), visibility 0s 0s;
  }

  .nav-overlay { display: block; }

  /* Force white text inside the dark mobile panel regardless of scroll state */
  .nav-links li a,
  .header.scrolled .nav-links li a,
  .header:not(.scrolled) .nav-links li a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid oklch(100% 0 0 / 0.08);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    min-height: 52px;
    letter-spacing: 0.01em;
  }
  .nav-links li:last-child a,
  .header.scrolled .nav-links li:last-child a,
  .header:not(.scrolled) .nav-links li:last-child a { border-bottom: none; }

  .nav-links li a:hover,
  .nav-links li a.active,
  .header.scrolled .nav-links li a:hover,
  .header:not(.scrolled) .nav-links li a:hover { color: oklch(100% 0 0); }

  /* Call Now button — always visible */
  .nav-cta {
    grid-column: 3;
    margin-left: auto;
    margin-right: 12px;
    height: 38px;
    padding: 0 16px;
    font-size: 0.8rem;
    background: oklch(100% 0 0 / 0.15);
    color: oklch(100% 0 0);
    border: none;
    border-radius: 4px;
  }
  .header:not(.scrolled) .btn-nav-cta {
    background: oklch(100% 0 0 / 0.12);
    border: none;
    color: oklch(100% 0 0);
  }

  .hero-img-panel   { left: 30%; top: 88px; }
  .hero-inner       { max-width: 100%; }
  .hero-trust-bar   { padding: 12px 20px; }
  .hero-trust-inner { gap: 10px; flex-wrap: wrap; }

  .hero-stats { margin-top: 36px; }
  .hero-stat  { padding: 0 clamp(12px, 2vw, 28px); }


  .contact-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .contact-img-panel {
    height: 260px;
    min-height: unset;
  }
  .contact-form-wrap {
    border-left: none;
    border-top: var(--border-dark);
    padding: 48px 28px 64px;
    justify-content: flex-start;
    overflow-y: visible;
  }

  .footer-row + .footer-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: var(--border-dark);
  }
  .footer-row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-nav     { flex-wrap: wrap; gap: 16px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-hours   { flex-direction: column; align-items: flex-start; gap: 6px; }

  .footer-row--bottom .footer-row-inner { gap: 6px; }
  .footer-legal { gap: 0; flex-direction: column; }
  .footer-legal a { min-height: 44px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {

  :root {
    --pad-section: clamp(56px, 12vw, 80px);
  }

  .hero            { min-height: 100svh; }
  .hero-content    { padding: 100px 24px 60px; align-items: flex-start; min-height: 100svh; }
  .hero-inner      { width: 100%; }

  /* Full-bleed image behind content on mobile */
  .hero-img-panel  {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: auto;
    border-radius: 0;
  }
  /* Override desktop left-to-right gradient with a top-to-bottom overlay */
  .hero-img-panel::before {
    width: 100%;
    background: linear-gradient(
      to bottom,
      oklch(11% 0.012 250 / 0.92) 0%,
      oklch(11% 0.012 250 / 0.78) 55%,
      oklch(11% 0.012 250 / 0.65) 100%
    );
  }

  .hero-content h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 14px; }
  .hero-sub        { max-width: 100%; font-size: 0.925rem; line-height: 1.72; margin-bottom: 32px; }
  .hero-actions    { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-hero-primary,
  .btn-hero-ghost  { width: 100%; justify-content: center; height: 52px; font-size: 0.9rem; }

  /* Stats: 3-column grid, no dividers */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    margin-top: 32px;
    padding-top: 20px;
    gap: 0;
  }
  .hero-stat-divider { display: none; }
  .hero-stat {
    padding: 0 12px;
    border-right: 1px solid oklch(100% 0 0 / 0.15);
  }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child  { padding-right: 0; border-right: none; }
  .hero-stat-num,
  .hero-stat-cert { font-size: 1.75rem; }

  .services-also-grid { grid-template-columns: 1fr; border-left: none; }
  .services-also-item {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .services-also-item:last-child { border-bottom: none; padding-bottom: 0; }
  .services-also-item:nth-child(1),
  .services-also-item:nth-child(2) { border-bottom: 1px solid var(--color-border); margin-bottom: 0; padding-bottom: 16px; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step  { padding: 24px 16px 28px; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(5)  { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-bottom: var(--border-light); }

  .why-right   { border-radius: 0; }
  .why-feature { padding: 20px 16px; grid-template-columns: 24px 1fr; gap: 12px; }

  .contact-img-panel  { height: 200px; }
  .contact-form-wrap  { padding: 36px 20px 56px; overflow: visible; }
  .contact-form       { gap: 16px; }
  .form-submit        { width: 100%; align-self: stretch; justify-content: center; height: 48px; }

  .section-header { gap: 10px; }
  .section-header { margin-bottom: clamp(36px, 6vw, 56px); }
}

/* ============================================
   RESPONSIVE — EXTRA SMALL (≤ 400px)
   ============================================ */
@media (max-width: 400px) {

  .hero-content    { padding: 90px 20px 52px; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-sub        { font-size: 0.875rem; margin-bottom: 28px; }
  .hero-eyebrow    { font-size: 0.6rem; }
  .hero-stat-num,
  .hero-stat-cert  { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.62rem; }
  .hero-stat-license { font-size: 0.58rem; }

  .hero-trust-bar span[role="listitem"] { font-size: 0.58rem; }
  .hero-trust-inner { gap: 8px; }

  .cap-number, .cap-cert-name { font-size: 2rem; }
  .cap-suffix  { font-size: 1.1rem; }
  .cap-cert-check { width: 16px; height: 16px; }


  .why-feature { grid-template-columns: 20px 1fr; gap: 10px; }
  .why-feature-body h3 { font-size: 0.9rem; }

  .btn-hero-primary,
  .btn-hero-ghost { height: 48px; font-size: 0.85rem; }
}

