/* Lovelace Electric LLC — Blue, White, Black */

:root {
  --blue-900: #0a1628;
  --blue-800: #0f2744;
  --blue-700: #1a3a5c;
  --blue-600: #1e5a8a;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-100: #dbeafe;
  --accent: #38bdf8;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-900: #171717;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;

  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.2);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-strip-height: 36px;
  --header-bar-height: 96px;
  --header-height: calc(var(--header-strip-height) + var(--header-bar-height));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  outline: none;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-700);
  max-width: 52ch;
}

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
}

.header__strip {
  display: flex;
  align-items: center;
  height: var(--header-strip-height);
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
}

.header__strip-scroll {
  display: flex;
  width: max-content;
}

.header__strip-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 1.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header__strip-dot { opacity: 0.5; flex-shrink: 0; }

@media (min-width: 601px) {
  .header__strip {
    justify-content: center;
    overflow: visible;
  }

  .header__strip-scroll {
    width: 100%;
    justify-content: center;
    animation: none !important;
  }

  .header__strip-group {
    padding-inline: 0;
  }

  .header__strip-group[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 600px) {
  .header__strip-scroll {
    animation: header-strip-marquee 24s linear infinite;
  }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  :root {
    --header-strip-height: 48px;
  }

  .header__strip {
    height: auto;
    min-height: var(--header-strip-height);
    padding-block: 0.5rem;
  }

  .header__strip-scroll {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
    white-space: normal;
  }

  .header__strip-group {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    padding-inline: 1rem;
    gap: 0.35rem 0.5rem;
  }

  .header__strip-group[aria-hidden="true"] {
    display: none;
  }
}

@keyframes header-strip-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header__bar {
  height: var(--header-bar-height);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
  overflow: hidden;
}

.header.scrolled .header__bar {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  line-height: 0;
}

.header__logo img,
.footer__logo {
  display: block;
  height: var(--header-bar-height);
  width: auto;
  max-width: min(18rem, 60vw);
  object-fit: contain;
  object-position: left center;
}

.footer__logo {
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.nav__link:hover { color: var(--accent); }

.nav__cta {
  padding: 0.625rem 1.25rem;
  background: var(--blue-500);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--blue-900);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge--blue {
  background: rgba(37, 99, 235, 0.25);
  color: var(--blue-300);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.badge--outline {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__motto {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-300), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--lg { padding: 1rem 1.875rem; font-size: 1rem; }

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

.btn--primary:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--blue {
  background: var(--blue-500);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav__cta:focus-visible,
.menu-toggle:focus-visible,
.hero__spotlight-btn:focus-visible,
.hero__spotlight-dot:focus-visible,
.float-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero__note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.25rem;
  max-width: 42ch;
  line-height: 1.5;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.hero__stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__spotlight {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.hero__spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__spotlight-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero__spotlight-counter {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.hero__spotlight-viewport {
  display: grid;
}

.hero__spotlight-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.hero__spotlight-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.hero__spotlight-media {
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.2);
}

.hero__spotlight-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__spotlight-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.hero__spotlight-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  max-width: none;
  padding-bottom: 0.25rem;
}

.hero__spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__spotlight-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.hero__spotlight-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero__spotlight-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hero__spotlight-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: none;
  padding-inline: 0.5rem;
}

.hero__spotlight-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero__spotlight-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero__spotlight-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .hero__spotlight-slide {
    transition: none;
  }
}

/* Trust bar */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.5rem 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-100);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  margin-bottom: 0.25rem;
}

.trust__icon svg { width: 24px; height: 24px; }

.trust__item strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--blue-900);
}

.trust__item span { font-size: 0.8125rem; color: var(--gray-500); }

/* Services */
.services {
  padding: 6rem 0;
  background: var(--gray-100);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-300);
}

.service-card--featured {
  border-color: var(--blue-300);
  background: linear-gradient(180deg, var(--white) 0%, #f0f7ff 100%);
}

.service-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.625rem;
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.0625rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.55;
}

