/* ==========================================================
   BuffAway Theme — Main Stylesheet
   Design System: Clean, Premium, Conversion-Focused
   ========================================================== */

/* --------------------------------------------------------
   1. DESIGN TOKENS / CSS VARIABLES
   -------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary:        #0E2A47;   /* Deep Navy */
  --color-primary-mid:   #1A4170;   /* Mid Navy */
  --color-primary-light: #2558A0;   /* Light Navy */
  --color-accent:        #00B894;   /* Fresh Teal */
  --color-accent-dark:   #008F74;   /* Dark Teal */
  --color-accent-light:  #E0F7F2;   /* Teal Tint */

  /* Neutrals */
  --color-white:         #FFFFFF;
  --color-off-white:     #F9FAFB;
  --color-bg-light:      #F3F7FA;
  --color-bg-section:    #EEF2F7;
  --color-border:        #DEE5EE;
  --color-border-light:  #EAF0F6;

  /* Text */
  --color-text:          #111827;
  --color-text-secondary:#374151;
  --color-text-muted:    #6B7280;
  --color-text-light:    #9CA3AF;

  /* Status */
  --color-success:       #10B981;
  --color-error:         #EF4444;
  --color-warning:       #F59E0B;

  /* Typography */
  --font-heading:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:           'Fira Code', 'Courier New', monospace;

  /* Font Scale */
  --text-xs:    0.75rem;      /* 12px */
  --text-sm:    0.875rem;     /* 14px */
  --text-base:  1rem;         /* 16px */
  --text-md:    1.0625rem;    /* 17px */
  --text-lg:    1.125rem;     /* 18px */
  --text-xl:    1.25rem;      /* 20px */
  --text-2xl:   1.5rem;       /* 24px */
  --text-3xl:   1.875rem;     /* 30px */
  --text-4xl:   2.25rem;      /* 36px */
  --text-5xl:   3rem;         /* 48px */
  --text-6xl:   3.75rem;      /* 60px */

  /* Font Weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold:800;

  /* Line Heights */
  --leading-tight:   1.2;
  --leading-snug:    1.35;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* Letter Spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-wider:   0.08em;
  --tracking-widest:  0.12em;

  /* Spacing Scale */
  --sp-1:   0.25rem;   /* 4px  */
  --sp-2:   0.5rem;    /* 8px  */
  --sp-3:   0.75rem;   /* 12px */
  --sp-4:   1rem;      /* 16px */
  --sp-5:   1.25rem;   /* 20px */
  --sp-6:   1.5rem;    /* 24px */
  --sp-7:   1.75rem;   /* 28px */
  --sp-8:   2rem;      /* 32px */
  --sp-10:  2.5rem;    /* 40px */
  --sp-12:  3rem;      /* 48px */
  --sp-14:  3.5rem;    /* 56px */
  --sp-16:  4rem;      /* 64px */
  --sp-20:  5rem;      /* 80px */
  --sp-24:  6rem;      /* 96px */
  --sp-28:  7rem;      /* 112px */
  --sp-32:  8rem;      /* 128px */

  /* Section Spacing */
  --section-pad-y:     var(--sp-20);
  --section-pad-y-sm:  var(--sp-14);
  --section-pad-y-lg:  var(--sp-28);

  /* Layout */
  --container-max:     1200px;
  --container-wide:    1400px;
  --container-narrow:  820px;
  --container-pad:     1.5rem;

  /* Border Radius */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(14,42,71,0.06);
  --shadow-sm:  0 2px 6px rgba(14,42,71,0.08), 0 1px 3px rgba(14,42,71,0.06);
  --shadow-md:  0 4px 16px rgba(14,42,71,0.10), 0 2px 6px rgba(14,42,71,0.06);
  --shadow-lg:  0 10px 32px rgba(14,42,71,0.12), 0 4px 12px rgba(14,42,71,0.07);
  --shadow-xl:  0 20px 60px rgba(14,42,71,0.15), 0 8px 20px rgba(14,42,71,0.08);
  --shadow-card: 0 2px 12px rgba(14,42,71,0.08), 0 1px 4px rgba(14,42,71,0.05);
  --shadow-card-hover: 0 8px 28px rgba(14,42,71,0.14), 0 3px 10px rgba(14,42,71,0.08);

  /* Transitions */
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --trans-fast:   150ms var(--ease-in-out);
  --trans-base:   250ms var(--ease-in-out);
  --trans-slow:   400ms var(--ease-out);

  /* Z-index scale */
  --z-base:   0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-nav:    200;
  --z-modal:  300;
  --z-toast:  400;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--color-primary-light); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--color-accent-dark); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-xs); }

