/* Orange Crew Junk Removal — design tokens + layout (LoadUp-inspired structure) */
:root {
  --color-orange: #ed6f23;
  --color-orange-dark: #d45f1a;
  --color-orange-light: #f6851f;
  --color-accent: #fbbb00;
  --color-ink: #0f1419;
  --color-ink-muted: #3d4a57;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f6f8;
  --color-border: #e2e8f0;
  --gradient-cta: linear-gradient(135deg, #f6851f 0%, #ed6f23 100%);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 20, 25, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 20, 25, 0.12);
  --shadow-card-hover: 0 16px 40px rgba(15, 20, 25, 0.12), 0 4px 12px rgba(237, 111, 35, 0.08);
  --space-section: clamp(3rem, 6vw, 5rem);
  --max-width: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --form-control-bg: #f6f8fb;
  --form-control-bg-focus: #fff;
  --form-control-border: #c5d0dc;
  --form-control-border-hover: #9dadc0;
  --form-placeholder: #6b7c8c;
  --radius-form: 10px;
  --form-focus-ring: 0 0 0 3px rgba(237, 111, 35, 0.22);
  --form-select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%233d4a57' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-surface);
}

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

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

a:hover {
  color: var(--color-orange-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-orange);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.layout-error {
  padding: 1rem;
  background: #fff3cd;
  color: #664d03;
}

/* —— Site header (LoadUp-inspired: nav row + promo + mega) —— */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
}

.site-header {
  position: relative;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(15, 20, 25, 0.07);
}

.header-nav-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--color-border);
}

.header-nav-row__inner {
  flex: 1;
  min-width: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.35rem 0 0.35rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--color-ink);
}

.brand__logo,
.brand img {
  width: auto;
  height: 36px;
  max-width: min(180px, 38vw);
  object-fit: contain;
}

@media (min-width: 480px) {
  .brand__logo,
  .brand img {
    height: 44px;
    max-width: 200px;
  }
}

.header-actions {
  display: none;
  flex-shrink: 0;
  align-items: stretch;
}

@media (min-width: 960px) {
  .header-actions {
    display: flex;
  }
}

.header-phone {
  display: none;
  align-items: center;
  align-self: stretch;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-ink);
  text-decoration: none;
  border-left: 1px solid var(--color-border);
  white-space: nowrap;
}

@media (min-width: 960px) {
  .header-phone {
    display: inline-flex;
  }
}

.header-phone:hover {
  color: var(--color-orange);
  background: rgba(237, 111, 35, 0.06);
}

.header-book {
  flex-shrink: 0;
  align-self: stretch;
  display: none;
  align-items: center;
  padding: 0 1.35rem;
  border-radius: 0 !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none !important;
  border: none !important;
  text-decoration: none !important;
}

@media (min-width: 960px) {
  .header-book {
    display: inline-flex;
  }
}

.nav-panel__phone {
  display: block;
  padding: 0.65rem 0 0.85rem;
  margin-bottom: 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-orange);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.nav-panel__phone:hover {
  text-decoration: underline;
}

@media (min-width: 960px) {
  .nav-panel__phone {
    display: none;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop__link {
  padding: 0.55rem 0.7rem;
  color: var(--color-ink-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
}

.nav-desktop__link:hover {
  color: var(--color-orange);
  background: rgba(237, 111, 35, 0.08);
}

/* —— Mega nav (details/summary) —— */
.nav-mega {
  position: relative;
}

.nav-mega > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  color: var(--color-ink-muted);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  user-select: none;
}

.nav-mega > summary::-webkit-details-marker {
  display: none;
}

.nav-mega > summary:hover {
  color: var(--color-orange);
  background: rgba(237, 111, 35, 0.08);
}

.nav-mega__chev {
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
}

.nav-mega[open] > summary {
  color: var(--color-orange);
  box-shadow: inset 0 -2px 0 0 var(--color-orange);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nav-mega[open] > summary .nav-mega__chev {
  transform: rotate(225deg) translateY(-1px);
}

.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--mega-top, 72px);
  z-index: 960;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 40px rgba(15, 20, 25, 0.12);
  max-height: min(70vh, calc(100vh - var(--mega-top, 72px)));
  overflow-y: auto;
}

@media (max-width: 959px) {
  .mega {
    display: none !important;
  }
}

.mega__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2rem;
  display: grid;
  gap: 1.5rem 2rem;
}

@media (min-width: 720px) {
  .mega--services .mega__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mega--company .mega__inner--company {
  grid-template-columns: 1fr;
  max-width: 720px;
}

@media (min-width: 640px) {
  .mega--company .mega__inner--company {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mega__col {
  padding-left: 0;
  border-left: none;
}

@media (min-width: 720px) {
  .mega--services .mega__col:not(:first-child) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--color-border);
  }

  .mega--company .mega__col:not(:first-child) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--color-border);
  }
}

.mega__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-ink);
}

.mega__heading a {
  color: inherit;
  text-decoration: none;
}

.mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega__list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--color-ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.mega__list a:hover {
  color: var(--color-orange);
}

.mega__blurb {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

.mega__blurb--lead {
  font-size: 0.92rem;
}

.mega__grid-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
}

.mega__grid-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
}

.mega__grid-links a:hover {
  text-decoration: underline;
}

.mega__fineprint {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
}

.mega__foot {
  margin: 1rem 0 0;
}

.mega__cta {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-orange);
  text-decoration: none;
}

.mega__cta:hover {
  text-decoration: underline;
}

.mega__map {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 240px;
}

.mega__map-frame {
  width: 100%;
  height: 140px;
  border: 0;
  border-radius: 8px;
  display: block;
  box-shadow: 0 1px 4px rgba(15, 20, 25, 0.08);
  background: rgba(237, 111, 35, 0.08);
}

.mega__map-caption {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-ink-muted);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mega__map-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
}

.mega__map-caption a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(60, 72, 86, 0.35);
  transition: color 0.15s, border-color 0.15s;
}

.mega__map-caption a:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.mega__posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega__posts a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  line-height: 1.35;
}

.mega__posts a:hover {
  text-decoration: underline;
}

.mega-backdrop {
  position: fixed;
  inset: 0;
  top: var(--mega-top, 72px);
  z-index: 955;
  background: rgba(15, 20, 25, 0.35);
}

@media (max-width: 959px) {
  .mega-backdrop {
    display: none !important;
  }
}

/* —— Promo strip under nav —— */
.header-promo {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.header-promo__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.5rem;
}

.header-promo__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-ink-muted);
}

