/*
  Just Electric Company — style guide tokens (vanilla CSS)
  Fonts: Oswald (headings), Inter (body), Georgia italic (owner signature)
*/
:root {
  color-scheme: light;

  --color-maroon: #6b1f2b;
  --color-burgundy: #4a121c;
  --color-charcoal: #1f1f1f;
  --color-warm-white: #f7f4ef;
  --color-white: #ffffff;
  --color-bulb-yellow: #f4d35e;
  --color-warm-gray: #d8d2c8;
  --color-muted-taupe: #8a7c73;

  --font-heading: "Oswald", "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;

  --container-max: 1200px;
  --pad-section-y-desktop: 5rem;
  --pad-section-x-desktop: 1.5rem;
  --pad-section-y-mobile: 3rem;
  --pad-section-x-mobile: 1.25rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --shadow-card: 0 10px 30px rgba(31, 31, 31, 0.08);

  /* Aliases for legacy class names used in markup */
  --bg: var(--color-warm-white);
  --surface: var(--color-white);
  --text: var(--color-charcoal);
  --muted: var(--color-muted-taupe);
  --border: var(--color-warm-gray);
  --accent: var(--color-maroon);
  --accent-hover: var(--color-burgundy);
  --glow: var(--color-bulb-yellow);
  --footer-bg: var(--color-burgundy);

  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(var(--container-max), calc(100% - var(--pad-section-x-mobile) * 2));
  margin-inline: auto;
}

@media (min-width: 769px) {
  .container {
    width: min(var(--container-max), calc(100% - var(--pad-section-x-desktop) * 2));
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 110;
  padding: var(--pad-section-x-mobile) 1rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: var(--pad-section-x-mobile);
  outline: 2px solid var(--glow);
  outline-offset: 2px;
}

/* ------- Header ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(247 244 239 / 95%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding-block: 0.65rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
}

.logo-mark {
  position: relative;
  flex-shrink: 0;
  color: var(--color-charcoal);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: -4px -2px auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 30%, rgb(244 211 94 / 0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.logo-bulb {
  position: relative;
  display: block;
  z-index: 1;
  color: var(--color-maroon);
}

.logo-bulb-outline {
  stroke: var(--color-maroon);
}

.logo-bulb-fill {
  fill: rgb(244 211 94 / 0.15);
  stroke: none;
}

.logo-bulb-jec {
  fill: var(--color-charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-type {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.logo-line {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
}

.logo-line--maroon {
  color: var(--color-maroon);
}

.logo-line--lic {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--color-muted-taupe);
}

@media (min-width: 480px) {
  .logo-line {
    font-size: 1rem;
  }

  .logo-line--lic {
    font-size: 0.7rem;
  }
}

.logo:hover .logo-line--maroon {
  color: var(--accent-hover);
}

.nav {
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 1.35rem;
  background: var(--text);
  border-radius: 1px;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--accent);
}

.header-cta .btn {
  white-space: nowrap;
}

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

  .nav-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    min-width: 12rem;
    padding: 0.65rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

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

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

.btn-secondary {
  background: var(--surface);
  color: var(--color-maroon);
  border: 1px solid var(--color-maroon);
}

.btn-secondary:hover {
  background: var(--bg);
}

.btn-block {
  width: 100%;
}

@media (max-width: 599px) {
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .btn-tap-lg {
    min-height: 48px;
  }
}

@media (max-width: 599px) {
  .cta-actions .btn {
    justify-content: center;
  }
}

/* ------- Sections ------- */
.section {
  padding: var(--pad-section-y-mobile) var(--pad-section-x-mobile);
}

@media (min-width: 769px) {
  .section {
    padding: var(--pad-section-y-desktop) var(--pad-section-x-desktop);
  }
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.75rem;
}

.section-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--left {
  text-align: left;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw + 0.85rem, 2.125rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.section-title--left {
  text-align: left;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.section-intro--left {
  max-width: 36rem;
}

/* ------- Hero ------- */
.hero {
  padding: var(--pad-section-y-mobile) var(--pad-section-x-mobile);
  background:
    radial-gradient(
      ellipse 90% 70% at 50% -5%,
      rgb(244 211 94 / 0.22),
      rgb(247 244 239 / 0.6) 45%,
      transparent 72%
    ),
    var(--bg);
}

@media (min-width: 769px) {
  .hero {
    padding: var(--pad-section-y-desktop) var(--pad-section-x-desktop);
  }
}

.hero-grid {
  display: grid;
  gap: var(--pad-section-x-desktop);
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
    gap: 2.5rem;
  }
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw + 0.85rem, 2.875rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.lead {
  margin: 0 0 1.25rem;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero photo — compose toward panel / technician (subject on camera-right) */
.hero-media {
  margin: 0;
  align-self: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1672 / 941;
  background: var(--border);
}

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

/* ------- Trust bar ------- */
.trust-bar {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 1rem var(--pad-section-x-mobile);
}

@media (min-width: 769px) {
  .trust-bar {
    padding: 1.1rem var(--pad-section-x-desktop);
  }
}

.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar-icon {
  display: flex;
  color: var(--color-white);
  opacity: 0.92;
}

.trust-bar-icon--glow {
  color: var(--color-bulb-yellow);
}

.trust-bar-call {
  color: inherit;
  text-decoration: none;
}

.trust-bar-call:hover {
  color: var(--color-bulb-yellow);
  text-decoration: underline;
}

/* ------- Service cards ------- */
.services-cards {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 620px) {
  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .services-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--color-warm-gray);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgb(31 31 31 / 4%);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-maroon);
}

.service-card-icon--highlight {
  color: var(--color-maroon);
  filter: drop-shadow(0 0 12px rgb(244 211 94 / 0.55));
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

/* ------- About ------- */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr minmax(0, 240px);
    gap: 2.75rem;
  }
}

.prose--about p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.owner-signature {
  margin: 1.35rem 0 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-charcoal);
}

