/* =========================================
   VELOCITY ROOFING - Main Stylesheet
   Brand: Charcoal, White, Brand Orange #FC9202, Brand Blue #0270BC
   ========================================= */

/* === VARIABLES === */
:root {
  --red: #FC9202;
  --red-dark: #D97B02;
  --red-light: #FFA733;
  /* On-light text colors that meet WCAG AA (4.5:1 on white) */
  --orange-on-light: #B86800;  /* #FC9202 darkened - 5.1:1 on white */
  --orange-on-light-strong: #8F5000; /* 8.0:1 on white for small text */
  --charcoal: #1A1E26;
  --charcoal-mid: #252B36;
  --charcoal-light: #2F3644;
  --navy: #0270BC;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #EDEFF2;
  --mid-gray: #C4C9D4;
  --text-dark: #1A1E26;
  --text-mid: #4A5568;
  --text-light: #5A6478; /* darkened from #718096 - ensures 4.5:1 on white */
  --font-heading: 'Barlow', 'Inter', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.24);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.display-xl { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 700; }
.display-sm { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; }

.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-mid { color: var(--text-mid); }
.text-light-clr { color: var(--text-light); }

/* Eyebrow on LIGHT backgrounds: use darker orange for WCAG AA compliance */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-on-light);
  display: block;
  margin-bottom: 0.75rem;
}
/* Eyebrow on DARK backgrounds: full brand orange is fine */
.section--dark .eyebrow,
.section--charcoal-mid .eyebrow,
#hero .eyebrow,
.page-hero .eyebrow,
#financing .eyebrow,
#gallery .eyebrow,
#service-areas .eyebrow,
#why-choose .eyebrow,
#problem-solution .eyebrow,
.vr-slider-section .eyebrow {
  color: var(--red);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 860px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

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

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

.section--charcoal-mid {
  background: var(--charcoal-mid);
  color: var(--white);
}

.section--light { background: var(--off-white); }
.section--gray { background: var(--light-gray); }
.section--alt  { background: var(--white); color: var(--text-dark); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

/* Primary button: dark text on orange gives ~8.4:1 contrast vs white-on-orange ~2.7:1 */
.btn--primary {
  background: var(--red);
  color: #1A1E26;
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #1A1E26;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(252,146,2,0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

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

/* Ghost-red on white bg: orange border/text passes at large/bold size; hover uses dark text */
.btn--ghost-red {
  background: transparent;
  color: var(--orange-on-light);
  border-color: var(--orange-on-light);
}
.btn--ghost-red:hover {
  background: var(--red);
  color: #1A1E26;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* === NAVIGATION / HEADER === */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 30, 38, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(26, 30, 38, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* white logo has transparency - no filter needed on dark bg */
}

/* Footer logo - slightly smaller */
.footer-logo .logo-img {
  height: 44px;
}

/* Keep legacy classes non-breaking in case any JS references them */
.logo-mark { display: none; }
.logo-text { display: none; }
.logo-name { display: none; }
.logo-tagline { display: none; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 1; min-width: 0; }
.main-nav a {
  padding: 8px 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item .nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  /* opacity/pointer-events/transform handled in ANIMATIONS section */
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  border-radius: 4px;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-phone .phone-icon {
  width: 18px;
  height: 18px;
  color: var(--red);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav — animated open/close handled in ANIMATIONS section */
.mobile-nav {
  display: none;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 0.975rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.mobile-nav-cta {
  padding: 16px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === MOBILE STICKY BAR === */
#mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--charcoal);
  border-top: 2px solid var(--red);
  padding: 12px 16px;
  gap: 12px;
}

#mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sticky-call {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.sticky-quote {
  background: var(--red);
  color: var(--white);
}

/* === HERO SECTION === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,30,38,0.78) 40%, rgba(26,30,38,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}

/* Hero eyebrow on dark hero bg - warm amber passes easily */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252,146,2,0.15);
  border: 1px solid rgba(252,146,2,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB84A;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

/* Hero accent on dark bg - brand orange passes on charcoal */
.hero-title .accent {
  color: var(--red);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

/* Trust badges on hero dark bg - bumped to full white for clarity */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

.trust-badge .badge-icon {
  color: var(--red);
  font-size: 0.9rem;
}

/* === TRUST BAR === */
#trust-bar {
  background: var(--charcoal-mid);
  border-top: 3px solid var(--red);
  padding: 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.trust-item:last-child { border-right: none; }

.trust-item:hover { background: rgba(255,255,255,0.03); }

.trust-item .trust-icon {
  font-size: 1.6rem;
  color: var(--red);
  flex-shrink: 0;
}

.trust-item-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

/* mid-gray on charcoal-mid: #C4C9D4 on #252B36 = ~5.1:1 ✔ */
.trust-item-text span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* === SECTION HEADINGS === */
.section-heading {
  margin-bottom: 56px;
}

.section-heading.text-center { text-align: center; }

.section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-heading.text-center p { margin: 0 auto; }

.heading-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.text-center .heading-rule { margin: 16px auto 24px; }

/* === PROBLEM/SOLUTION === */
#problem-solution {
  background: var(--charcoal);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.problem-list {
  margin: 32px 0;
}

/* Problem list on charcoal: bumped to 0.9 opacity for better contrast */
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.975rem;
  color: rgba(255,255,255,0.92);
}

.problem-list li .check {
  color: var(--red);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.problem-visual {
  position: relative;
}

.problem-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.problem-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: 0 16px 40px rgba(252,146,2,0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* === SERVICES === */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--red);
}

.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light-gray);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img { transform: scale(1.05); }

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(252,146,2,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

/* Service link on white card bg: use darker orange for contrast */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange-on-light);
  margin-top: auto;
}

.service-link:hover { gap: 10px; }

/* === WHY CHOOSE === */
#why-choose { background: var(--charcoal); }

/* --- 3×3 cards grid --- */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.why-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  background: var(--charcoal-light);
  border-top-color: var(--red);
  transform: translateY(-3px);
}

/* Shared icon style */
.why-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(252,146,2,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.why-item-icon i {
  font-size: 1.25rem;
  color: #FDB84A;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin: 0;
}

/* === PROCESS === */
#process { background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 0;
  position: relative;
  margin-top: 56px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--charcoal);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(252,146,2,0.3);
}

.process-step h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* === FINANCING === */
#financing {
  background: linear-gradient(135deg, var(--charcoal) 0%, #0a2a4a 100%);
  color: var(--white);
}

.financing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.financing-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.financing-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.fin-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Financing icon on charcoal - brand orange passes on dark bg */
.fin-point .fin-icon {
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.fin-point strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.fin-point span {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.financing-visual {
  position: relative;
}

.financing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.financing-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.financing-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.fin-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.fin-feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* fin-feature-row icon on white financing card - use darker orange */
.fin-feature-row .icon { color: var(--orange-on-light); }

.goodleap-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 20px;
}

.goodleap-badge .powered-by {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.goodleap-badge .partner-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* === GALLERY === */
#gallery { background: var(--charcoal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 240px;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,30,38,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { background: rgba(26,30,38,0.5); }

/* Gallery tag: dark text on orange pill for contrast */
.gallery-tag {
  background: var(--red);
  color: #1A1E26;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

/* === REVIEWS === */
#reviews {
  background: var(--off-white);
}
/* Override slider section dark-theme text for the light #reviews background */
#reviews .section-heading h2 { color: var(--text-dark); }
#reviews .section-heading p { color: var(--text-mid); }
#reviews .eyebrow { color: var(--orange-on-light); }
#reviews .heading-rule { background: var(--red); }
#reviews .vr-stats-bar {
  background: var(--white);
  border-color: var(--light-gray);
}
#reviews .vr-stat-number,
#reviews .vr-stat-value { color: var(--text-dark); }
#reviews .vr-stat-label { color: var(--text-mid); }
#reviews .vr-stat-divider { background: var(--light-gray); }
#reviews .vr-card {
  background: var(--white);
  border-color: var(--light-gray);
  box-shadow: var(--shadow-sm);
}
#reviews .vr-slide.active .vr-card {
  border-color: rgba(252,146,2,0.3);
  box-shadow: var(--shadow-md);
}
#reviews .vr-name { color: var(--text-dark); }
#reviews .vr-location { color: var(--text-light); }
#reviews .vr-text { color: var(--text-mid); }
#reviews .vr-text::before { color: rgba(252,146,2,0.2); }
#reviews .vr-service-tag {
  color: var(--orange-on-light);
  background: rgba(184,104,0,0.08);
  border-color: rgba(184,104,0,0.2);
}
#reviews .vr-btn {
  border-color: rgba(0,0,0,0.18);
  color: var(--text-mid);
  background: transparent;
}
#reviews .vr-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #1A1E26;
}
#reviews .vr-btn:focus-visible { outline-color: var(--orange-on-light); }
#reviews .vr-dot { background: rgba(0,0,0,0.18); }
#reviews .vr-dot.active { background: var(--red); }
#reviews .vr-dot:focus-visible { outline-color: var(--orange-on-light); }
#reviews .vr-counter { color: rgba(0,0,0,0.4); }
#reviews .vr-counter-current { color: rgba(0,0,0,0.65); }