.header-promo__item strong {
  color: var(--color-ink);
  font-weight: 700;
}

.header-promo__icon {
  flex-shrink: 0;
  color: var(--color-orange);
  display: flex;
}

/* —— Mobile menu —— */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  transform: translateX(-5px);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bars {
  width: 20px;
  height: 14px;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
}

.nav-toggle__bars::before {
  top: 0;
}

.nav-toggle__bars span {
  top: 6px;
}

.nav-toggle__bars::after {
  bottom: 0;
}

#nav-panel {
  background: var(--color-surface);
}

#nav-panel[hidden] {
  display: none;
}

@media (min-width: 960px) {
  #nav-panel {
    display: none !important;
  }
}

@media (max-width: 959px) {
  #nav-panel:not([hidden]) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-offset, 120px);
    bottom: 0;
    z-index: 920;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.12);
  }
}

.nav-panel__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-panel__inner > a:not(.btn) {
  padding: 0.75rem 0;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

.nav-panel__details {
  border-bottom: 1px solid var(--color-border);
}

.nav-panel__details > summary {
  list-style: none;
  padding: 0.75rem 0;
  font-weight: 700;
  color: var(--color-ink);
  cursor: pointer;
}

.nav-panel__details > summary::-webkit-details-marker {
  display: none;
}

.nav-panel__sub {
  padding: 0 0 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-panel__sub a {
  padding: 0.4rem 0;
  color: var(--color-ink-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
}

.nav-panel__sub a:hover {
  color: var(--color-orange);
}

.nav-panel__book {
  margin-top: 0.75rem;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(237, 111, 35, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-ink) !important;
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-orange);
  color: var(--color-orange) !important;
}

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

/* —— Hero —— */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0f1419 0%, #1a2332 55%, #243044 100%);
  color: #fff;
  overflow: hidden;
}

.hero.hero--image {
  background: #0b0f14;
  box-shadow: inset 0 -5px 12px rgba(11, 15, 20, 0.55);
}

.hero.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(115deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.55) 42%, rgba(10, 14, 20, 0.35) 100%),
    url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 85% 55% at 72% 0%, rgba(237, 111, 35, 0.22), transparent 52%);
  pointer-events: none;
}

.hero.hero--image::after {
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  max-width: 38rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.52rem 0.95rem;
  border-radius: var(--radius-sm);
  line-height: 1.25;
  border: 1px solid rgba(52, 168, 83, 0.45);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.hero__badge:hover {
  transform: translateY(-2px);
}

.hero__badge:active {
  transform: translateY(0);
}

.hero__badge:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hero__badge--mint {
  color: #0d3d26;
  background: linear-gradient(160deg, #ffffff 0%, #f2fbf6 45%, #e3f5ea 100%);
  border-color: rgba(52, 168, 83, 0.4);
}

.hero__badge--mint:hover {
  border-color: rgba(22, 135, 79, 0.65);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(52, 168, 83, 0.25);
  color: #063a22;
}

.hero__badge--green {
  color: #fff;
  background: linear-gradient(155deg, #1fa463 0%, #16874f 48%, #126b3f 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 2px 16px rgba(22, 135, 79, 0.35), 0 2px 14px rgba(0, 0, 0, 0.15);
}

.hero__badge--green:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(155deg, #24b56e 0%, #189456 48%, #147a48 100%);
  box-shadow: 0 8px 26px rgba(22, 135, 79, 0.45), 0 4px 16px rgba(0, 0, 0, 0.18);
}

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

  .hero__badge:hover,
  .hero__badge:active {
    transform: none;
  }
}

/* —— Hero: split layout + quote form —— */
.hero__inner.hero__inner--split {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(1.1rem, 3vw, 2.25rem);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero__inner--split {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: min(var(--max-width), 1200px);
}

@media (min-width: 1024px) {
  .hero__inner--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 2.5rem 3rem;
    align-items: stretch;
  }

  .hero__inner--split .hero h1 {
    max-width: none;
  }

  .hero__inner--split .hero__lead {
    max-width: 48ch;
  }
}

.hero__form-panel {
  position: relative;
  z-index: 1;
  padding: 1.05rem 1rem 1.15rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  color: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(15, 20, 25, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 0 0 6px 6px;
  background: var(--gradient-cta);
  opacity: 0.95;
}

.hero__form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0.2rem 0 0.25rem;
  padding-top: 0.1rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.hero__form-note {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  line-height: 1.42;
}

.hero__form-panel .form-alert {
  margin-bottom: 0.6rem;
}

.hero__form-wrap {
  max-width: none;
}

.hero__form-panel .form-consent {
  color: var(--color-ink-muted);
}

.form-group--inline {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 420px) {
  .form-group--inline {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group--inline > div {
  min-width: 0;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

/* —— Trust strip (orange + white wave ribbon + white badge cards) —— */
.trust-strip--ribbon {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: clamp(-2.75rem, -5.5vw, -1.25rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 90% at 50% -35%, rgba(255, 255, 255, 0.95) 0%, transparent 52%),
    radial-gradient(ellipse 85% 70% at 0% 85%, rgba(255, 255, 255, 0.5) 0%, transparent 48%),
    radial-gradient(ellipse 80% 60% at 100% 15%, rgba(255, 255, 255, 0.42) 0%, transparent 45%),
    linear-gradient(158deg, #ffffff 0%, #fff4e8 20%, #ffd0a8 45%, #ff8f45 70%, #ed6f23 100%);
  border: none;
}

.trust-strip__curve {
  display: block;
  width: 100%;
  height: clamp(26px, 4vw, 40px);
  flex-shrink: 0;
}

.trust-strip__curve--top {
  margin-top: -3px;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
  transform: translateY(-2px);
  background-color: #0b0f14;
}

.trust-strip__curve--bottom {
  height: clamp(30px, 5vw, 48px);
  margin-bottom: -1px;
}

.trust-strip__band {
  position: relative;
  z-index: 1;
  margin-top: -4px;
  padding: calc(0.45rem + 4px) 1rem 0.5rem;
}

.trust-strip__inner.trust-badges--ribbon {
  position: relative;
  z-index: 1;
  max-width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.55rem 0.65rem;
  list-style: none;
}

@media (min-width: 1080px) {
  .trust-strip__inner.trust-badges--ribbon {
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .trust-strip__band {
    padding: calc(0.5rem + 4px) 1.15rem 0.55rem;
  }
}

.trust-badge--ribbon {
  flex: 1 1 148px;
  max-width: 220px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.72rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(15, 20, 25, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.95);
  text-align: left;
  min-width: 0;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.trust-badge--ribbon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(237, 111, 35, 0.2), 0 0 0 1px rgba(237, 111, 35, 0.12);
}

@media (max-width: 479px) {
  .trust-badge--ribbon {
    flex: 1 1 100%;
    max-width: none;
  }
}

.trust-badge--ribbon.trust-badge--google {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.trust-badge--ribbon.trust-badge--google:hover {
  box-shadow: 0 12px 28px rgba(237, 111, 35, 0.22), 0 0 0 1px rgba(66, 133, 244, 0.22);
}

.trust-badge__orb {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f6851f 0%, #ed6f23 50%, #d45f1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trust-badge__orb--google {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 20, 25, 0.06), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-badge__g-mark {
  display: block;
}

.trust-badge__orb-icon {
  display: block;
}

.trust-badge__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.trust-badge__lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #0f1419;
}

.trust-badge__micro {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.trust-badge__stars {
  display: block;
  line-height: 0;
  margin: 0.1rem 0 0.05rem;
}

.trust-badge__starbar {
  display: block;
  height: auto;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .trust-badge--ribbon:hover {
    transform: none;
  }
}

/* —— Home: stats strip —— */
.home-stats {
  background: linear-gradient(180deg, #f6f8fb 0%, #eef1f6 100%);
  border-top: 1px solid rgba(15, 20, 25, 0.06);
  border-bottom: 1px solid rgba(15, 20, 25, 0.06);
}

.home-stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

@media (min-width: 900px) {
  .home-stats__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1.15rem 1.25rem 1.2rem;
    gap: 1rem 1.5rem;
  }
}

.home-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-stats__item strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.home-stats__item span {
  font-size: 0.76rem;
  line-height: 1.38;
  color: var(--color-ink-muted);
}

/* —— Home: FAQ —— */
.faq-home .section__subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.faq-home__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-home__item {
  margin-bottom: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-home__item:last-child {
  margin-bottom: 0;
}

.faq-home__item summary {
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.25rem;
}

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

.faq-home__item summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.28rem;
  border-right: 2px solid var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease-out);
}

.faq-home__item[open] summary::after {
  transform: rotate(225deg);
  margin-top: -0.12rem;
}

.faq-home__panel {
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--color-ink-muted);
}

.faq-home__panel p {
  margin: 0;
}

.faq-home__panel a {
  color: var(--color-orange);
  font-weight: 600;
}

/* —— Sections —— */
.section {
  position: relative;
  padding: var(--space-section) 1.25rem;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 20, 25, 0.045) 1px, transparent 0);
  background-size: 26px 26px;
}

.section--alt {
  background: linear-gradient(165deg, #f0f3f7 0%, var(--color-surface-alt) 38%, #f6f8fa 100%);
}

.section--alt::before {
  opacity: 0.85;
  background-image: radial-gradient(ellipse 90% 55% at 0% 0%, rgba(237, 111, 35, 0.07), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(251, 187, 0, 0.05), transparent 48%),
    radial-gradient(circle at 1px 1px, rgba(15, 20, 25, 0.032) 1px, transparent 0);
  background-size: auto, auto, 22px 22px;
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--color-ink);
}

.section__title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  box-shadow: 0 2px 12px rgba(237, 111, 35, 0.35);
}

.section__subtitle {
  margin: 0 0 2rem;
  color: var(--color-ink-muted);
  max-width: 55ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* —— Pillars (3-up) —— */
.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  padding-top: 1.65rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.2s;
}

.pillar::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, rgba(237, 111, 35, 0.15), rgba(251, 187, 0, 0.35), rgba(237, 111, 35, 0.15));
  opacity: 0.85;
  transition: opacity 0.2s, height 0.2s var(--ease-out);
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(237, 111, 35, 0.28);
}

.pillar:hover::before {
  opacity: 1;
  height: 4px;
}

.pillar__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.pillar p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 3.35rem;
  background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
  transition: border-color 0.2s, box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.step:hover {
  border-color: rgba(237, 111, 35, 0.3);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
  transform: translateY(-2px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 1.85rem;
  height: 1.85rem;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(237, 111, 35, 0.18), 0 4px 12px rgba(237, 111, 35, 0.25);
}

.step h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
}

/* —— Service cards —— */
.service-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(237, 111, 35, 0.45);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  color: inherit;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--color-ink);
}