ul, ol { list-style: none; }

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: var(--weight-semibold); }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto; clip-path: none; height: auto; margin: 0;
  overflow: visible; position: static; width: auto;
}

/* --------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--wide   { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad-y); }
.section--sm  { padding-block: var(--section-pad-y-sm); }
.section--lg  { padding-block: var(--section-pad-y-lg); }

.section--white    { background-color: var(--color-white); }
.section--light    { background-color: var(--color-bg-light); }
.section--alt      { background-color: var(--color-bg-section); }
.section--navy     { background-color: var(--color-primary); color: var(--color-white); }
.section--navy-mid { background-color: var(--color-primary-mid); color: var(--color-white); }
.section--accent   { background-color: var(--color-accent); color: var(--color-white); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* --------------------------------------------------------
   4. TYPOGRAPHY COMPONENTS
   -------------------------------------------------------- */

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}
.section--navy .eyebrow,
.section--navy-mid .eyebrow {
  color: rgba(0,184,148,0.9);
}

/* Section heading block */
.section-heading { margin-bottom: var(--sp-12); }
.section-heading--left { text-align: left; }
.section-heading--center { text-align: center; }
.section-heading__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.section--navy .section-heading__title,
.section--navy-mid .section-heading__title { color: var(--color-white); }

.section-heading__sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  max-width: 650px;
}
.section-heading--center .section-heading__sub { margin-inline: auto; }
.section--navy .section-heading__sub,
.section--navy-mid .section-heading__sub { color: rgba(255,255,255,0.78); }

/* --------------------------------------------------------
   5. BUTTON SYSTEM
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75em 1.6em;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--trans-base), color var(--trans-base),
              border-color var(--trans-base), transform var(--trans-fast),
              box-shadow var(--trans-base);
  white-space: nowrap;
  user-select: none;
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

/* Primary — deep navy */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background-color: var(--color-primary-mid);
  border-color: var(--color-primary-mid);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Accent — teal */
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Outline — navy border */
.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Outline white (for dark sections) */
.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero .btn--outline,
.page-hero--default .btn--outline,
.service-hero .btn--outline,
.cta-banner .btn--outline,
.schedule-callout .btn--outline,
.section--navy .btn--outline,
.section--navy-mid .btn--outline,
.footer-cta-band .btn--outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.hero .btn--outline:hover,
.page-hero--default .btn--outline:hover,
.service-hero .btn--outline:hover,
.cta-banner .btn--outline:hover,
.schedule-callout .btn--outline:hover,
.section--navy .btn--outline:hover,
.section--navy-mid .btn--outline:hover,
.footer-cta-band .btn--outline:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Ghost — subtle */
.btn--ghost {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  background-color: var(--color-accent-light);
  border-color: rgba(0,184,148,0.25);
  color: var(--color-accent-dark);
}

/* Sizes */
.btn--sm  { padding: 0.6em 1.25em; font-size: var(--text-sm); }
.btn--lg  { padding: 0.9em 2em;    font-size: var(--text-lg); }
.btn--xl  { padding: 1em 2.5em;    font-size: var(--text-xl); }
.btn--full { width: 100%; }

/* --------------------------------------------------------
   6. SITE HEADER
   -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background-color: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
  transition: box-shadow var(--trans-base);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Top bar */
.site-header__topbar {
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  padding-block: var(--sp-2);
}
.site-header__topbar-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.topbar-phone {
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
}
.topbar-phone:hover { color: var(--color-white); }
.topbar-badge--hours { margin-left: auto; }