.reviews-featured {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.reviews-featured::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 12rem;
  color: rgba(252,146,2,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-quote {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Review avatar on orange bg: dark text for contrast */
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1E26;
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.review-meta span {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

/* Stars on white/light bg: deep amber for contrast */
.review-stars .star { color: #B8860B; font-size: 0.9rem; }

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-card .review-stars { margin-bottom: 12px; }

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
}

.review-card-author strong {
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
}

.review-card-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}

.google-badge span {
  font-size: 0.875rem;
  color: var(--text-mid);
}

.google-badge strong {
  font-size: 1.1rem;
  font-weight: 800;
}

/* === SERVICE AREAS === */
#service-areas { background: var(--charcoal); }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.area-main-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
}

.state-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

/* State badges on charcoal dark bg - #FDB84A warm amber passes */
.state-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(252,146,2,0.15);
  border: 1px solid rgba(252,146,2,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FDB84A;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.city-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* City list chevron on charcoal dark bg - brand orange passes */
.city-list li::before {
  content: '›';
  color: var(--red);
  font-weight: 700;
}

.areas-map {
  background: var(--charcoal-mid);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.07);
}

.areas-map h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.license-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.license-item .lic-flag { font-size: 1.4rem; }

.license-item .lic-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.license-item .lic-info span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* === CARD ICON (replaces emoji icons on service pages) === */
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(252,146,2,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-icon i {
  font-size: 1.35rem;
  color: var(--red);
}
/* Variant for dark-bg sections */
.card-icon--dark {
  background: rgba(252,146,2,0.15);
}
.card-icon--dark i {
  color: #FDB84A;
}
/* Larger variant for state cards */
.card-icon--lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
}
.card-icon--lg i {
  font-size: 1.75rem;
}

/* === SERVICE AREAS - STATE LAYOUT === */
.states-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.states-map-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.states-map-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(252,146,2,0.2));
}