.service-card p {
  margin: 0 0 1rem;
  flex: 1;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.service-card__link {
  font-weight: 700;
  color: var(--color-orange);
  font-size: 0.9rem;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cta);
  color: #fff;
  padding: var(--space-section) 1.25rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 255, 255, 0.18), transparent 65%);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle at center, #fff 1px, transparent 1px);
  background-size: 18px 18px;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-band .btn-secondary {
  background: #fff;
  border-color: #fff;
}

.cta-band .btn-secondary:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

/* —— Footer —— */
.site-footer {
  background: #0f1419;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 1.25rem 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
  margin: 0 0 0.75rem;
}

.site-footer__logo-link:hover {
  opacity: 0.9;
}

.site-footer__logo {
  height: 52px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

.site-footer__cols h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.site-footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__cols li {
  margin-bottom: 0.5rem;
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Center every block of footer content on phones. text-align: center
   cascades to the inline-block logo, the paragraphs, the column
   headings, the link list anchors, and the bottom copyright line. */
@media (max-width: 768px) {
  .site-footer__inner,
  .site-footer__bottom {
    text-align: center;
  }
}

/* —— Inner pages —— */
.page-hero {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 1.25rem;
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.page-hero .lead {
  margin: 0;
  color: var(--color-ink-muted);
  max-width: 50ch;
}

@media (max-width: 768px) {
  .thank-you-page .page-hero__inner {
    text-align: center;
  }

  .thank-you-page .page-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .thank-you-page .page-hero .page-hero__actions {
    justify-content: center;
    margin-top: 1.5rem;
  }

  /* service-areas/chicago/ — no home.css; center hero + prose + CTA on phones */
  .chicago-page .page-hero__inner {
    text-align: center;
  }

  .chicago-page .page-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .chicago-page .prose h2 {
    text-align: center;
  }

  .chicago-page .prose > p {
    text-align: center;
  }

  .chicago-page .prose > ul {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    text-align: left;
  }
}

.prose {
  max-width: 65ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

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

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

/* —— Pricing table —— */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.price-table th {
  background: var(--color-surface-alt);
  font-family: var(--font-display);
}

.price-table td strong {
  color: var(--color-orange);
}

/* —— Forms —— */
.form-wrap {
  max-width: 560px;
}

.form-card {
  max-width: 560px;
  padding: 1.75rem 1.5rem 1.85rem;
  background: linear-gradient(180deg, #fff 0%, #f9fafc 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(237, 111, 35, 0.06);
}

.form-alert {
  max-width: 560px;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-form);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-alert--error {
  background: linear-gradient(180deg, #fef5f5 0%, #fdecec 100%);
  border: 1px solid #e8a9b0;
  color: #7a1e28;
  box-shadow: inset 3px 0 0 0 #c94a58;
}

.form-alert--error a {
  color: #5c1822;
  font-weight: 600;
}

.contact-form {
  position: relative;
}

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

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--form-control-border);
  border-radius: var(--radius-form);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-ink);
  background-color: var(--form-control-bg);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--form-placeholder);
  opacity: 1;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--form-control-border-hover);
  background-color: var(--form-control-bg-focus);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(237, 111, 35, 0.55);
  background-color: var(--form-control-bg-focus);
  box-shadow: var(--form-focus-ring);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-color: var(--form-control-bg);
  background-image: var(--form-select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
}

.form-group select:hover,
.form-group select:focus {
  background-image: var(--form-select-chevron);
}

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

.contact-form .btn-primary,
.contact-form .btn-lg {
  margin-top: 1.15rem;
  width: 100%;
  justify-content: center;
}

.contact-form .btn-block {
  margin-top: 0.5rem;
}

/* Compact forms: hero + homepage full quote (tighter rhythm than contact page) */
.contact-form.contact-form--compact .form-group {
  margin-bottom: 0.5rem;
}

.contact-form.contact-form--compact .form-group label {
  font-size: 0.6875rem;
  margin-bottom: 0.26rem;
  letter-spacing: 0.055em;
}

.contact-form.contact-form--compact .form-group input,
.contact-form.contact-form--compact .form-group textarea,
.contact-form.contact-form--compact .form-group select {
  padding: 0.48rem 0.68rem;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 8px;
}

.contact-form.contact-form--compact .form-group select {
  padding-right: 2rem;
  background-position: right 0.55rem center;
  background-size: 11px;
}

.contact-form.contact-form--compact .form-group textarea {
  min-height: 82px;
}

.contact-form.contact-form--compact .form-group--inline {
  gap: 0.45rem;
}

@media (min-width: 420px) {
  .contact-form.contact-form--compact .form-group--inline {
    gap: 0.5rem;
  }
}

.contact-form.contact-form--compact .form-consent {
  padding: 0.45rem 0.58rem;
  font-size: 0.7rem;
  line-height: 1.38;
  gap: 0.45rem;
  margin-top: 0.05rem;
  border-radius: 8px;
}

.contact-form.contact-form--compact .form-consent input {
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.12rem;
}

.contact-form.contact-form--compact .btn-primary,
.contact-form.contact-form--compact .btn-lg,
.contact-form.contact-form--compact .btn-block {
  margin-top: 0.5rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.9rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding: 0.85rem 0.95rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
  background: rgba(237, 111, 35, 0.04);
  border: 1px solid rgba(237, 111, 35, 0.12);
  border-radius: var(--radius-form);
}

.form-consent label {
  margin: 0;
  font-weight: 500;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-ink-muted);
}

.form-consent input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--color-orange);
  cursor: pointer;
}