/* Main header bar */
.site-header__main {
  background-color: var(--color-white);
  padding-block: var(--sp-4);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.site-header__logo a,
.footer-logo { text-decoration: none; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text__main {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-text__accent { color: var(--color-accent); }
.logo-text__tagline {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Primary nav */
.site-nav { margin-left: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-menu > li > a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background-color var(--trans-fast);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

/* Dropdown menus */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 0;
  min-width: 220px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--trans-base), transform var(--trans-base), visibility var(--trans-base);
  z-index: var(--z-nav);
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.nav-menu .sub-menu li a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}
.nav-menu li { position: relative; }

/* Header CTA */
.site-header__cta { flex-shrink: 0; }

.home .site-header__topbar {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
}
.home .topbar-badge { color: rgba(255,255,255,0.88); }
.home .site-header__cta .btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(0,184,148,0.22);
}
.home .site-header__cta .btn:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #006b56 100%);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--trans-base), opacity var(--trans-base);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 16px rgba(14,42,71,0.15);
}
.mobile-sticky-cta__call,
.mobile-sticky-cta__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  text-decoration: none;
}
.mobile-sticky-cta__call  { background-color: var(--color-primary); color: var(--color-white); }
.mobile-sticky-cta__quote { background-color: var(--color-accent); color: var(--color-white); }
.mobile-sticky-cta__call:hover  { background-color: var(--color-primary-mid); color: var(--color-white); }
.mobile-sticky-cta__quote:hover { background-color: var(--color-accent-dark); color: var(--color-white); }

/* --------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 60%, #1A3F6A 100%);
  z-index: 0;
}
/* Subtle dot grid pattern for hero */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,42,71,0.92) 0%, rgba(14,42,71,0.7) 60%, rgba(14,42,71,0.4) 100%);
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: var(--sp-28) var(--sp-24);
  width: 100%;
}
.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background-color: rgba(0,184,148,0.15);
  border: 1px solid rgba(0,184,148,0.35);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.hero__intro {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin-bottom: var(--sp-4);
}
.hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.hero__quicklink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: background-color var(--trans-fast), border-color var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
}
.hero__quicklink:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: var(--color-white);
  transform: translateY(-1px);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  backdrop-filter: blur(10px);
}
.hero__badge--verified {
  background: rgba(0,184,148,0.18);
  border-color: rgba(0,184,148,0.35);
  color: #d8fff6;
}
.hero__badge-stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
.hero__badge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__badge-copy strong {
  color: var(--color-white);
  font-weight: var(--weight-bold);
}
.hero__title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-6xl));
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.hero__sub {
  font-size: clamp(var(--text-base), 1.8vw, var(--text-xl));
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: var(--sp-7);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.hero__actions .btn {
  min-width: min(250px, 100%);
  border-radius: var(--radius-md);
}
.hero__actions .btn--accent {
  box-shadow: 0 18px 40px rgba(0,184,148,0.22);
}
.hero__actions .btn--outline-white {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
}
.hero__response-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--sp-7);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.hero__served {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.hero__served-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.45);
}
.hero__served-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-xs);
}
.hero__trust-item::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* --------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------- */
.trust-strip {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-6);
}
.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  padding: var(--sp-2) var(--sp-4);
}
.trust-strip__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.trust-strip__item-label { font-weight: var(--weight-semibold); color: var(--color-primary); }
.trust-strip__item-sub   { font-size: var(--text-xs); color: var(--color-text-muted); }

