/* =============================================
   SERGO Appliance Repair — Los Angeles
   Modern Clean Redesign · Logo-Derived Palette
   Colors: Blue #2B6CB0 · Orange #E88B2E
   Typography: Poppins
   ============================================= */

/* --- Reset & Global --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Logo-Derived Brand Colors */
  --primary-dark: #0F2A47;
  --primary-darker: #08192C;
  --primary: #2B6CB0;
  --primary-light: #3D7DC4;
  --primary-lighter: #F0F7FF;
  --primary-soft: rgba(43, 108, 176, 0.08);

  --accent: #E88B2E;
  --accent-hover: #D47A1F;
  --accent-light: #F5A623;
  --accent-soft: rgba(232, 139, 46, 0.1);
  --accent-glow: rgba(232, 139, 46, 0.25);

  /* Neutral Shades */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;

  /* Semantic Accents */
  --gold: #F59E0B;
  --green: #10B981;
  --green-soft: rgba(16, 185, 129, 0.1);
  --green-border: rgba(16, 185, 129, 0.3);

  /* Typography & Layout */
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1280px;

  /* Elevations */
  --shadow-xs: 0 1px 3px rgba(15, 42, 71, 0.04);
  --shadow-sm: 0 4px 14px rgba(15, 42, 71, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 42, 71, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 42, 71, 0.11);
  --shadow-xl: 0 24px 50px rgba(15, 42, 71, 0.14);

  /* Corner Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Animations */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(32px, 5vw, 50px); }
h2 { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 16px; }
h3 { font-size: 19px; margin-bottom: 10px; }

p {
  margin-bottom: 14px;
}
p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}


/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn--orange {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn--orange:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 8px 24px rgba(232, 139, 46, 0.4);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--primary-dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--primary);
  color: var(--white);
}


/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 12px rgba(15, 42, 71, 0.03);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 40px);
  height: 74px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { text-decoration: none; }

.nav__logo-img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item {
  position: relative;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s var(--ease);
}
.nav__link:hover,
.nav__link.is-current {
  color: var(--primary);
  background: var(--primary-lighter);
  text-decoration: none;
}

.nav__chevron {
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}
.nav__item--has-dropdown:hover .nav__chevron,
.nav__item--has-dropdown.is-open .nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent);
}

/* ===========================================
   DROPDOWN MENUS (Desktop)
   =========================================== */
.nav__dropdown {
  position: absolute;
  top: 100%;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 1050;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown Card Wrapper */
.nav__dropdown--services {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
}
.nav__item--has-dropdown:hover .nav__dropdown--services,
.nav__item--has-dropdown.is-open .nav__dropdown--services {
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown--mega {
  right: -80px;
  width: 780px;
}
.nav__item--has-dropdown:hover .nav__dropdown--mega,
.nav__item--has-dropdown.is-open .nav__dropdown--mega {
  transform: translateY(0);
}

.nav__dropdown--services > div,
.nav__dropdown--mega > div {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(13, 27, 42, 0.16), 0 2px 10px rgba(13, 27, 42, 0.04);
  overflow: hidden;
}

/* Dropdown Header */
.nav__dropdown-header {
  padding: 14px 20px 12px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav__dropdown-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
}
.nav__dropdown-subtitle {
  font-size: 12px;
  color: var(--gray-500);
}

/* Services Dropdown Grid */
.nav__dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 14px;
  background: #ffffff;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.nav__dropdown-link:hover {
  background: #F1F5F9;
  transform: translateX(3px);
  text-decoration: none;
}
.nav__dropdown-link.is-current {
  background: var(--primary-lighter);
  border-left: 3px solid var(--accent);
}

.nav__dropdown-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav__dropdown-link:hover .nav__dropdown-icon {
  transform: scale(1.08);
  background: #ffffff;
  border-color: var(--accent);
}

.nav__dropdown-text {
  display: flex;
  flex-direction: column;
}
.nav__dropdown-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}
.nav__dropdown-link:hover .nav__dropdown-name {
  color: var(--primary);
}
.nav__dropdown-desc {
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.3;
}