/* Projects */
.projects {
  padding: 6rem 0;
  background: var(--white);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-900);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.92));
  color: var(--white);
}

.project-card figcaption span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.project-card figcaption strong {
  font-size: 1rem;
  font-weight: 600;
}

/* Reviews */
.reviews {
  padding: 6rem 0;
  background: var(--blue-900);
  color: var(--white);
}

.reviews .section-label { color: var(--accent); }
.reviews .section-title { color: var(--white); }
.reviews .section-desc { color: rgba(255, 255, 255, 0.65); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.review-card__stars {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.review-card footer strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
}

.review-card footer span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Credentials */
.credentials {
  padding: 6rem 0;
  background: var(--gray-100);
}

.credentials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.credentials__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.credential-item__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-100);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.credential-item__icon svg { width: 22px; height: 22px; }

.credential-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--blue-900);
  margin-bottom: 0.125rem;
}

.credential-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.credential-item span + span {
  margin-top: 0.125rem;
}

.credential-item__license {
  margin-top: 0.625rem;
  padding: 0.4375rem 0.75rem 0.4375rem 0.875rem;
  border-left: 3px solid var(--blue-500);
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: 0 6px 6px 0;
}

.credential-item__license + .credential-item__license {
  margin-top: 0.375rem;
}

.credentials__visual {
  position: relative;
}

.credentials__badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 2;
  background: var(--blue-500);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.credentials__badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.credentials__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.1;
}

.credentials__badge p {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  opacity: 0.9;
}

.credentials__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Process */
.process {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  counter-reset: none;
}

.process__step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-500);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-size: 1.0625rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.process__step p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 6rem 0;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq__item summary {
  padding: 1.125rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue-500);
  transition: transform var(--transition);
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { background: var(--gray-100); }

.faq__item summary:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: -2px;
}

.faq__answer {
  padding: 0 1.25rem 1.125rem;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.faq__answer p:last-child { margin-bottom: 0; }

.faq__license {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  background: var(--blue-100);
  border-radius: 6px;
  font-size: 0.875rem !important;
  color: var(--blue-800) !important;
}

.faq__license strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.faq__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0.5rem;
}

.faq__cities li {
  padding: 0.375rem 0.75rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

/* Contact */
.contact {
  padding: 6rem 0;
  background: var(--gray-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-100);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.contact__card-icon svg { width: 20px; height: 20px; }

.contact__card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact__card a,
.contact__card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-900);
}

.contact__card a:hover { color: var(--blue-500); }

.contact__cta { width: 100%; }

.contact__form {
  position: relative;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.contact__form h3 {
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.contact__form > p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #dc2626;
}

.form-group input.is-invalid:focus,
.form-group select.is-invalid:focus,
.form-group textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-error {
  display: block;
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.375rem;
  min-height: 1.25em;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-success {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #065f46;
  text-align: center;
}

.form-success[hidden] { display: none; }

.contact__form .btn { width: 100%; margin-top: 0.5rem; }

.contact__form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__payments-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.footer__payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badge {
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 1rem;
}

.footer__veteran {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.375rem 0.75rem;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 6px;
}

.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
}

.footer__licenses {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
  max-width: 16rem;
}

.footer__license {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.375rem 0.625rem 0.375rem 0.75rem;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 4px 4px 0;
  line-height: 1.4;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer__links li { margin-bottom: 0.625rem; }

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
  transition: transform var(--transition), background var(--transition);
}

.float-cta:hover {
  background: var(--blue-400);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

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

  .nav__link {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav__link:hover { background: rgba(255, 255, 255, 0.06); }

  .nav__cta { text-align: center; margin-top: 0.5rem; }

  .menu-toggle { display: flex; }

  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .process__steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .header__strip-group { font-size: 0.6875rem; gap: 0.5rem; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  .services__grid,
  .projects__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .float-cta__label { display: none; }
  .float-cta { padding: 1rem; border-radius: 50%; }
}