.states-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.state-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-top: 3px solid var(--red);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.state-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.state-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.state-abbr {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: #FDB84A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.state-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 2px;
}

.state-lic {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-on-light);
  letter-spacing: 0.02em;
}

.state-card > p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .states-layout { grid-template-columns: 1fr; gap: 40px; }
  .states-map-img { max-width: 380px; }
}

@media (max-width: 768px) {
  .states-cards { grid-template-columns: 1fr; }
  .states-map-img { max-width: 280px; }
}

/* === FAQ === */
#faq { background: var(--off-white); }

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(252,146,2,0.35);
  box-shadow: 0 4px 20px rgba(252,146,2,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-item.open .faq-question {
  background: rgba(252,146,2,0.04);
}

.faq-question h3 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-item.open .faq-question h3 {
  color: var(--charcoal);
}

.faq-chevron {
  width: 30px;
  height: 30px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 0.75rem;
  color: var(--text-mid);
}

.faq-item.open .faq-chevron {
  background: var(--red);
  color: #1A1E26;
  transform: rotate(180deg);
}

/* Slide + fade animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding: 0 24px 22px;
  /* max-height set dynamically by JS */
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* Divider line between question and answer */
.faq-item.open .faq-question {
  border-bottom: 1px solid rgba(252,146,2,0.15);
}

/* === FINAL CTA ===
   Orange bg (#FC9202) with white text fails WCAG AA (only ~2.7:1).
   Solution: deep charcoal bg with orange top-border accent - high contrast guaranteed.
*/
#final-cta {
  background: var(--charcoal);
  border-top: 6px solid var(--red);
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 0;
}