.nav__dropdown-footer {
  padding: 11px 20px;
  background: #F8FAFC;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--gray-600);
}
.nav__dropdown-action {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.nav__dropdown-action:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ===========================================
   AREAS MEGA MENU (Desktop)
   =========================================== */
.nav__mega-header {
  padding: 14px 22px 12px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__mega-all-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.nav__mega-all-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.nav__mega-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  background: #ffffff;
}

.nav__mega-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 20px;
}

.nav__mega-col-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #EEF2F6;
}

.nav__mega-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.18s var(--ease);
}
.nav__mega-link:hover {
  background: #F1F5F9;
  color: var(--primary);
  transform: translateX(2px);
  text-decoration: none;
}
.nav__mega-link.is-current {
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 600;
}
.nav__pin {
  font-size: 13px;
  opacity: 0.75;
}

.nav__mega-card {
  padding: 20px;
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(226, 232, 240, 0.4);
}
.nav__mega-card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 8px;
  background: rgba(232, 139, 46, 0.25);
  border: 1px solid rgba(232, 139, 46, 0.6);
  color: #FFB366;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 10px;
}
.nav__mega-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.nav__mega-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin-bottom: 14px;
}
.nav__mega-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(232, 139, 46, 0.4);
  transition: all 0.2s var(--ease);
}
.nav__mega-phone:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===========================================
   NAV ACTIONS (Right Side)
   =========================================== */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.nav__phone::before {
  content: '📞';
  font-size: 13px;
}
.nav__phone:hover {
  color: var(--primary);
  background: var(--primary-lighter);
  text-decoration: none;
}

.nav__book-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  box-shadow: 0 3px 12px var(--accent-glow);
  white-space: nowrap;
}
.nav__book-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 6px 18px rgba(232, 139, 46, 0.4);
  transform: translateY(-1px);
  color: var(--white);
  text-decoration: none;
}

/* Hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.nav__hamburger:hover {
  background: #F1F5F9;
  border-color: var(--gray-300);
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================
   MOBILE DRAWER & OVERLAY
   =========================================== */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.nav__overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__mobile-drawer {
  position: fixed;
  top: 74px;
  right: 0;
  bottom: 0;
  width: min(380px, 86vw);
  background: #ffffff;
  z-index: 999;
  box-shadow: -10px 0 35px rgba(13, 27, 42, 0.18);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.nav__mobile-drawer.is-open {
  transform: translateX(0);
}

body.nav-menu-open {
  overflow: hidden;
}

.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 20px 32px;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__mobile-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
}
.nav__mobile-link:hover,
.nav__mobile-link.is-current {
  background: var(--primary-lighter);
  color: var(--primary);
  text-decoration: none;
}

/* Mobile Accordions */
.nav__mobile-accordion {
  border-radius: 8px;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  margin: 4px 0;
}

.nav__mobile-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease);
}
.nav__mobile-acc-btn:hover {
  background: #F1F5F9;
}

.nav__acc-icon {
  transition: transform 0.25s var(--ease);
}
.nav__mobile-accordion.is-open .nav__acc-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav__mobile-acc-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 10px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav__mobile-accordion.is-open .nav__mobile-acc-panel {
  max-height: 800px;
  opacity: 1;
  padding: 4px 10px 12px;
}

.nav__mobile-acc-panel--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav__mobile-sublink {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.18s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #EEF2F6;
}
.nav__mobile-sublink:hover {
  background: var(--primary-lighter);
  color: var(--primary);
  border-color: #CBD5E1;
  text-decoration: none;
}
.nav__mobile-sublink.is-current {
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 600;
}

/* Mobile Actions at bottom */
.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.nav__mobile-phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s var(--ease);
}
.nav__mobile-phone-btn:hover {
  background: var(--primary);
  text-decoration: none;
  color: #ffffff;
}
.nav__mobile-phone-sub {
  font-size: 11px;
  color: var(--gray-300);
  font-weight: 400;
}