.form-group.form-consent label {
  margin-bottom: 0;
}

/* —— Blog list —— */
.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-list li {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.blog-list a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
  text-decoration: none;
}

.blog-list a:hover {
  color: var(--color-orange);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin-top: 0.35rem;
}

/* —— Utilities —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.stack-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* —— Homepage: split showcase —— */
.split-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split-showcase {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.split-showcase__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 28px 56px rgba(237, 111, 35, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: 1px solid var(--color-border);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.split-showcase__media:hover {
  box-shadow: var(--shadow-lg), 0 32px 64px rgba(237, 111, 35, 0.16);
  transform: perspective(800px) rotateY(-0.5deg) scale(1.01);
}

.split-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, transparent 50%, rgba(15, 20, 25, 0.12) 100%);
  opacity: 0.75;
}

.split-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.split-showcase__media:hover img {
  transform: scale(1.04);
}

.split-showcase__kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.5rem;
}

.split-showcase h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-ink);
}

.split-showcase__body p {
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
}

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

/* —— Homepage: audience bento —— */
.audience-bento {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .audience-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .audience-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.audience-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem 0.85rem;
  padding-top: 1.1rem;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
  transition: border-color 0.2s, box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.audience-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
  opacity: 0;
  transition: opacity 0.2s;
}

.audience-card:hover {
  border-color: rgba(237, 111, 35, 0.45);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  color: inherit;
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(237, 111, 35, 0.35);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.audience-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--color-ink);
}

.audience-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-ink-muted);
  line-height: 1.45;
  flex: 1;
}

.audience-card__go {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
}

/* —— Homepage: reviews panel —— */
.reviews-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #121820 0%, #1a2431 55%, #15202d 100%);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(15, 20, 25, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviews-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(237, 111, 35, 0.14), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(251, 187, 0, 0.1), transparent 40%);
  opacity: 0.9;
}

.reviews-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(circle at center, #fff 1px, transparent 1px);
  background-size: 20px 20px;
}

.reviews-panel__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.reviews-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #fff;
}

.reviews-panel p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.reviews-panel .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.reviews-panel .btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

.reviews-panel--inline {
  padding: 1.5rem 1.25rem;
}

.reviews-panel--inline .reviews-panel__inner {
  max-width: none;
}

.reviews-panel__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: #fff;
}

/* —— Homepage: static Google-style review cards —— */
.reviews-static__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .reviews-static__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.25rem 1.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out), border-color 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(237, 111, 35, 0.22);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.4rem;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.review-card__avatar--brand {
  background: linear-gradient(145deg, var(--color-orange-light), var(--color-orange));
}

.review-card__avatar--violet {
  background: linear-gradient(145deg, #7c6cf0, #5548c8);
}

.review-card__who {
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--color-ink);
  line-height: 1.25;
}

.review-card__source {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--color-ink-muted);
}

.review-card__stars {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f0b429;
}

.review-card__quote {
  margin: 0;
  flex: 1;
  padding: 0;
  border: 0;
}

.review-card__quote p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-ink-muted);
}

.reviews-static__footer {
  margin-top: 2rem;
}