/* --------------------------------------------------------
   9. SERVICE CARDS
   -------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--trans-base), transform var(--trans-base), border-color var(--trans-base);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--color-accent);
  color: inherit;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: var(--leading-snug);
}
.service-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent-dark);
  text-decoration: none;
  margin-top: auto;
}
.service-card:hover .service-card__link { color: var(--color-primary); }

/* --------------------------------------------------------
   10. WHY US / FEATURES SECTION
   -------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.feature-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}
.feature-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------
   11. INDUSTRIES SECTION
   -------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
}
.industry-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  transition: background-color var(--trans-base), border-color var(--trans-base), transform var(--trans-base);
}
.industry-card:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.industry-card__icon { font-size: 2.5rem; }
.industry-card__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}
.industry-card__desc { font-size: var(--text-xs); color: rgba(255,255,255,0.65); }

/* --------------------------------------------------------
   12. SERVICE AREA CARDS
   -------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-3);
}
.area-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.85);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  transition: background-color var(--trans-base), color var(--trans-base), border-color var(--trans-base);
}
.area-card:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.area-card__dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  flex-shrink: 0;
}
.area-card:hover .area-card__dot { background-color: var(--color-white); }

/* --------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
}
.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow var(--trans-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-card-hover); }
.testimonial-card__quote-icon {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-light);
  font-family: Georgia, serif;
}
.testimonial-card__stars { display: flex; gap: var(--sp-1); }
.star { color: var(--color-border); font-size: var(--text-lg); }
.star.filled { color: #F59E0B; }
.testimonial-card__content {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.testimonial-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------
   14. PROCESS STEPS
   -------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}
.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,184,148,0.3);
}
.process-step__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}
.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.faq-item.is-open { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  transition: color var(--trans-fast);
}
.faq-item__trigger:hover { color: var(--color-primary); }
.faq-item.is-open .faq-item__trigger { color: var(--color-primary); }
.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  transition: background-color var(--trans-base), transform var(--trans-base), color var(--trans-base);
}
.faq-item.is-open .faq-item__icon {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-slow);
}
.faq-item__answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------
   16. QUOTE FORM
   -------------------------------------------------------- */
.quote-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  padding-block: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.quote-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.quote-section__text { color: var(--color-white); }
.quote-section__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  line-height: var(--leading-snug);
}
.quote-section__sub { color: rgba(255,255,255,0.78); font-size: var(--text-lg); margin-bottom: var(--sp-8); }
.quote-trust-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.quote-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.quote-trust-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Form card */
.quote-form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-xl);
}
.quote-form-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.quote-form-card__sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
}
.quote-form-card__reassurance {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--sp-4);
}
.quote-form-card__reassurance::before { content: '🔒'; }

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-grid--full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: var(--sp-1); }
.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
}
.form-group label .required { color: var(--color-error); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.7em 0.9em;
  font-size: var(--text-sm);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.15);
}
.form-control::placeholder { color: var(--color-text-light); }
.form-control.is-error { border-color: var(--color-error); }

textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  padding-right: 2.5em;
}

.form-error-msg {
  font-size: var(--text-xs);
  color: var(--color-error);
  display: none;
}
.form-group.has-error .form-error-msg { display: block; }

/* Honeypot — hidden from humans */
.form-honeypot { display: none !important; position: absolute; left: -9999px; }

/* Form alerts */
.form-success, .form-error {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-top: var(--sp-4);
}
.form-success {
  background-color: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
}
.form-error {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}
.form-success.is-visible,
.form-error.is-visible { display: block; }

/* --------------------------------------------------------
   17. CTA BANNER
   -------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1A3E6E 100%);
  padding-block: var(--sp-16);
  text-align: center;
}
.cta-banner__eyebrow { color: var(--color-accent); }
.cta-banner__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  line-height: var(--leading-snug);
}
.cta-banner__sub {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-inline: auto;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}
.cta-banner__reassurance {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
}

/* --------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------- */
.footer-cta-band {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding-block: var(--sp-12);
}
.footer-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.footer-cta-band__heading {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--sp-2);
  line-height: var(--leading-snug);
}
.footer-cta-band__sub { color: rgba(255,255,255,0.82); font-size: var(--text-base); }
.footer-cta-band__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; flex-shrink: 0; }