.nav__mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 14px var(--accent-glow);
  transition: all 0.25s var(--ease);
}
.nav__mobile-book-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  text-decoration: none;
  color: #ffffff;
}


/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-background.webp') center/cover no-repeat;
  opacity: 0.16;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 42, 71, 0.96) 0%, rgba(43, 108, 176, 0.88) 55%, rgba(15, 42, 71, 0.94) 100%);
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 84px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__text {
  max-width: 860px;
}

.hero h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero h1 .orange {
  color: var(--accent-light);
}

.hero__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero__fee {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 34px;
}
.hero__fee strong {
  color: var(--accent-light);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero__phone-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.hero__phone-link a {
  color: var(--accent-light);
  font-weight: 600;
}
.hero__phone-link a:hover {
  text-decoration: underline;
}


/* ===========================================
   TRUST STATS BAR — Glassmorphism
   =========================================== */
.trust-bar {
  background: linear-gradient(135deg, #F0F7FF 0%, #E6F0FD 100%);
  padding: 0;
  border-bottom: 1px solid rgba(43, 108, 176, 0.12);
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 4px solid var(--accent);
}

.trust-cell {
  padding: 26px 24px;
  border-right: 1px solid rgba(43, 108, 176, 0.08);
  transition: background 0.25s var(--ease);
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { background: rgba(255, 255, 255, 0.5); }

.trust-cell__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin-bottom: 6px;
}

.trust-cell__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
}
.trust-cell__value span {
  font-weight: 400;
  font-size: 15px;
  color: var(--gray-500);
}
.trust-cell__value em {
  font-style: normal;
  font-weight: 700;
}

.trust-cell__stars {
  color: var(--gold);
  font-size: 14px;
  margin-left: 4px;
}

.trust-cell__desc {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.45;
}


/* ===========================================
   SECTIONS & HEADERS
   =========================================== */
.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

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

.section--dark {
  background: var(--primary-dark);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section__header h2 {
  margin-bottom: 12px;
}
.section__header p {
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
}
.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.65);
}


/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===========================================
   PRICE COMPARISON TABLE
   =========================================== */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.price-table thead {
  background: var(--primary-dark);
  color: var(--white);
}
.price-table th {
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.price-table th:last-child {
  background: var(--accent);
  color: var(--white);
}

.price-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}
.price-table tbody tr:hover {
  background: var(--primary-lighter);
}
.price-table .check {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}


/* ===========================================
   TRUSTED TECHNICIANS — Premium Cards
   =========================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43, 108, 176, 0.3);
}
.trust-card:hover::before {
  opacity: 1;
}

.trust-card__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(43, 108, 176, 0.08) 0%, rgba(232, 139, 46, 0.12) 100%);
  border: 1px solid rgba(43, 108, 176, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.06);
  transition: transform 0.3s var(--ease-spring);
}
.trust-card:hover .trust-card__icon {
  transform: scale(1.08);
}

.trust-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.trust-card__text {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}


/* ===========================================
   SERVICES GRID (Dark Card Style)
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  color: var(--white);
  display: block;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  border-color: rgba(232, 139, 46, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card__icon {
  font-size: 34px;
  margin-bottom: 16px;
}
.svc-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.svc-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 18px;
}

.svc-card__slot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  padding: 6px 14px;
  border: 1px solid var(--green-border);
  border-radius: 100px;
  background: var(--green-soft);
}
.svc-card__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.svc-card__dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.4);
  animation: dotPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes dotPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(2.4); opacity: 0; }
}


/* ===========================================
   SYMPTOMS TABS
   =========================================== */
.symptoms { background: var(--white); }

.symptoms__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.symptoms__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 92px;
}

.symptom-tab {
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: all 0.2s var(--ease);
}
.symptom-tab:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
}
.symptom-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(43, 108, 176, 0.28);
}

.symptoms__content { padding: 8px 0; }