/* —— Homepage: blog teaser —— */
.blog-teaser {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .blog-teaser {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.blog-teaser-card:hover {
  border-color: rgba(237, 111, 35, 0.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  color: inherit;
}

.blog-teaser-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.blog-teaser-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.blog-teaser-card:hover .blog-teaser-card__img img {
  transform: scale(1.06);
}

.blog-teaser-card__body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-teaser-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 0.35rem;
}

.blog-teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--color-ink);
}

.blog-teaser-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  flex: 1;
}

.blog-teaser-card__more {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-orange);
}

/* —— Homepage: contact + form split —— */
.home-contact {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .home-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}

.home-contact__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md), 0 20px 40px rgba(15, 20, 25, 0.08);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.home-contact__visual:hover {
  box-shadow: var(--shadow-lg), 0 24px 48px rgba(237, 111, 35, 0.1);
  transform: translateY(-2px);
}

.home-contact__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.home-contact__form-wrap {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(237, 111, 35, 0.08), 0 20px 48px rgba(15, 20, 25, 0.07);
}

.home-contact__form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(237, 111, 35, 0.35), rgba(251, 187, 0, 0.2), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.home-contact__form-wrap h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.home-contact__form-wrap h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--gradient-cta);
}

.home-contact__form-wrap .lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-contact .form-wrap {
  position: relative;
  z-index: 1;
  max-width: none;
}

.home-contact__form-wrap:has(.contact-form--compact) {
  padding: 1.2rem 1.15rem 1.35rem;
}

.home-contact__form-wrap:has(.contact-form--compact) h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: 0 0 0.3rem;
}

.home-contact__form-wrap:has(.contact-form--compact) h2::after {
  width: 2.25rem;
  height: 2px;
  margin-top: 0.35rem;
}

.home-contact__form-wrap:has(.contact-form--compact) .lead {
  margin: 0 0 0.8rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

/* —— Service cards with photo —— */
.service-card--visual {
  padding: 0;
  overflow: hidden;
}

.service-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card--visual:hover .service-card__thumb img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card--visual h3 {
  margin-top: 0;
}

.service-card--visual .service-card__link {
  margin-top: auto;
}

/* —— Motion: respect user preference —— */
@media (prefers-reduced-motion: reduce) {
  .pillar,
  .step,
  .service-card,
  .audience-card,
  .blog-teaser-card,
  .split-showcase__media,
  .split-showcase__media img,
  .home-contact__visual {
    transition: none !important;
  }

  .pillar:hover,
  .step:hover,
  .service-card:hover,
  .audience-card:hover,
  .blog-teaser-card:hover,
  .split-showcase__media:hover,
  .home-contact__visual:hover {
    transform: none !important;
  }

  .service-card--visual:hover .service-card__thumb img,
  .blog-teaser-card:hover .blog-teaser-card__img img,
  .split-showcase__media:hover img {
    transform: none !important;
  }

  .review-card:hover {
    transform: none !important;
  }

  .trust-strip__curve--top {
    transform: none;
  }
}

/* ============================================================== */
/* HOMEPAGE V2 — premium redesign                                  */
/* Scoped components: .hero-v2 / .trust-band / .valuestory /       */
/* .how2up / .services-mod / .coverage / .reviews-mod /            */
/* .finalcta / .cta-band--mod                                      */
/* ============================================================== */

/* —— Shared utilities (homepage v2) —— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  background: rgba(237, 111, 35, 0.09);
  border-radius: 999px;
  line-height: 1;
}

.section__title--centered,
.section__subtitle--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__title--centered::after {
  margin-left: auto;
  margin-right: auto;
}

/* —— Buttons (extended) —— */
.btn-xl {
  padding: 1rem 1.65rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn__arrow,
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.btn__arrow svg,
.btn__icon svg {
  display: block;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55);
}

/*
 * Light ghost button — interactive states.
 * Apply the same readable "white bg + orange text" treatment to hover, focus,
 * focus-visible and active so that on touch devices (where :hover sticks after
 * a tap) the label never disappears against a fully-white background.
 * Hex fallback is kept alongside the custom property in case a stylesheet
 * loads before :root tokens (or a browser fails to resolve the var).
 */
.btn-ghost-light:hover,
.btn-ghost-light:focus,
.btn-ghost-light:focus-visible,
.btn-ghost-light:active,
.cta-band--mod .btn-ghost-light:hover,
.cta-band--mod .btn-ghost-light:focus,
.cta-band--mod .btn-ghost-light:focus-visible,
.cta-band--mod .btn-ghost-light:active {
  background: #fff;
  color: #ed6f23 !important;
  color: var(--color-orange, #ed6f23) !important;
  border-color: #fff;
}

/*
 * Touch / no-hover devices: don't lock the ghost button into the "filled white"
 * hover state after a tap. Keep the translucent ghost look on :hover and only
 * fill on actual press (:active).
 */
@media (hover: none) {
  .btn-ghost-light:hover,
  .cta-band--mod .btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55);
  }

  .btn-ghost-light:active,
  .cta-band--mod .btn-ghost-light:active {
    background: #fff;
    color: #ed6f23 !important;
    color: var(--color-orange, #ed6f23) !important;
    border-color: #fff;
  }
}

/* —— Hero V2 ————————————————————————————————— */
.hero-v2 {
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse 120% 80% at 75% 0%, #1f2a3a 0%, #0c1117 55%, #060a0f 100%);
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
}

.hero-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-v2__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.hero-v2__blob--a {
  width: 540px;
  height: 540px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(237, 111, 35, 0.65) 0%, rgba(237, 111, 35, 0) 65%);
}

.hero-v2__blob--b {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(251, 187, 0, 0.32) 0%, rgba(251, 187, 0, 0) 65%);
}

.hero-v2__blob--c {
  width: 380px;
  height: 380px;
  top: 38%;
  left: 42%;
  background: radial-gradient(circle, rgba(56, 110, 200, 0.18) 0%, rgba(56, 110, 200, 0) 70%);
  opacity: 0.7;
}

.hero-v2__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.6;
}

.hero-v2__inner {
  position: relative;
  z-index: 1;
  max-width: min(var(--max-width), 1200px);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.75rem) 1.25rem clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-v2__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 440px);
    gap: 3.5rem;
    align-items: stretch;
  }
}

.hero-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-v2__stars {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero-v2__h1-accent {
  display: block;
  background: linear-gradient(120deg, #ffb777 0%, #ed6f23 50%, #fbbb00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
  margin: 0 0 2rem;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-v2__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 540px) {
  .hero-v2__proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }
}

.hero-v2__proof li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.95rem;
  border-left: 2px solid rgba(237, 111, 35, 0.55);
}