.final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Generic utility class for high-contrast CTA sections */
.section-cta {
  background: var(--charcoal);
  border-top: 6px solid var(--red);
}

/* === FOOTER === */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82); /* bumped from 0.72 for better contrast */
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.footer-contact-list a:hover { color: var(--white); }

/* Footer icons on charcoal - brand orange passes on dark bg */
.footer-contact-list .icon { color: var(--red); font-size: 0.9rem; }

/* Social icons in footer */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.footer-nav-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Footer bottom text: bumped from 0.4/0.35 to 0.6 for legibility on charcoal */
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-lic {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

/* Breadcrumbs on dark page-hero bg: bumped up for readability */
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.55); }

/* === CONTACT FORM === */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(252,146,2,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-consent {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-top: 8px;
}

/* === UTILITY === */
.highlight-box {
  background: rgba(252,146,2,0.06);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

/* Tag pill on white/light bg: use darker orange for contrast */
.tag {
  display: inline-block;
  background: rgba(184,104,0,0.1);
  color: var(--orange-on-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawRule {
  from { width: 0; }
  to   { width: 48px; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* --- Hero entrance (fires on load) --- */
.hero-animate .hero-eyebrow   { animation: fadeInDown 0.55s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-animate .hero-title      { animation: fadeInUp  0.7s  cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.hero-animate .hero-subtitle   { animation: fadeInUp  0.65s cubic-bezier(0.16,1,0.3,1) 0.38s both; }
.hero-animate .btn-group       { animation: fadeInUp  0.6s  cubic-bezier(0.16,1,0.3,1) 0.5s  both; }
.hero-animate .trust-badges    { animation: fadeInUp  0.55s cubic-bezier(0.16,1,0.3,1) 0.65s both; }

/* --- Page-hero entrance (inner pages) --- */
.page-hero-animate .breadcrumb  { animation: fadeInDown 0.5s  cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.page-hero-animate .eyebrow     { animation: fadeInDown 0.5s  cubic-bezier(0.16,1,0.3,1) 0.18s both; }
.page-hero-animate h1           { animation: fadeInUp  0.65s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.page-hero-animate p            { animation: fadeInUp  0.6s  cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.page-hero-animate .btn-group,
.page-hero-animate .btn         { animation: fadeInUp  0.55s cubic-bezier(0.16,1,0.3,1) 0.54s both; }

/* --- Generic one-shot utility (legacy kept) --- */
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }

/* --- Scroll-reveal system --- */
/* Base state: hidden */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  will-change: opacity, transform;
}
.reveal       { transform: translateY(32px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal-left  { transform: translateX(-40px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { transform: translateX(40px);  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale { transform: scale(0.90);       transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.reveal-fade  { transform: none;              transition: opacity 0.7s ease; }

/* Visible state */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.48s; }
.stagger > *:nth-child(8) { transition-delay: 0.56s; }
.stagger > *:nth-child(9) { transition-delay: 0.64s; }

/* --- Heading rule draw animation --- */
.heading-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px 0 24px;
  /* override below when .visible is added by JS */
  transform-origin: left center;
}
.heading-rule.animated {
  width: 0;
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.heading-rule.animated.visible { width: 48px; }
.text-center .heading-rule { margin: 16px auto 24px; transform-origin: center center; }

/* --- Nav dropdown: smooth fade+slide --- */
.nav-item .nav-dropdown {
  display: block !important;       /* override display:none so transition works */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- Service card: image zoom + lift already in CSS, enhance icon --- */
.service-icon {
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon {
  background: rgba(252,146,2,0.2);
  transform: scale(1.12) rotate(-4deg);
}

/* --- Why cards: bounce on hover + icon pop --- */
.why-card {
  transition: border-color 0.25s ease, background 0.25s ease,
              transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.why-item-icon {
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-item-icon {
  background: rgba(252,146,2,0.28);
  transform: scale(1.15) rotate(-5deg);
}

/* --- Process steps: animated connector line draw --- */
.process-steps::before {
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.process-steps.visible::before {
  transform: scaleX(1);
}
/* starts scaled to 0 */
.process-steps:not(.visible)::before {
  transform: scaleX(0);
}
.step-number {
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.1);
}

/* --- Review cards: subtle lift + border glow --- */
.review-card {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(252,146,2,0.3);
}

/* --- Trust items: slide-up on hover --- */
.trust-item {
  transition: background 0.25s ease, transform 0.25s ease;
}
.trust-item:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* --- Footer socials: already has hover, add scale --- */
.footer-socials a {
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.footer-socials a:hover {
  transform: translateY(-3px) scale(1.1);
}

/* --- Buttons: pulse ring on primary CTA --- */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
}
.btn--primary:hover::after {
  background: rgba(255,255,255,0.08);
}
.btn--primary:active { transform: translateY(0) scale(0.98); }

/* --- State cards: already has hover, add glow --- */
.state-card {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
}
.state-card:hover {
  box-shadow: 0 8px 32px rgba(252,146,2,0.15);
  border-top-color: var(--red);
  transform: translateY(-4px);
}

/* --- Card icon bounce on parent hover --- */
.card-icon {
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
/* Applied when any ancestor card is hovered */
.service-card:hover .card-icon,
.why-card:hover .card-icon { transform: scale(1.12) rotate(-4deg); }

/* --- Fin-point hover glow --- */
.fin-point {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.fin-point:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(252,146,2,0.25);
  transform: translateX(4px);
}

/* --- License items: slide right on hover --- */
.license-item {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.license-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(252,146,2,0.2);
  transform: translateX(4px);
}

/* --- Gallery item: already has zoom, add overlay fade --- */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  background: rgba(252,146,2,0.08);
}

/* --- Lightbox: fade in/out --- */
#lightbox {
  animation: fadeIn 0.22s ease both;
}
#lightbox .lightbox-content {
  animation: scaleIn 0.28s cubic-bezier(0.16,1,0.3,1) both;
}
#lightbox.closing {
  animation: fadeIn 0.18s ease reverse both;
}

/* --- Mobile nav slide down (only at collapse breakpoint) --- */
@media (max-width: 960px) {
  .mobile-nav {
    display: block;   /* override the default display:none so transition works */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1),
                opacity 0.3s ease;
    padding: 0;
  }
  .mobile-nav.open {
    /* Cap height to the visible viewport (minus header bar) so long menus
       scroll internally instead of pushing CTA buttons off-screen */
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    padding: 16px 0 24px;
  }
}

/* --- Reduce motion: respect user preference --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Skip to main content accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--red);
  color: white;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Process steps row-of-7 fix */
@media (min-width: 769px) and (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #e53e3e;
}
.form-group input:valid:not(:placeholder-shown) {
  border-color: #48bb78;
}

/* Print styles */
@media print {
  #site-header, #mobile-sticky-bar, .btn { display: none !important; }
  body { padding-bottom: 0; }
}

/* =========================================
   REVIEW SLIDER COMPONENT
   ========================================= */
.vr-slider-section {
  background: var(--charcoal);
  padding: 96px 0;
}
.vr-slider-section .section-heading { margin-bottom: 48px; }
.vr-slider-section .section-heading p { color: rgba(255,255,255,0.82); }
.vr-slider-section .section-heading h2 { color: #FFFFFF; }

.vr-slider {
  position: relative;
  outline: none;
  user-select: none;
}

.vr-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.vr-track {
  display: flex;
  will-change: transform;
  cursor: grab;
}
.vr-track:active { cursor: grabbing; }

/* Individual slide */
.vr-slide {
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Card */
.vr-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 260px;
}

.vr-slide.active .vr-card {
  border-color: rgba(252, 146, 2, 0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Header row */
.vr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.vr-author-info {
  flex: 1;
  min-width: 0;
}

.vr-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vr-location {
  font-size: 0.77rem;
  color: var(--mid-gray);
}

.vr-google-badge {
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.vr-card:hover .vr-google-badge { opacity: 1; }

/* Stars */
.vr-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

/* Quote text */
.vr-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  flex: 1;
  quotes: none;
  font-style: normal;
  position: relative;
}

.vr-text::before {
  content: '\201C';
  font-size: 3rem;
  color: rgba(252,146,2,0.25);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.7em;
  margin-right: 4px;
}

/* Service tag */
/* Slider service tag on charcoal-mid dark card bg - brand orange passes */
.vr-service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(252,146,2,0.12);
  border: 1px solid rgba(252,146,2,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-top: auto;
  align-self: flex-start;
}

/* Controls */
.vr-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.vr-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
/* Slider nav button hover: dark text on orange bg */
.vr-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #1A1E26;
  transform: scale(1.08);
}
.vr-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Dots */
.vr-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 300px;
}

.vr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.vr-dot.active {
  background: var(--red);
  transform: scale(1.35);
}
.vr-dot:hover { background: rgba(255,255,255,0.5); }
.vr-dot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Counter */
/* Counter text on charcoal: bumped up for legibility */
.vr-counter {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.vr-counter-current { color: rgba(255,255,255,0.85); font-weight: 700; }

/* Overall stats bar inside slider section */
.vr-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
}

.vr-stat {
  text-align: center;
}

.vr-stat-number,
.vr-stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-heading);
  line-height: 1;
}

.vr-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.vr-stat-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 6px;
}

.vr-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.2);
}

/* Light theme variant (for pages with light bg) */
.vr-slider-section.vr-light {
  background: var(--off-white);
}
.vr-slider-section.vr-light .vr-card {
  background: white;
  border-color: var(--light-gray);
  box-shadow: var(--shadow-sm);
}
.vr-slider-section.vr-light .vr-slide.active .vr-card {
  border-color: rgba(252,146,2,0.3);
  box-shadow: var(--shadow-md);
}
.vr-slider-section.vr-light .vr-name { color: var(--text-dark); }
.vr-slider-section.vr-light .vr-text { color: var(--text-mid); }
.vr-slider-section.vr-light .vr-text::before { color: rgba(252,146,2,0.15); }
.vr-slider-section.vr-light .vr-btn {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-mid);
}
.vr-slider-section.vr-light .vr-btn:hover { background: var(--red); border-color: var(--red); color: #1A1E26; }
.vr-slider-section.vr-light .vr-dot { background: rgba(0,0,0,0.18); }
.vr-slider-section.vr-light .vr-dot.active { background: var(--red); }
.vr-slider-section.vr-light .vr-counter { color: rgba(0,0,0,0.3); }
.vr-slider-section.vr-light .vr-counter-current { color: rgba(0,0,0,0.55); }
.vr-slider-section.vr-light .vr-stats-bar {
  background: white;
  border-color: var(--light-gray);
}
.vr-slider-section.vr-light .vr-stat-number { color: var(--text-dark); }
.vr-slider-section.vr-light .vr-stat-label { color: var(--text-mid); }
.vr-slider-section.vr-light .vr-stat-divider { background: var(--light-gray); }
.vr-slider-section.vr-light .section-heading h2 { color: var(--text-dark); }
.vr-slider-section.vr-light .section-heading p { color: var(--text-mid); }

/* Responsive */
@media (max-width: 768px) {
  .vr-slider-section { padding: 64px 0; }
  .vr-card { padding: 24px 20px; min-height: auto; }
  .vr-slide { padding: 0 6px; }
  .vr-stats-bar { gap: 24px; padding: 16px; }
  .vr-stat-number { font-size: 1.8rem; }
  .vr-stat-divider { display: none; }
  .vr-dots { max-width: 200px; }
}


/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .process-steps::before { display: none; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .financing-inner { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-stat-card { bottom: -16px; right: -8px; }
  .trust-item { flex: 0 0 45%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  /* Nav: tighten link padding and hide phone number text, keep icon */
  .main-nav a { padding: 8px 8px; font-size: 0.8rem; }
  .header-phone-text { display: none; }
  .header-right { gap: 10px; }
  .btn--sm { padding: 10px 16px; font-size: 0.8rem; }
}

/* === NAV COLLAPSE BREAKPOINT === */
@media (max-width: 960px) {
  .main-nav, .header-right .btn { display: none; }
  .menu-toggle { display: flex; }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .container { padding: 0 20px; }

  .main-nav, .header-right .btn { display: none; }
  .header-phone { font-size: 0.875rem; }
  .menu-toggle { display: flex; }
  /* mobile-nav open state handled by max-height animation */
  .header-phone-text { display: none; }

  #mobile-sticky-bar { display: flex; }

  body { padding-bottom: 80px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .review-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; }
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .trust-bar-inner { flex-direction: column; align-items: center; }
  .trust-item { flex: 1; width: 100%; border-right: none; justify-content: center; }
  .financing-points { grid-template-columns: 1fr; }

  .hero-content { padding: 120px 0 80px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 6px 12px; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .problem-stat-card { position: relative; bottom: auto; right: auto; margin-top: 16px; display: inline-block; }
  .contact-form { padding: 28px 20px; }
  .reviews-featured { padding: 32px 24px; }
  .review-quote { font-size: 1.05rem; }
  .areas-map { padding: 28px 20px; }
  .city-list { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }

  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* --- Stats strip (just below hero) --- */
.about-stats-strip {
  background: var(--charcoal-mid);
  border-bottom: 3px solid var(--red);
}
.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 32px 0;
}
.about-stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 16px 24px;
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.about-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- Story grid --- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-story-creds {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-dark);
}
.story-cred-item i {
  width: 20px;
  color: var(--orange-on-light);
  flex-shrink: 0;
}
.about-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--charcoal);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-image-badge i {
  font-size: 1.6rem;
  color: var(--red);
}
.about-image-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}
.about-image-badge span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.74rem;
}

/* --- Values grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(252,146,2,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon i {
  font-size: 1.3rem;
  color: var(--orange-on-light);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- Credentials grid --- */
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.cred-card--featured {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.cred-badge-wrap {
  width: 60px;
  height: 60px;
  background: rgba(252,146,2,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cred-badge-wrap i {
  font-size: 1.8rem;
  color: var(--red);
}
.cred-card--featured h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cred-card--featured p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.creds-licenses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lic-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.lic-card--insurance .lic-state {
  background: rgba(2,112,188,0.1);
  color: var(--navy);
}
.lic-state {
  width: 52px;
  height: 52px;
  background: rgba(252,146,2,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange-on-light);
  flex-shrink: 0;
}
.lic-card .lic-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lic-card .lic-info strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.lic-card .lic-info span {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.lic-card .lic-info code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--orange-on-light);
  background: rgba(252,146,2,0.08);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 2px;
}

/* --- Why grid --- */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-why-text h2 {
  color: var(--charcoal);
}
.about-why-text p {
  color: #4A5568;
  margin-bottom: 16px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: transparent;
}
.why-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

/* --- Review highlight card --- */
.why-review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.why-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F59E0B;
}
.why-review-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
}
.why-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.why-review-avatar {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.why-review-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.why-review-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.why-review-meta i { color: #4285F4; }
.why-stats-mini {
  display: flex;
  gap: 0;
  margin-top: 20px;
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.why-stat:last-child { border-right: none; }
.why-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.why-stat-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* --- Area chips --- */
.about-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.about-area-chips span {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.about-area-chips span:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--charcoal);
}

/* --- About responsive --- */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image { order: -1; }
  .about-story-image img { height: 340px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .about-stats-row { gap: 0; }
  .about-stat-divider { display: none; }
  .about-stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .values-grid { grid-template-columns: 1fr; }
  .why-list { gap: 24px; }
}