.footer-main {
  background-color: #0A1E35;
  padding-block: var(--sp-16) var(--sp-12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.footer-logo .logo-text__main { color: var(--color-white); }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-relaxed);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.footer-contact-block { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer-contact-link:hover { color: var(--color-accent); }
.footer-badges { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-badge {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

.footer-col__heading {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-nav li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer-nav li a:hover { color: var(--color-accent); }

.footer-bottom {
  background-color: #07172A;
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom__copy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom__copy a { color: rgba(255,255,255,0.5); }
.footer-bottom__copy a:hover { color: var(--color-accent); }
.footer-bottom__links {
  display: flex;
  gap: var(--sp-5);
}
.footer-bottom__links li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer-bottom__links li a:hover { color: var(--color-accent); }

/* --------------------------------------------------------
   19. PAGE-LEVEL LAYOUTS
   -------------------------------------------------------- */
.page-wrap { padding-bottom: 0; }
.page-hero--default {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  padding-block: var(--sp-16) var(--sp-14);
}
.page-hero__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  margin-top: var(--sp-4);
}

/* Service page hero */
.service-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  padding-block: var(--sp-20) var(--sp-16);
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.service-hero > .container { position: relative; z-index: 1; }
.service-hero__inner { position: relative; z-index: 1; }
.service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: var(--sp-14);
  align-items: center;
  padding-top: var(--sp-6);
}
.service-hero__layout--single { grid-template-columns: minmax(0, 760px); }
.service-hero__content-block { max-width: 760px; }
.service-hero__content-block--narrow { max-width: 700px; }
.service-hero__panel {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
}
.service-hero__panel-title {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-5);
}
.service-hero__panel-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.service-hero__panel-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-hero__panel-label {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--color-white);
}
.service-hero__panel-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.62);
  line-height: var(--leading-relaxed);
}
.service-hero__panel-link {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  text-decoration: none;
}
.service-hero__panel-link:hover { color: var(--color-white); }
.service-hero__panel-link--accent {
  color: var(--color-accent);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}
.service-hero__icon { font-size: 3rem; margin-bottom: var(--sp-4); }
.service-hero__title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: var(--sp-4);
}
.service-hero__sub { font-size: var(--text-xl); color: rgba(255,255,255,0.78); max-width: 600px; margin-bottom: var(--sp-8); }
.service-hero__meta { font-size: var(--text-base); color: rgba(255,255,255,0.82); line-height: var(--leading-relaxed); }
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: stretch;
  width: 100%;
  max-width: 760px;
}
.service-hero__actions .btn {
  flex: 1 1 240px;
  min-width: 0;
  max-width: 340px;
  min-height: 56px;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
.service-hero__actions .btn svg { flex-shrink: 0; }

/* Content wrap */
.content-wrap { padding-block: var(--section-pad-y); }
.content-wrap--narrow { max-width: 820px; }

.entry-content h2 { font-size: var(--text-2xl); margin: var(--sp-8) 0 var(--sp-4); color: var(--color-primary); }
.entry-content h3 { font-size: var(--text-xl); margin: var(--sp-6) 0 var(--sp-3); color: var(--color-primary); }
.entry-content p  { margin-bottom: var(--sp-4); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: var(--sp-4); }
.entry-content ul li { list-style: disc; margin-bottom: var(--sp-2); }
.entry-content ol li { list-style: decimal; margin-bottom: var(--sp-2); }

/* --------------------------------------------------------
   20. BREADCRUMBS
   -------------------------------------------------------- */
.breadcrumbs {
  padding-block: var(--sp-3);
  font-size: var(--text-sm);
}
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.breadcrumbs__item { display: flex; align-items: center; gap: var(--sp-2); color: rgba(255,255,255,0.55); }
.breadcrumbs__item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumbs__item a:hover { color: var(--color-accent); }
.breadcrumb__sep { color: rgba(255,255,255,0.35); }

/* --------------------------------------------------------
   21. POST CARDS / BLOG
   -------------------------------------------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-8);
  padding-block: var(--sp-8);
}
.post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
}
.post-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.post-card__image img { width: 100%; height: 220px; object-fit: cover; }
.post-card__body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.post-card__meta { font-size: var(--text-xs); color: var(--color-text-muted); }
.post-card__title { font-size: var(--text-xl); font-weight: var(--weight-bold); line-height: var(--leading-snug); }
.post-card__title a { color: var(--color-primary); text-decoration: none; }
.post-card__title a:hover { color: var(--color-primary-light); }
.post-card__excerpt { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* --------------------------------------------------------
   22. 404 PAGE
   -------------------------------------------------------- */
.error-404 { padding-block: var(--sp-28); text-align: center; }
.error-404__code {
  font-size: 8rem;
  font-weight: var(--weight-extrabold);
  color: var(--color-bg-section);
  line-height: 1;
  display: block;
  font-family: var(--font-heading);
}
.error-404__title { font-size: var(--text-3xl); margin-bottom: var(--sp-4); }
.error-404__desc { font-size: var(--text-lg); color: var(--color-text-secondary); margin-bottom: var(--sp-8); }
.error-404__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-8); }