.hero-v2__proof strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-v2__proof span {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

/* hero card (form panel) */
.hero-v2__card {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.4rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(15, 20, 25, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-v2__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: var(--gradient-cta);
  box-shadow: 0 4px 18px rgba(237, 111, 35, 0.4);
}

.hero-v2__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1fa463;
  padding: 0.3rem 0.65rem;
  background: rgba(31, 164, 99, 0.1);
  border-radius: 999px;
}

.hero-v2__card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1fa463;
  box-shadow: 0 0 0 4px rgba(31, 164, 99, 0.18);
}

.hero-v2__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-ink);
}

.hero-v2__card-note {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
  margin: 0 0 0.4rem;
}

.hero-v2__form-wrap {
  max-width: none;
}

.hero-v2__card-fineprint {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  color: var(--color-ink-muted);
  text-align: center;
}

/* —— TRUST BAND (replaces the SVG-wave trust strip) —— */
/* Single-layer orange band with a clip-path top wave: */
/*   no SVG = no subpixel seam against the hero.       */
.trust-band {
  position: relative;
  margin-top: clamp(-3.5rem, -5vw, -2rem);
  padding: clamp(2.75rem, 5vw, 3.75rem) 1.25rem clamp(1.75rem, 3vw, 2.25rem);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
    linear-gradient(160deg, #ffb777 0%, #ed6f23 55%, #d45f1a 100%);
  color: #0f1419;
  clip-path: polygon(
    0 28px,
    5% 22px, 10% 18px, 15% 14px, 20% 12px, 25% 11px,
    30% 12px, 35% 14px, 40% 18px, 45% 22px, 50% 26px,
    55% 28px, 60% 27px, 65% 24px, 70% 19px, 75% 14px,
    80% 10px, 85% 7px, 90% 6px, 95% 8px, 100% 12px,
    100% 100%, 0 100%
  );
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
}

.trust-band__inner {
  position: relative;
  z-index: 1;
  max-width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .trust-band__inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.trust-band__pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 4px 18px rgba(15, 20, 25, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.trust-band__pill:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(15, 20, 25, 0.18),
    0 0 0 1px rgba(237, 111, 35, 0.18);
}

.trust-band__icon {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f6851f 0%, #ed6f23 60%, #d45f1a 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(237, 111, 35, 0.3);
}

.trust-band__icon--google {
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(15, 20, 25, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-band__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.trust-band__copy strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #0f1419;
}

.trust-band__copy span {
  font-size: 0.74rem;
  line-height: 1.3;
  color: var(--color-ink-muted);
}

.trust-band__pill--google .trust-band__copy span {
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.66rem;
}

@media (prefers-reduced-motion: reduce) {
  .trust-band__pill:hover {
    transform: none;
  }
}

/* —— VALUE STORY + 3 PILLARS —— */
.valuestory__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.value-pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .value-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.value-pillar {
  position: relative;
  padding: 1.85rem 1.5rem 1.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}

.value-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(237, 111, 35, 0.06) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(15, 20, 25, 0.1), 0 4px 12px rgba(237, 111, 35, 0.08);
  border-color: rgba(237, 111, 35, 0.32);
}

.value-pillar:hover::before {
  opacity: 1;
}

.value-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff5ec 0%, #ffe0c2 100%);
  color: var(--color-orange);
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(237, 111, 35, 0.12);
}

.value-pillar__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.35rem;
}

.value-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--color-ink);
}

.value-pillar p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* —— HOW IT WORKS — 2-up —— */
.how2up__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.how2up__cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .how2up__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.how2up__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.06);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.2s;
}

.how2up__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(15, 20, 25, 0.12), 0 6px 16px rgba(237, 111, 35, 0.08);
  border-color: rgba(237, 111, 35, 0.32);
}

.how2up__visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  aspect-ratio: 200 / 130;
  background: linear-gradient(145deg, #fff7ec 0%, #ffe2c0 100%);
}

.how2up__visual svg {
  display: block;
  width: 100%;
  height: 100%;
}

.how2up__step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.45rem;
}

.how2up__card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: var(--color-ink);
}

.how2up__card p {
  margin: 0 0 1.1rem;
  color: var(--color-ink-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.how2up__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.5rem 0;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-orange);
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.2s var(--ease-out);
}

.how2up__link span {
  transition: transform 0.2s var(--ease-out);
}

.how2up__card:hover .how2up__link span {
  transform: translateX(4px);
}

/* —— SERVICES MOD —— */
.services-mod__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-mod__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .services-mod__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.service-mod {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.4rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}

.service-mod::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 111, 35, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.service-mod:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 20, 25, 0.12), 0 4px 12px rgba(237, 111, 35, 0.08);
  border-color: rgba(237, 111, 35, 0.4);
  color: inherit;
}

.service-mod:hover::before {
  opacity: 1;
}

.service-mod__art {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff5ec 0%, #ffe0c2 100%);
  color: var(--color-orange);
  margin-bottom: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(237, 111, 35, 0.14);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}

.service-mod:hover .service-mod__art {
  transform: rotate(-4deg) scale(1.05);
  background: linear-gradient(145deg, #ffe9d2 0%, #ffcd9c 100%);
}

.service-mod h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--color-ink);
}

.service-mod p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  flex: 1;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-mod__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--color-orange);
  letter-spacing: 0.01em;
}

.service-mod__cta span {
  transition: transform 0.2s var(--ease-out);
}

.service-mod:hover .service-mod__cta span {
  transform: translateX(4px);
}

/* —— COVERAGE —— */
.coverage__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .coverage__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
}

.coverage__copy h2 {
  margin-top: 0.25rem;
}

.coverage__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.coverage__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coverage__list li {
  display: grid;
  gap: 0.4rem 0.85rem;
  grid-template-columns: minmax(96px, max-content) 1fr;
  align-items: baseline;
  padding: 0.85rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.04);
}

.coverage__list-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-cta);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(237, 111, 35, 0.3);
}

.coverage__list li > span:last-child {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
}

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

.coverage__map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f9fc 0%, #eef2f7 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.08);
  aspect-ratio: 320 / 360;
}

.coverage__map svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* —— REVIEWS MOD —— */
.reviews-mod__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-mod__stars {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.reviews-mod__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .reviews-mod__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.review-mod {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(15, 20, 25, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s;
  height: 100%;
}

.review-mod:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.1), 0 4px 12px rgba(237, 111, 35, 0.08);
  border-color: rgba(237, 111, 35, 0.28);
}

.review-mod__quote-mark {
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(237, 111, 35, 0.12);
  pointer-events: none;
}

.review-mod__stars {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: #f0b429;
  margin-bottom: 0.85rem;
}