.owner-name {
  font-weight: 600;
}

.owner-meta {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
}

.muted-taupe {
  color: var(--color-muted-taupe);
}

.about-aside {
  display: none;
}

@media (min-width: 800px) {
  .about-aside {
    display: block;
    padding-top: 2rem;
  }
}

.about-quote {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-maroon);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.about-divider {
  margin-top: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ------- Why ------- */
.why-section {
  background:
    radial-gradient(circle at 98% 0%, rgb(244 211 94 / 0.12), transparent 45%),
    var(--bg);
}

.why-list {
  max-width: 36rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.72;
}

.why-list li {
  margin-bottom: 0.55rem;
}

.why-list li::marker {
  color: var(--color-maroon);
}

/* ------- CTA band ------- */
.cta-band {
  background: linear-gradient(115deg, var(--color-burgundy) 0%, var(--color-maroon) 55%, var(--color-burgundy) 100%);
  color: rgb(247 244 239 / 0.92);
  padding: clamp(3rem, 6vw, 4.75rem) var(--pad-section-x-mobile);
  border-block: 1px solid rgb(244 211 94 / 0.16);
}

@media (min-width: 769px) {
  .cta-band {
    padding-left: var(--pad-section-x-desktop);
    padding-right: var(--pad-section-x-desktop);
  }
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 760px) {
  .cta-band-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}

.cta-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw + 0.95rem, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.cta-copy p {
  margin: 0;
  max-width: 42ch;
  font-size: 1.035rem;
  line-height: 1.62;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-on-dark {
  background: var(--color-bulb-yellow);
  color: var(--color-charcoal);
}

.btn-on-dark:hover {
  background: #efc845;
  color: var(--color-charcoal);
}

.btn-ghost-dark {
  border: 1px solid rgb(247 244 239 / 0.55);
  background: transparent;
  color: var(--color-white);
}

.btn-ghost-dark:hover {
  background: rgb(247 244 239 / 0.1);
}

/* ------- Map ------- */
.map-wrap {
  margin-top: 2rem;
}

.map-embed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.locations-note--center {
  text-align: center;
  margin-top: 1rem;
}

/* ------- Areas list ------- */
.areas-list {
  margin: 0 auto 2rem;
  max-width: 46rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.74;
  color: var(--muted);
}

/* ------- Contact + form ------- */
.contact-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.contact-block {
  font-style: normal;
  margin-top: 1.25rem;
  line-height: 1.7;
}

.contact-block p {
  margin: 0 0 1rem;
}

.contact-block strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.form-wrap .form {
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid var(--color-warm-gray);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.field {
  margin-bottom: 1rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  color: var(--color-charcoal);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1px solid var(--color-warm-gray);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-warm-white);
  color: var(--color-charcoal);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--color-maroon);
  outline-offset: 2px;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.25em;
}

.form-tip {
  margin: 0.65rem 0 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.5;
}

#main {
  padding-bottom: 5rem;
}

@media (min-width: 769px) {
  #main {
    padding-bottom: 0;
  }
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 0.65rem var(--pad-section-x-mobile);
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 12px));
  background: rgb(247 244 239 / 95%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgb(31 31 31 / 8%);
}

@media (min-width: 769px) {
  .mobile-call-bar {
    display: none;
  }
}

/* ------- Footer ------- */
.site-footer {
  padding: clamp(2rem, 4vw, 2.75rem) var(--pad-section-x-mobile);
  padding-bottom: max(5.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0))) !important;
  background: var(--footer-bg);
  color: rgb(247 244 239 / 0.88);
  font-size: 0.9375rem;
}

@media (min-width: 769px) {
  .site-footer {
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
  }
}

.site-footer a {
  color: var(--color-white);
}

.site-footer a:hover {
  color: var(--color-bulb-yellow);
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-stack {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.footer-lines {
  margin: 0.4rem 0 0;
  line-height: 1.62;
}

.footer-contact-block .footer-area {
  margin: 0.75rem 0 0;
  max-width: 18rem;
  color: rgb(247 244 239 / 0.75);
  font-size: 0.9rem;
}

.footer-copy {
  margin: 0;
  flex-basis: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgb(247 244 239 / 0.12);
  font-size: 0.82rem !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ======== SERVICE CARD LINKS ======== */
.service-card-link {
  display: contents;
}

.service-card-inner {
  display: block;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  height: 100%;
}

.service-card-inner:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(107, 31, 43, 0.12);
  transform: translateY(-2px);
}

.service-card-inner h3 {
  margin-top: 0.75rem;
}

/* ======== CONTENT GRID ======== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.content-block {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.content-block h3 {
  margin-top: 0;
  color: var(--accent);
}

.content-block p {
  margin-bottom: 0;
}

/* ======== BENEFITS LIST ======== */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.6;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ======== TESTIMONIALS ======== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
}

.testimonial-service {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ======== STATS GRID ======== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

/* ======== FAQ ======== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
}

.faq-question {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
}

.faq-answer {
  margin: 0;
  line-height: 1.7;
  color: var(--text);
}

.cta-box {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.cta-box h2 {
  margin-top: 0;
}

.cta-box p {
  margin-bottom: 1.5rem;
}