.symptom-list { display: none; }
.symptom-list.active {
  display: block;
  animation: fadeSlideIn 0.3s var(--ease);
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.symptom-list h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 12px;
}
.symptom-list h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.symptom-list ul { list-style: none; padding: 0; }
.symptom-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 12px;
}
.symptom-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ===========================================
   SPECIALTY SERVICES
   =========================================== */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.specialty-card {
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
}
.specialty-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 139, 46, 0.3);
  transform: translateY(-4px);
}

.specialty-card__title {
  color: var(--accent-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.specialty-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ===========================================
   PROCESS (How It Works)
   =========================================== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 38px 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease);
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43, 108, 176, 0.25);
}

.process-step__num {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(43, 108, 176, 0.28);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.process-step p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
}


/* ===========================================
   BRANDS SECTION
   =========================================== */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-chip {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.25s var(--ease);
}
.brand-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}


/* ===========================================
   REVIEWS
   =========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  position: relative;
  transition: all 0.35s var(--ease);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-xs);
}
.review-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--gray-200);
  line-height: 1;
  pointer-events: none;
}

.review-card__stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 18px;
  font-style: italic;
}
.review-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}
.review-card__source {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}


/* ===========================================
   CASE STUDIES
   =========================================== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.case-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
}
.case-card:hover {
  border-color: rgba(232, 139, 46, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.case-card__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.case-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.case-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}
.case-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.case-card li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.case-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 600;
}


/* ===========================================
   FAQ ACCORDION
   =========================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  gap: 16px;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--primary); }

.faq-q__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  font-size: 18px;
  color: var(--gray-400);
}

.faq-item.open .faq-q { color: var(--primary); }
.faq-item.open .faq-q__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: var(--white);
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(43, 108, 176, 0.3);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a__inner {
  padding: 0 0 22px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; }


/* ===========================================
   SERVICE AREA & CHIPS
   =========================================== */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.service-area-title {
  color: var(--accent-light) !important;
  margin-bottom: 18px !important;
  font-size: 19px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.25s var(--ease);
}
.area-tag:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: var(--accent-soft);
}

.explore-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.explore-chip {
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  font-weight: 500;
}
.explore-chip:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: var(--accent-soft);
  text-decoration: none;
}

.bracket-link {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.bracket-link:hover { text-decoration: underline; }

.zip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.zip-code {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}
.zip-code:hover {
  border-color: rgba(43, 108, 176, 0.5);
  color: var(--white);
}


/* ===========================================
   CTA & MAP
   =========================================== */
.cta-final {
  text-align: center;
  padding: 60px 0;
}
.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.7;
}

.map-wrap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }


/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--primary-darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__brand-name span { color: var(--accent-light); }

.footer__brand-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 5px 0;
  transition: all 0.25s var(--ease);
}
.footer__col a:hover {
  color: var(--accent-light);
  text-decoration: none;
  padding-left: 4px;
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.footer__social a:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: var(--accent-soft);
  text-decoration: none;
}


/* ===========================================
   SCROLL REVEAL ANIMATION
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   RESPONSIVE MEDIA QUERIES
   =========================================== */
@media (max-width: 1024px) {
  .hero__layout { padding: 80px 24px 64px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell { border-bottom: 1px solid rgba(43, 108, 176, 0.08); }
  .trust-cell:nth-child(2) { border-right: none; }
  
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { max-width: 600px; margin: 0 auto; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .symptoms__layout { grid-template-columns: 1fr; }
  .symptoms__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 991px) {
  .nav__links { display: none !important; }
  .nav__hamburger { display: flex !important; }
}

@media (max-width: 768px) {
  h1 { font-size: 28px !important; }
  h2 { font-size: 23px !important; }

  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .nav__book-btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { height: 66px; }
  .nav__logo-img { height: 42px; }
  .nav__mobile-drawer { top: 66px; }

  .hero__layout { padding: 64px 20px 52px; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__ctas .btn { width: 100%; }
  .hero__sub { font-size: 14.5px; }

  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-cell { padding: 18px 16px; }
  .trust-cell__value { font-size: 22px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 28px 22px; }

  .services-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .price-table { display: block; overflow-x: auto; }
  .map-wrap { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc-card__dot::after { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