.review-mod__quote {
  position: relative;
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--color-ink);
}

.review-mod__quote p {
  margin: 0;
}

.review-mod__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.review-mod__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.review-mod__avatar--brand {
  background: linear-gradient(145deg, #f6851f, #d45f1a);
}

.review-mod__avatar--violet {
  background: linear-gradient(145deg, #6b5bd2, #4c3fa5);
}

.review-mod__avatar--ink {
  background: linear-gradient(145deg, #2a3440, #0f1419);
}

.review-mod__who {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.review-mod__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-ink);
}

.review-mod__source {
  font-size: 0.74rem;
  color: var(--color-ink-muted);
}

.reviews-mod__foot-cta {
  margin-top: 2rem;
  text-align: center;
}

/* —— FAQ HEAD (small addition) —— */
.faq-home__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

/* —— FINAL CTA —— */
.finalcta__inner {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .finalcta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 3rem;
  }
}

.finalcta__copy {
  align-self: center;
}

.finalcta__copy h2 {
  margin-top: 0.25rem;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
}

.finalcta__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.finalcta__pts {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.finalcta__pts li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--color-ink);
  font-weight: 600;
}

.finalcta__pt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #d6f5e2, #a8e9c2);
  color: #1fa463;
}

.finalcta__sidebyside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.finalcta__phone {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-ink);
  line-height: 1.1;
}

.finalcta__phone:hover {
  color: var(--color-orange);
}

.finalcta__phone-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 0.2rem;
}

.finalcta__phone strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.finalcta__form-wrap {
  position: relative;
  padding: 1.85rem 1.65rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 20, 25, 0.08);
}

.finalcta__form-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: var(--gradient-cta);
  box-shadow: 0 4px 18px rgba(237, 111, 35, 0.32);
}

/* —— CTA BAND (mod variant) —— */
.cta-band--mod {
  background: linear-gradient(140deg, #f6851f 0%, #ed6f23 50%, #d45f1a 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
}

.cta-band--mod .cta-band__inner {
  max-width: 760px;
}

.cta-band__eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.cta-band--mod h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.cta-band--mod p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.cta-band--mod .btn-secondary {
  background: #fff;
  border-color: #fff;
  color: var(--color-orange) !important;
}

.cta-band--mod .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--color-orange-dark) !important;
}

/* —— Reduced motion (homepage v2) —— */
@media (prefers-reduced-motion: reduce) {
  .value-pillar,
  .how2up__card,
  .service-mod,
  .review-mod,
  .trust-band__pill,
  .btn-primary::before {
    transition: none !important;
  }

  .value-pillar:hover,
  .how2up__card:hover,
  .service-mod:hover,
  .review-mod:hover,
  .trust-band__pill:hover {
    transform: none !important;
  }

  .service-mod:hover .service-mod__art {
    transform: none !important;
  }

  .how2up__card:hover .how2up__link span,
  .service-mod:hover .service-mod__cta span {
    transform: none !important;
  }
}

/* =================================================================
   Floating CTA (sitewide)
   -----------------------------------------------------------------
   Always-visible bottom-right pill that opens a dialog with:
     - Call / Text / quick callback form / calculator link
   Auto-injected by js/layout.js on every page. Zero per-page HTML.
   ================================================================= */

.float-cta-wrap {
  position: fixed;
  z-index: 1050;
  right: 0;
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  font-family: var(--font-sans);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

/* Auto-hide when the hero or footer scrolls into view — both already have
   their own CTAs, so the edge tab would be redundant/noisy there. The
   :not(.float-cta-open) guard keeps the tab visible if the dialog is still
   open when the user scrolls. */
body.float-cta-hidden:not(.float-cta-open) .float-cta-wrap {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .float-cta-wrap {
    transition: opacity 0.15s linear;
  }
  body.float-cta-hidden:not(.float-cta-open) .float-cta-wrap {
    transform: none;
  }
}

/* —— Trigger: flush to the right edge, card-shaped (rounded only on the inside) ——— */
.float-cta-trigger {
  appearance: none;
  border: 0;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #f6851f 0%, #ed6f23 50%, #d45f1a 100%);
  color: #fff;
  border-radius: 14px 0 0 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  box-shadow: -12px 10px 24px rgba(237, 111, 35, 0.26),
              -3px 4px 10px rgba(15, 20, 25, 0.16),
              0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s, padding-right 0.2s ease-out;
  min-height: 44px;
  max-width: calc(100vw - 1rem);
}

.float-cta-trigger:hover,
.float-cta-trigger:focus-visible {
  transform: translateX(-3px);
  padding-right: 1rem;
  box-shadow: -16px 14px 30px rgba(237, 111, 35, 0.36),
              -5px 6px 14px rgba(15, 20, 25, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  filter: brightness(1.04);
  outline: none;
}

.float-cta-trigger:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #ed6f23,
              -12px 10px 24px rgba(237, 111, 35, 0.3);
}

.float-cta-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.float-cta-trigger__title {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  line-height: 1.1;
  white-space: nowrap;
}

.float-cta-trigger__chev {
  display: inline-flex;
  opacity: 0.85;
  transition: transform 0.18s ease-out;
  flex-shrink: 0;
}

.float-cta-trigger[aria-expanded="true"] .float-cta-trigger__chev {
  transform: rotate(180deg);
}

/* Subtle attention pulse on the trigger. The shadow radiates left/up (away from
   the screen edge it's attached to) so the halo reads as 3D depth, not clipping. */
@keyframes float-cta-pulse {
  0%, 100% { box-shadow: -12px 10px 24px rgba(237, 111, 35, 0.26),
                         -3px 4px 10px rgba(15, 20, 25, 0.16),
                         0 0 0 0 rgba(237, 111, 35, 0.4),
                         0 0 0 1px rgba(255, 255, 255, 0.12) inset; }
  55%      { box-shadow: -12px 10px 24px rgba(237, 111, 35, 0.26),
                         -3px 4px 10px rgba(15, 20, 25, 0.16),
                         -8px 0 0 8px rgba(237, 111, 35, 0),
                         0 0 0 1px rgba(255, 255, 255, 0.12) inset; }
}

.float-cta-trigger {
  animation: float-cta-pulse 2.8s ease-out infinite;
}

.float-cta-trigger:hover,
.float-cta-trigger[aria-expanded="true"] {
  animation: none;
}

/* —— Backdrop ——————————————————————————————— */
.float-cta-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.42);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.22s ease-out;
  pointer-events: none;
}

body.float-cta-open .float-cta-backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