/* --------------------------------------------------------
   23. CONTACT PAGE
   -------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  padding-block: var(--section-pad-y);
}
.contact-info-block { display: flex; flex-direction: column; gap: var(--sp-8); }
.contact-info-item { display: flex; gap: var(--sp-4); }
.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--color-accent-dark);
}
.contact-info-item__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--color-text-muted); font-weight: var(--weight-semibold); margin-bottom: var(--sp-1); }
.contact-info-item__value { font-size: var(--text-base); color: var(--color-text); font-weight: var(--weight-medium); }
.contact-info-item__value a { color: var(--color-primary-light); }
.contact-info-item__value a:hover { color: var(--color-accent-dark); }

/* --------------------------------------------------------
   24. CITY PAGE
   -------------------------------------------------------- */
.city-hero { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%); padding-block: var(--sp-20) var(--sp-16); }
.city-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.city-hero__title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); font-weight: var(--weight-extrabold); color: var(--color-white); margin-bottom: var(--sp-4); }
.city-hero__sub { font-size: var(--text-xl); color: rgba(255,255,255,0.78); margin-bottom: var(--sp-6); }
.city-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.city-hero__card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-xl); padding: var(--sp-8); }

/* --------------------------------------------------------
   25. MISC / HELPERS
   -------------------------------------------------------- */
.divider { border: none; border-top: 1px solid var(--color-border); margin-block: var(--sp-8); }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.visually-hidden { @extend .screen-reader-text; }

/* Skip link */
.skip-link:not(:focus) {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  position: fixed;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 999999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-semibold);
}

/* --------------------------------------------------------
   26. RESPONSIVE — MOBILE FIRST ADJUSTMENTS
   -------------------------------------------------------- */

/* Tablets (≤900px) */
@media (max-width: 900px) {
  :root {
    --section-pad-y: var(--sp-16);
    --section-pad-y-sm: var(--sp-12);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-col--brand { grid-column: 1 / -1; }

  .quote-section__inner { grid-template-columns: 1fr; gap: var(--sp-10); }

  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-10); }

  .service-hero__layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .service-hero__panel { display: none; }
  .service-hero__actions { flex-direction: column; }
  .service-hero__actions .btn { width: 100%; min-width: 0; max-width: none; }

  .city-hero__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .city-hero__card { display: none; }

  .footer-cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-band__actions { width: 100%; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  :root {
    --section-pad-y: var(--sp-14);
    --container-pad: 1.125rem;
  }

  /* Header */
  .site-header__topbar { display: none; }
  .site-nav { display: none; position: fixed; inset: 0; top: 0; background-color: var(--color-primary); z-index: var(--z-modal); flex-direction: column; padding: var(--sp-20) var(--sp-6) var(--sp-6); overflow-y: auto; }
  .site-nav.is-open { display: flex; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .nav-menu > li > a { font-size: var(--text-lg); color: rgba(255,255,255,0.85); padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-md); }
  .nav-menu > li > a:hover { background-color: rgba(255,255,255,0.1); color: var(--color-white); }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); margin-top: var(--sp-1); }
  .nav-menu .sub-menu li a { color: rgba(255,255,255,0.7); }
  .site-header__cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-sticky-cta { display: grid; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__inner { padding-block: var(--sp-16) var(--sp-14); }
  .hero__intro { font-size: var(--text-base); }
  .hero__quicklinks,
  .hero__badges,
  .hero__served { gap: var(--sp-2); }
  .hero__badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-lg);
  }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* Grids collapse */
  .services-grid     { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps     { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  body { padding-bottom: 60px; } /* Account for sticky CTA */
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .areas-grid     { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 360px; }
}

/* --------------------------------------------------------
   27. ANIMATIONS & ACCESSIBILITY
   -------------------------------------------------------- */
@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;
  }
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .site-header, .mobile-sticky-cta, .footer-cta-band,
  .cta-banner, .quote-section { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: inherit; text-decoration: underline; }
}