/* —— Panel (dialog) — also flush to the right edge, matching the card-tab trigger ——— */
.float-cta-panel {
  position: fixed;
  z-index: 1100;
  right: 0;
  bottom: calc(44px + clamp(1.25rem, 4vw, 2.5rem) + 0.6rem);
  width: min(380px, calc(100vw - 1rem));
  overflow: visible;
  background: #fff;
  color: var(--color-ink);
  border-radius: 20px 0 0 20px;
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: -30px 30px 80px rgba(15, 20, 25, 0.22),
              -8px 10px 20px rgba(15, 20, 25, 0.12),
              0 0 0 1px rgba(15, 20, 25, 0.06);
  transform: translateX(12px) translateY(8px) scale(0.98);
  opacity: 0;
  transform-origin: bottom right;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
  will-change: opacity, transform;
}

body.float-cta-open .float-cta-panel:not([hidden]) {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* —— Panel: header ——————————————————————————— */
.float-cta-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 20, 25, 0.08);
}

.float-cta-panel__head-text {
  min-width: 0;
}

.float-cta-panel__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
}

.float-cta-panel__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0.2rem 0 0.25rem;
  color: var(--color-ink);
  line-height: 1.2;
}

.float-cta-panel__sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  line-height: 1.4;
}

.float-cta-panel__close {
  appearance: none;
  background: #f4f6f8;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.float-cta-panel__close:hover,
.float-cta-panel__close:focus-visible {
  background: #ed6f23;
  color: #fff;
  outline: none;
}

/* —— Panel: action rows (Call / Text) ——————————————————————— */
.float-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.float-cta-action {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(15, 20, 25, 0.08);
  background: #fff;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
  color: var(--color-ink);
}

.float-cta-action:hover,
.float-cta-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(237, 111, 35, 0.42);
  box-shadow: 0 6px 18px rgba(237, 111, 35, 0.12);
  outline: none;
}

.float-cta-action--call {
  background: linear-gradient(135deg, #f6851f 0%, #ed6f23 50%, #d45f1a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(237, 111, 35, 0.22);
}

.float-cta-action--call:hover,
.float-cta-action--call:focus-visible {
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(237, 111, 35, 0.3);
  filter: brightness(1.04);
}

.float-cta-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.float-cta-action--text .float-cta-action__icon {
  background: rgba(237, 111, 35, 0.1);
  color: var(--color-orange);
}

.float-cta-action__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.float-cta-action__label {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
}

.float-cta-action__hint {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.1rem;
}

.float-cta-action--call .float-cta-action__hint {
  color: rgba(255, 255, 255, 0.9);
}

.float-cta-action--text .float-cta-action__hint {
  color: var(--color-ink-muted);
}

/* —— Panel: divider ——————————————————————————— */
.float-cta-divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0.75rem;
  color: var(--color-ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-cta-divider::before,
.float-cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 20, 25, 0.08);
}

/* —— Panel: form ——————————————————————————— */
.float-cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.float-cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.float-cta-form__field input,
.float-cta-form__field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(15, 20, 25, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.float-cta-form__field textarea {
  resize: vertical;
  min-height: 2.6rem;
  line-height: 1.4;
}

.float-cta-form__field input:focus,
.float-cta-form__field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(237, 111, 35, 0.22);
}

.float-cta-form__field input::placeholder,
.float-cta-form__field textarea::placeholder {
  color: #8b95a2;
}

.float-cta-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--color-ink-muted);
  line-height: 1.35;
  padding: 0.15rem 0;
}

.float-cta-form__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--color-orange);
  flex-shrink: 0;
}

.float-cta-form__submit {
  margin-top: 0.1rem;
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  font-weight: 800;
}

.float-cta-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.float-cta-form__err {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #b91c1c;
}

.float-cta-form__err a {
  color: inherit;
  font-weight: 700;
}

/* —— Panel: success state ——————————————————————————— */
.float-cta-success {
  padding: 1rem 0.85rem;
  border-radius: 12px;
  background: rgba(16, 163, 74, 0.1);
  border: 1px solid rgba(16, 163, 74, 0.22);
  color: #14532d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.float-cta-success strong {
  display: block;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #14532d;
}

.float-cta-success p {
  margin: 0;
  color: #166534;
}

.float-cta-success a {
  color: #166534;
  font-weight: 700;
}

/* —— Panel: footer (calculator link) ——————————————————————— */
.float-cta-foot {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--color-ink-muted);
  text-align: center;
  line-height: 1.4;
}

.float-cta-foot a {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(237, 111, 35, 0.45);
}

.float-cta-foot a:hover {
  border-bottom-color: var(--color-orange);
  color: #d45f1a;
}

/* —— Honeypot (visually hidden but accessible to bots) —————————— */
.float-cta-wrap .form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* —— Mobile: trigger stays flush-right as a card tab; panel becomes a bottom-sheet ——— */
@media (max-width: 520px) {
  .float-cta-wrap {
    right: 0;
    bottom: clamp(1rem, 4vw, 1.25rem);
  }

  .float-cta-trigger {
    padding: 0.5rem 0.75rem 0.5rem 0.6rem;
    gap: 0.5rem;
    min-height: 42px;
    border-radius: 12px 0 0 12px;
  }

  .float-cta-trigger__icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .float-cta-trigger__title {
    font-size: 0.82rem;
  }

  .float-cta-trigger__icon {
    width: 28px;
    height: 28px;
  }

  .float-cta-trigger__title {
    font-size: 0.88rem;
  }

  .float-cta-trigger__sub {
    font-size: 0.66rem;
  }

  /* Bottom-sheet panel on mobile */
  .float-cta-panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    border-radius: 20px 20px 0 0;
    padding: 1rem 1rem 1.25rem;
    transform: translateY(100%);
    transform-origin: bottom center;
  }

  body.float-cta-open .float-cta-panel:not([hidden]) {
    transform: translateY(0);
  }

  .float-cta-form__row {
    grid-template-columns: 1fr;
  }
}

/* —— Reduced motion ——————————————————————————— */
@media (prefers-reduced-motion: reduce) {
  .float-cta-trigger,
  .float-cta-panel,
  .float-cta-backdrop,
  .float-cta-action,
  .float-cta-trigger__chev {
    animation: none !important;
    transition: opacity 0.15s linear !important;
  }

  body.float-cta-open .float-cta-panel:not([hidden]) {
    transform: none;
  }
}

/* —— Lock scroll when panel is open on mobile ——————————————————— */
@media (max-width: 520px) {
  body.float-cta-open {
    overflow: hidden;
  }
}
