:root {
  --brand: #1565c0;
  --brand-dark: #0d47a1;
  --brand-light: #bbdefb;
  --brand-soft: #e3f2fd;
  --accent: #166534;
  --accent-dark: #14532d;
  --accent-ui: #2db84d;
  --text: #0f172a;
  --muted: #475569;
  --surface: #f8fafc;
  --bg-page: #f4f7fb;
  --bg-section: #eef3f9;
  --bg-muted: #e8eef5;
  --glow: rgba(21, 101, 192, 0.22);
  --glow-accent: rgba(22, 101, 52, 0.22);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --bs-primary: #1565c0;
  --bs-primary-rgb: 21, 101, 192;
  --nav-bg: rgba(244, 247, 251, 0.94);
  --nav-glass-bg: rgba(255, 255, 255, 0.58);
  --nav-glass-bg-scrolled: rgba(255, 255, 255, 0.84);
  --nav-glass-border: rgba(255, 255, 255, 0.72);
  --nav-glass-divider: rgba(15, 23, 42, 0.08);
  --nav-glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 4px 22px rgba(15, 23, 42, 0.1);
  --border-brand: rgba(21, 101, 192, 0.12);
  --site-nav-utility-height: 1.85rem;
  --site-nav-main-height: 2.85rem;
  --site-nav-logo-width: 188px;
  --site-nav-logo-scale: 1.24;
  --site-nav-height: calc(var(--site-nav-utility-height) + var(--site-nav-main-height));
}

html { scroll-behavior: smooth; }

html, body { margin: 0; }

body.site-body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--bg-page);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.site-body > main,
.site-body > footer {
  position: relative;
  z-index: 1;
}
.site-body > nav.site-nav {
  position: relative;
  z-index: 1030;
}
.site-body > nav.mobile-cta {
  position: fixed;
  z-index: 1040;
}

@media (max-width: 991.98px) {
  body.site-body.mobile-cta-active { padding-bottom: 4.5rem; }
}

.text-muted { color: var(--muted) !important; }

h1, h2, h3, h4, .display-5, .display-6 {
  letter-spacing: -0.02em;
}

/* ── Navbar (light glass — always) ── */
.site-nav {
  background: var(--nav-glass-bg) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-glass-border);
  box-shadow: var(--nav-glass-shadow);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}
.site-nav.scrolled {
  background: var(--nav-glass-bg-scrolled) !important;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 28px rgba(15, 23, 42, 0.12);
}
.site-nav__shell {
  display: flex;
  flex-direction: column;
}
.site-nav__inner {
  position: relative;
}
.site-nav__utility-row {
  border-bottom: 1px solid var(--nav-glass-divider);
}
.site-nav__utility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.85rem;
  min-height: var(--site-nav-utility-height);
  padding: 0.22rem 0;
  font-size: 0.78rem;
  font-weight: 500;
}
.site-nav__utility-left,
.site-nav__utility-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.85rem;
}
.site-nav__utility-left {
  justify-content: flex-start;
  flex: 1 1 auto;
}
.site-nav__utility-right {
  justify-content: flex-end;
  flex: 0 0 auto;
}
.site-nav__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.1rem 0.12rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav__utility-link i {
  font-size: 0.88rem;
  opacity: 0.9;
  color: var(--brand);
}
.site-nav__utility-link:hover {
  color: var(--brand-dark);
}
.site-nav__utility-link.is-active {
  color: var(--brand-dark);
  background: rgba(21, 101, 192, 0.1);
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}
.site-nav__utility-link--prices {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--accent-ui) 0%, var(--accent-dark) 100%);
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 2px 12px rgba(45, 184, 77, 0.4);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.site-nav__utility-link--prices i {
  opacity: 1;
}
.site-nav__utility-link--prices:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #3ecf5f 0%, #166534 100%);
  box-shadow: 0 4px 16px rgba(45, 184, 77, 0.5);
  transform: translateY(-1px);
}
.site-nav__utility-link--prices.is-active {
  background: linear-gradient(135deg, #34d058 0%, #14532d 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 4px 16px rgba(45, 184, 77, 0.5);
}
.site-nav__brand {
  color: var(--text) !important;
  font-weight: 700;
  margin-right: 0;
  padding: 0;
  line-height: 1;
  overflow: visible;
}
.site-nav .navbar-toggler,
.site-nav__toggler {
  padding: 0.25rem 0.45rem;
}
.site-nav .navbar-toggler-icon {
  filter: none;
  width: 1.35rem;
  height: 1.35rem;
}
.site-nav .nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  border-radius: 8px;
  padding: 0.3rem 0.7rem !important;
}
.site-nav .nav-link:hover {
  color: var(--brand) !important;
  background: rgba(21, 101, 192, 0.08);
}
.site-nav .nav-link.active {
  color: var(--brand-dark) !important;
  font-weight: 600;
  background: rgba(21, 101, 192, 0.1);
}
/* Underline accent — skip dropdown toggles so Bootstrap caret stays visible */
.site-nav .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-ui), #7dd3fc);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}
.site-nav .nav-link:not(.dropdown-toggle):hover::after,
.site-nav .nav-link:not(.dropdown-toggle).active::after {
  transform: scaleX(1);
}

/* Clear submenu affordance on top-level items */
.site-nav .nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav .nav-link.dropdown-toggle .site-nav__caret {
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.site-nav .nav-item.dropdown.show > .nav-link.dropdown-toggle .site-nav__caret,
.site-nav .nav-item.dropdown:hover > .nav-link.dropdown-toggle .site-nav__caret {
  transform: rotate(180deg);
}
.site-nav .nav-link.dropdown-toggle::after {
  display: none !important; /* use explicit icon instead of tiny caret */
}

/* Nav dropdowns — Services + Location (area → neighbourhood) */
.site-nav__dropdown {
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: 0.85rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  padding: 0.45rem;
  min-width: 15rem;
  overflow: visible;
}
.site-nav__dropdown-hint {
  font-size: 0.72rem;
  color: var(--muted, #64748b);
  padding: 0.2rem 0.75rem 0.45rem;
  margin: 0;
  line-height: 1.35;
}
.site-nav__dropdown .dropdown-item {
  border-radius: 0.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.75rem;
  color: var(--text);
}
.site-nav__dropdown .dropdown-item:hover,
.site-nav__dropdown .dropdown-item:focus {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.site-nav__dropdown .dropdown-item.active {
  background: var(--brand);
  color: #fff;
}
.site-nav__dropdown .dropdown-divider {
  margin: 0.35rem 0.4rem;
  border-color: rgba(15, 23, 42, 0.08);
}
.site-nav__dropdown--services {
  max-height: min(70vh, 32rem);
  overflow-y: auto;
  min-width: 17rem;
}
.site-nav__dropdown--services .dropdown-header {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted, #64748b);
  font-weight: 700;
  padding: 0.35rem 0.75rem 0.15rem;
}
.site-nav__submenu {
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: 0.85rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  padding: 0.45rem;
  min-width: 14rem;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  z-index: 1080;
}
.site-nav__submenu .dropdown-item {
  border-radius: 0.55rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  color: var(--text);
}
.site-nav__submenu .dropdown-item:hover,
.site-nav__submenu .dropdown-item:focus {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* Location: split row = area link + obvious submenu button */
.site-nav__nest-row {
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  border-radius: 0.55rem;
}
.site-nav__nest-row:hover,
.site-nav__dropend.is-open > .site-nav__nest-row {
  background: var(--brand-soft);
}
.site-nav__nest-link {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  border-radius: 0.55rem 0 0 0.55rem !important;
}
.site-nav__nest-link:hover,
.site-nav__nest-link:focus {
  background: transparent !important;
}
.site-nav__nest-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 2.5rem;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-left: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 0 0.55rem 0.55rem 0;
  background: rgba(21, 101, 192, 0.06);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.site-nav__nest-btn:hover,
.site-nav__nest-btn:focus-visible {
  background: rgba(21, 101, 192, 0.16);
  outline: none;
}
.site-nav__nest-btn .bi {
  font-size: 0.85rem;
}
.site-nav__nest-btn-label {
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-nav__dropend.is-open > .site-nav__nest-row .site-nav__nest-btn {
  background: var(--brand);
  color: #fff;
  border-left-color: transparent;
}

@media (min-width: 992px) {
  /* Keep parent menus open across the full hover path (no dead gap). */
  .site-nav .dropdown:hover > .dropdown-menu,
  .site-nav .dropdown:focus-within > .dropdown-menu,
  .site-nav .dropend:hover > .dropdown-menu,
  .site-nav .dropend:focus-within > .dropdown-menu,
  .site-nav .dropend.is-open > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .site-nav__dropend {
    position: relative;
  }

  /*
   * Location neighbourhoods open to the LEFT of the area item.
   * At ~1280px Location sits mid-right; a right flyout hits body overflow-x:hidden
   * and becomes nearly impossible to click.
   */
  .site-nav__dropend > .site-nav__submenu {
    top: 0;
    left: auto;
    right: 100%;
    margin: 0 0 0 0;
    /* Pull toward parent so the cursor never crosses empty space */
    margin-right: -2px;
  }
  .site-nav__dropend > .site-nav__submenu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    width: 12px;
  }
  .site-nav__nest-btn .site-nav__nest-chevron {
    transform: rotate(90deg); /* points left toward flyout */
  }
  .site-nav__dropend.is-open .site-nav__nest-btn .site-nav__nest-chevron {
    transform: rotate(-90deg);
  }
}
@media (max-width: 991.98px) {
  .site-nav__dropdown,
  .site-nav__submenu {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.15rem 0 0.15rem 0.75rem;
    min-width: 0;
    position: static !important;
    transform: none !important;
  }
  .site-nav__submenu {
    display: none;
  }
  .site-nav__dropend.is-open > .site-nav__submenu {
    display: block;
  }
  .site-nav__nest-btn {
    min-width: 3.25rem;
  }
  .site-nav__dropend.is-open .site-nav__nest-btn .site-nav__nest-chevron {
    transform: rotate(180deg);
  }
  .site-nav .nav-link.dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
}

.site-social--nav .site-social__link {
  color: var(--brand);
  border-color: var(--border-brand);
  background: rgba(255, 255, 255, 0.72);
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.35rem;
  font-size: 0.88rem;
}
.site-social--nav .site-social__link:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

/* Desktop: logo spans utility + menu rows */
@media (min-width: 992px) {
  .site-nav__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: var(--site-nav-utility-height) var(--site-nav-main-height);
    column-gap: 1rem;
    align-items: stretch;
  }
  .site-nav__brand {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    z-index: 2;
    overflow: visible;
  }
  .site-nav__utility-row {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    min-height: var(--site-nav-utility-height);
    border-bottom: 1px solid var(--nav-glass-divider);
    padding-left: calc(var(--site-nav-logo-width) * var(--site-nav-logo-scale) + 1rem);
    padding-top: 0.15rem;
  }
  .site-nav__utility-row .site-nav__utility {
    width: 100%;
    min-height: 0;
    padding: 0;
    justify-content: flex-end;
  }
  .site-nav__utility-row .site-nav__utility-left {
    flex: 0 1 auto;
  }
  .site-nav__utility-row .site-nav__utility-right {
    margin-left: 0.85rem;
  }
  .site-nav__toggler {
    display: none !important;
  }
  .site-nav__menu-row {
    grid-column: 2;
    grid-row: 2;
    display: flex !important;
    align-items: center;
    min-height: var(--site-nav-main-height);
  }
  .site-nav__menu-row.navbar-collapse {
    height: auto !important;
    overflow: visible !important;
  }
  .site-logo--nav-span {
    width: auto;
    max-width: var(--site-nav-logo-width);
    height: calc(var(--site-nav-height) - 0.4rem);
    max-height: calc(var(--site-nav-height) - 0.4rem);
    object-fit: contain;
    object-position: left center;
    transform: scale(var(--site-nav-logo-scale));
    transform-origin: left center;
  }
}

/* Mobile: utility, then brand + toggler, then menu */
@media (max-width: 991.98px) {
  .site-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "utility utility"
      "brand toggler"
      "menu menu";
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
  }
  .site-nav__utility-row {
    grid-area: utility;
    border-bottom: 1px solid var(--nav-glass-divider);
  }
  .site-nav__brand {
    grid-area: brand;
    padding: 0.25rem 0;
  }
  .site-nav__toggler {
    grid-area: toggler;
    justify-self: end;
    align-self: center;
  }
  .site-nav__menu-row {
    grid-area: menu;
  }
  .site-logo--nav-span {
    width: 128px;
    max-height: 46px;
    height: auto;
    transform: scale(1.12);
    transform-origin: left center;
  }
  .site-nav__utility {
    flex-wrap: nowrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.72rem;
    overflow: hidden;
  }
  .site-nav__utility-left,
  .site-nav__utility-right {
    flex-wrap: nowrap;
    min-width: 0;
  }
  .site-nav__utility-left {
    gap: 0.25rem 0.45rem;
    overflow: hidden;
  }
  /* Keep phone + WhatsApp + prices on one row — email is too long for small screens */
  .site-nav__utility-link--email {
    display: none !important;
  }
  .site-nav__utility-link span {
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-nav__utility-link--prices {
    font-size: 0.72rem;
    padding: 0.22rem 0.65rem;
  }
  .site-nav__utility-right {
    gap: 0.2rem;
  }
  .site-nav__utility-right .site-social__label {
    display: none;
  }
  .site-nav .navbar-collapse.show,
  .site-nav .navbar-collapse.collapsing {
    margin-top: 0.45rem;
    margin-bottom: 0.35rem;
    padding: 0.55rem 0.75rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-brand);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  }
}

/* Homepage + location landings: fixed nav over photo hero */
body.site-body:has(.home-main > .hero-photo:first-child) .bubble-bg,
body.site-body:has(.landing-main > .hero-photo:first-child) .bubble-bg {
  display: none;
}
body.site-body:has(.home-main > .hero-photo:first-child) .site-nav,
body.site-body:has(.landing-main > .hero-photo:first-child) .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}
body.site-body:has(.home-main > .hero-photo:first-child) .site-logo--nav-span,
body.site-body:has(.landing-main > .hero-photo:first-child) .site-logo--nav-span {
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.15);
}
.home-main > .hero-photo:first-child,
.landing-main > .hero-photo:first-child {
  padding-top: 0;
  margin-top: 0;
}
.home-main > .hero-photo:first-child .hero-photo__content,
.landing-main > .hero-photo:first-child .hero-photo__content {
  padding-top: calc(var(--site-nav-height) + 1rem);
}
@media (min-width: 992px) {
  .home-main > .hero-photo:first-child .hero-photo__content,
  .landing-main > .hero-photo:first-child .hero-photo__content {
    padding-top: calc(var(--site-nav-height) + 1.25rem);
  }
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}

.btn-phone {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow-accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-phone:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-accent);
}

/* ── Hero stack (text top + full image) ── */
.hero-stack {
  background: #fff;
}
.hero-stack__top {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 100%);
  border-top: 1px solid rgba(26, 111, 212, 0.08);
  padding: 2rem 0 1.75rem;
}
.hero-stack__lead { max-width: 36rem; }
.hero-stack__image {
  background: #f1f5f9;
  line-height: 0;
}
.hero-stack__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 992px) {
  .hero-stack__top { padding: 2.5rem 0 2rem; }
}

/* ── Photo hero (overlay) ── */
.hero-photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.home-main > .hero-photo:first-child {
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Let <picture> wrappers disappear so existing img layout CSS still applies */
.site-picture {
  display: contents;
}
.hero-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.06);
}
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(15, 23, 42, 0.5) 18%, rgba(15, 23, 42, 0.28) 58%, rgba(15, 23, 42, 0.08) 100%),
    linear-gradient(105deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.3) 42%, transparent 72%);
}
@media (min-width: 992px) {
  .hero-photo__img {
    object-position: right center;
  }
  .hero-photo__overlay {
    background: linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.55) 28%,
      rgba(15, 23, 42, 0.28) 42%,
      rgba(15, 23, 42, 0.06) 50%,
      transparent 58%
    );
  }
  .hero-photo__content {
    padding: 3rem 0;
  }
  .hero-photo__content .col-lg-5 {
    max-width: 520px;
  }
}
.hero-photo__content {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 3.5rem;
  color: #fff;
}
.hero-photo .section-eyebrow {
  color: var(--accent-ui);
}
.hero-photo__lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}
.hero-photo .stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  animation: none;
  backdrop-filter: blur(6px);
}
.hero-photo .stat-pill i { color: var(--accent-ui) !important; }
.hero-photo .stat-pill a { color: #fff !important; }
.hero-photo__btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.hero-photo__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 767.98px) {
  .hero-photo__img { object-position: 75% center; }
  .hero-photo__overlay {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(15, 23, 42, 0.5) 100%);
  }
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-section);
  border-bottom: 1px solid rgba(26, 111, 212, 0.14);
  padding: 1.25rem 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.trust-bar__item i {
  font-size: 1.35rem;
  color: var(--brand);
  flex-shrink: 0;
}
.trust-bar__item span { color: var(--muted); font-weight: 500; }

/* ── Hero (legacy light) ── */
.hero-light {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(45, 184, 77, 0.15), transparent),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 111, 212, 0.12), transparent),
              linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 100%);
  overflow: hidden;
}
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.12), rgba(45, 184, 77, 0.08));
  animation: floatBubble 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-bubble.b1 { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; }
.hero-bubble.b2 { width: 80px;  height: 80px;  top: 60%; left: 15%; animation-delay: -2s; }
.hero-bubble.b3 { width: 160px; height: 160px; top: 20%; right: 8%; animation-delay: -4s; }
.hero-bubble.b4 { width: 60px;  height: 60px;  bottom: 15%; right: 20%; animation-delay: -1s; }
@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(12px, -18px) scale(1.05); }
  66%       { transform: translate(-8px, 10px) scale(0.95); }
}

.hero-logo-wrap .site-logo--hero {
  width: min(100%, 360px);
  height: auto;
}

/* ── Site logo (wide horizontal asset — size by width, not square box) ── */
.site-logo {
  object-fit: contain;
  object-position: left center;
  display: block;
  height: auto;
}
.site-logo--nav {
  width: 124px;
  max-height: 44px;
  transition: width 0.3s ease, max-height 0.3s ease, height 0.3s ease, transform 0.3s ease;
}
.site-logo--hero-display {
  width: min(92%, 520px);
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.45));
}
.site-logo--hero-display-sm {
  width: min(78%, 300px);
  max-width: 300px;
}
.site-logo--footer {
  width: 148px;
  max-height: 58px;
}
.site-logo--hero {
  width: min(100%, 360px);
  max-height: none;
}
.sparkle { display: inline-block; }

/* ── Scroll reveal ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="left"]  { transform: translateX(-32px); }
[data-animate="right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(0.92); }
[data-animate="left"].is-visible,
[data-animate="right"].is-visible,
[data-animate="scale"].is-visible { transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── Cards ── */
.anim-card {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.1);
  border-radius: 1rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.anim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 111, 212, 0.12);
  border-color: rgba(26, 111, 212, 0.22);
}
.anim-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.anim-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--brand-light), rgba(45, 184, 77, 0.25));
}

/* ── Section titles ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

/* ── Ticker strip ── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--brand-soft), #fff, var(--brand-soft));
  border-block: 1px solid rgba(26, 111, 212, 0.1);
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.ticker-track i { color: var(--brand); margin-right: 0.35rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stat pills ── */
.stat-pill {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.18);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 3.5rem 0 3rem;
  background-color: var(--bg-muted);
  background-image: radial-gradient(rgba(26, 111, 212, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 1px solid rgba(26, 111, 212, 0.12);
  position: relative;
  overflow: hidden;
}
.page-hero--photo {
  padding: clamp(4.5rem, 12vh, 7rem) 0;
  background: #0f172a;
  background-image: none;
  border-bottom: 0;
  color: #fff;
  min-height: clamp(220px, 32vh, 340px);
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.72) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.5) 0%, transparent 70%);
}
.page-hero__content { z-index: 1; }
.page-hero--photo .section-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero--photo .page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}
.page-hero:not(.page-hero--photo) .page-hero__lead {
  color: var(--text-muted, #64748b);
}

/* Facility page */
.facility-team-img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.facility-points li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: var(--text-body, #334155);
}
.facility-points i { margin-top: 0.15rem; flex-shrink: 0; }
.facility-machine__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Home facility teaser (reuse shoe-spa rhythm) */
.facility-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}
.facility-teaser__media { position: relative; min-height: 280px; }
.facility-teaser__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-teaser__panel {
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
.facility-teaser__title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.facility-teaser__lead { color: rgba(255, 255, 255, 0.82); }
.facility-teaser__points li {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
}
.facility-teaser__points i { color: var(--accent-ui, #5b9cf5); margin-top: 0.15rem; }
@media (max-width: 991.98px) {
  .facility-teaser {
    grid-template-columns: 1fr;
  }
  .facility-teaser__media { min-height: 240px; }
}

/* ── Section rhythm ── */
.section-tint { background: var(--bg-section); }
.section-pad {
  padding: 5rem 0;
  background: var(--bg-page);
}
.section-pad.section-tint { background: var(--bg-section); }
main section.bg-white { background-color: var(--bg-muted) !important; }

/* ── Home page rhythm ── */
.home-tagline {
  padding: 2rem 0;
  background: var(--bg-page);
  border-bottom: 1px solid rgba(26, 111, 212, 0.1);
}
.home-tagline__text {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}
.home-main .section-pad {
  padding: 3.75rem 0;
}
.home-main .section-pad.section-tint {
  border-top: 1px solid rgba(26, 111, 212, 0.08);
}
.home-main .hero-photo__img {
  will-change: auto;
  transform: none;
}
.home-cta {
  border-top: 1px solid var(--border-brand);
}
.home-bridge {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.home-main .home-bridge.section-pad {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

/* ── Social links (nav, footer, contact) ── */
.site-social {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.site-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-social__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.site-social__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-social--footer .site-social__link,
.site-social--contact .site-social__link {
  min-width: auto;
  height: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border-color: rgba(21, 101, 192, 0.2);
  color: var(--brand);
}
.site-social--footer .site-social__link:hover,
.site-social--contact .site-social__link:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* ── Pickup request form (below hero) ── */
.pickup-band {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 0.5rem;
}
.pickup-form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border-brand);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  padding: 1rem 1.1rem;
}
.pickup-form-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}
.pickup-form--row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
}
.pickup-form__field {
  flex: 1 1 8.5rem;
  min-width: 0;
  border-color: rgba(21, 101, 192, 0.18);
}
.pickup-form__submit {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: stretch;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
.pickup-form .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.12);
}
@media (min-width: 992px) {
  .pickup-form-card {
    padding: 1.1rem 1.35rem;
  }
  .pickup-form--row {
    flex-wrap: nowrap;
  }
  .pickup-form__field {
    flex: 1 1 0;
  }
}
@media (max-width: 575.98px) {
  .pickup-form__submit {
    width: 100%;
  }
}

/* ── Home: combined link grid ── */
.home-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.home-link-card:hover { color: inherit; }
.home-link-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0f172a;
}
.home-link-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.home-link-card:hover .home-link-card__img {
  transform: scale(1.05);
}
.home-link-card__fallback {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
}

/* ── Home: horizontal process steps ── */
.home-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.home-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.home-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.home-step__icon {
  display: block;
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.home-step__title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.home-step__text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* ── Home: asymmetric split block ── */
.home-split__img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.home-split__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.home-split__stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: 0.75rem;
}
.home-split__stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand);
  line-height: 1.2;
}
.home-split__stat span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Home: Express same-day feature ── */
.express-svc {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: clamp(22rem, 52vh, 34rem);
  background: linear-gradient(135deg, #b45309 0%, #ea580c 42%, #0d47a1 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.express-svc__media {
  position: relative;
  min-height: 16rem;
}
.express-svc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.express-svc:has([data-animate].is-visible) .express-svc__img,
.express-svc:hover .express-svc__img {
  transform: scale(1);
}
.express-svc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(180, 83, 9, 0.55) 100%);
  pointer-events: none;
}
.express-svc__panel {
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
  z-index: 1;
}
.express-svc__eyebrow {
  color: rgba(255, 255, 255, 0.88) !important;
}
.express-svc__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  color: #fff;
}
.express-svc__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 34rem;
}
.express-svc__price {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  max-width: 34rem;
}
.express-svc__badge {
  display: inline-flex;
  align-items: center;
  margin-right: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #7c2d12;
  background: #fde68a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}
.express-svc__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
}
.express-svc__points i {
  color: #fde68a;
  margin-top: 0.15rem;
}
.express-svc__btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.express-svc__btn-outline:hover,
.express-svc__btn-outline:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 991.98px) {
  .express-svc {
    grid-template-columns: 1fr;
  }
  .express-svc__media {
    min-height: 14rem;
  }
  .express-svc__media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(180, 83, 9, 0.72) 100%);
  }
  .express-svc__panel {
    margin-top: -2.5rem;
  }
  .express-svc__img {
    max-height: 18rem;
  }
}

/* ── Home: Shoe Spa feature ── */
.shoe-spa {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: clamp(22rem, 52vh, 34rem);
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 48%, #0f766e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.shoe-spa__media {
  position: relative;
  min-height: 16rem;
}
.shoe-spa__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.shoe-spa:has([data-animate].is-visible) .shoe-spa__img,
.shoe-spa:hover .shoe-spa__img {
  transform: scale(1);
}
.shoe-spa__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(13, 71, 161, 0.55) 100%);
  pointer-events: none;
}
.shoe-spa__panel {
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
  z-index: 1;
}
.shoe-spa__eyebrow {
  color: rgba(255, 255, 255, 0.82) !important;
}
.shoe-spa__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.shoe-spa__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 0;
}
.shoe-spa__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
.shoe-spa__points i {
  color: #86efac;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.shoe-spa__btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.shoe-spa__btn-outline:hover,
.shoe-spa__btn-outline:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 991.98px) {
  .shoe-spa {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .shoe-spa__media {
    min-height: clamp(14rem, 42vw, 20rem);
  }
  .shoe-spa__media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(13, 71, 161, 0.75) 100%);
  }
  .shoe-spa__panel {
    margin-top: -2.5rem;
    padding-top: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shoe-spa__img {
    transform: none;
    transition: none;
  }
}

/* ── Services hub cards (image + caption overlay) ── */
.services-hub__group-head {
  margin-bottom: 1rem;
}
.services-hub__group--spaced {
  margin-top: 2.75rem;
  padding-top: 0.25rem;
}
.service-hub-card {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  color: #fff;
}
.service-hub-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 14rem;
  overflow: hidden;
  background: #0d47a1;
}
.service-hub-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-hub-card:hover .service-hub-card__img {
  transform: scale(1.05);
}
.service-hub-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.08) 0%,
    rgba(15, 23, 42, 0.42) 45%,
    rgba(15, 23, 42, 0.9) 100%
  );
  pointer-events: none;
}
.service-hub-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.1rem 1.05rem 1.15rem;
}
.service-hub-card__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ui);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.service-hub-card__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}
.service-hub-card__text {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.service-hub-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 70% 35%, rgba(45, 184, 77, 0.12), transparent),
    linear-gradient(145deg, #0d47a1 0%, #1565c0 48%, #1a3a5c 100%);
  color: rgba(255, 255, 255, 0.7);
}
.service-hub-card__placeholder i {
  font-size: 2.4rem;
}
.service-hub-card--placeholder .service-hub-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 15%,
    rgba(15, 23, 42, 0.5) 50%,
    rgba(15, 23, 42, 0.92) 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .service-hub-card,
  .service-hub-card__img { transition: none; }
  .service-hub-card:hover { transform: none; }
}

/* Full-bleed photo hero placeholder (service pages) */
.hero-photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(ellipse 70% 55% at 70% 35%, rgba(45, 184, 77, 0.12), transparent),
    linear-gradient(145deg, #0d47a1 0%, #1565c0 48%, #1a3a5c 100%);
  color: rgba(255, 255, 255, 0.72);
}
.hero-photo__placeholder i {
  font-size: clamp(3rem, 8vw, 5rem);
  opacity: 0.85;
}
.hero-photo__placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Service detail (body below hero) ── */
.service-detail-crumbs {
  color: rgba(255, 255, 255, 0.75);
}
.service-detail-crumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.service-detail-crumbs a:hover {
  text-decoration: underline;
}
.service-detail-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.service-detail-points i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.service-detail-rates {
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: 1rem;
  padding: 1.5rem;
}
.service-detail-rates__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}
.service-detail-rates__row:last-child {
  border-bottom: 0;
}
.service-article {
  background: var(--surface, #fff);
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.service-article p:last-child {
  margin-bottom: 0 !important;
}
.service-articles .service-article h3 {
  line-height: 1.35;
}
.service-process__steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
}
.service-process__steps li:last-child {
  margin-bottom: 0;
}
.service-process__num {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}
.service-process__result {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f1fb, #f5faf7);
  border: 1px solid rgba(21, 101, 192, 0.12);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.service-process__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-process__placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(21, 101, 192, 0.45);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-process__placeholder i {
  font-size: 2.2rem;
}
.service-process__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Design sample banner ── */
.design-sample-banner {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 0.65rem 0;
  font-size: 0.85rem;
  text-align: center;
}
.design-sample-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.design-sample-banner a:hover { color: rgba(255, 255, 255, 0.9); }

/* ── Static caption band (no parallax) ── */
.caption-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.caption-band--sm { height: clamp(150px, 22vh, 220px); }
.caption-band--md { height: clamp(200px, 32vh, 320px); }
.caption-band--lg { height: clamp(260px, 42vh, 400px); }
.caption-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.caption-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.62) 0%,
    rgba(15, 23, 42, 0.42) 50%,
    rgba(15, 23, 42, 0.62) 100%
  );
}
.caption-band__text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.caption-band__text p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.45);
  max-width: 36rem;
}

/* ── Image parallax bands ── */
.parallax-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0f172a; /* fallback if image hasn't painted — never a white flash */
}
.parallax-band--sm { height: clamp(160px, 24vh, 240px); }
.parallax-band--md { height: clamp(210px, 34vh, 340px); }
.parallax-band--lg { height: clamp(270px, 42vh, 420px); }
.parallax-band__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.parallax-band__img {
  position: absolute;
  left: 0;
  top: -18%;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
}
.parallax-band__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.62) 0%,
    rgba(15, 23, 42, 0.42) 50%,
    rgba(15, 23, 42, 0.62) 100%
  );
}
.parallax-band__caption {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.parallax-band__caption p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.45);
  max-width: 36rem;
}

/* ── Process steps ── */
.process-step {
  position: relative;
  padding-left: 3rem;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0; top: 0;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stepPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.process-step.is-visible::before { animation: stepPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes stepPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── Contact cards ── */
.contact-card {
  border-radius: 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 111, 212, 0.12);
}
.contact-card .bi {
  font-size: 2rem;
  color: var(--brand);
  animation: iconBob 2.5s ease-in-out infinite;
}
.contact-card:nth-child(2) .bi { animation-delay: -0.8s; }
.contact-card:nth-child(3) .bi { animation-delay: -1.6s; }
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* ── FAQ ── */
.faq-page .accordion-button:not(.collapsed) {
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: none;
}
.faq-page .accordion-item {
  border-color: rgba(26, 111, 212, 0.12);
  margin-bottom: 0.5rem;
  border-radius: 0.75rem !important;
  overflow: hidden;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-section) 55%, var(--brand-light) 100%);
  border-top: 1px solid rgba(26, 111, 212, 0.18);
  color: var(--text);
  margin-top: auto;
}
.footer-brand-title { font-weight: 800; font-size: 1.15rem; color: var(--text); }
.footer-brand-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 28rem; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-contact .bi { color: var(--brand); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--brand); text-decoration: none; font-weight: 600; }
.footer-mid {
  background: rgba(220, 232, 229, 0.75);
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  border-bottom: 1px solid rgba(26, 111, 212, 0.12);
}
.footer-mid-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.footer-pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.footer-bottom { background: rgba(184, 220, 226, 0.45); }
.footer-copy { font-size: 0.85rem; color: var(--muted); }
.footer-credit {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--muted) 55%, transparent);
  opacity: 0.55;
  font-weight: 400;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--brand);
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-legal a { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--brand); }

/* Seasonal / festival CTA */
.seasonal-cta__card {
  border: 1px solid rgba(21, 101, 192, 0.18);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.06), rgba(45, 184, 77, 0.06));
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  vertical-align: top;
}

/* ── Gallery ── */
.gallery-filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(26, 111, 212, 0.22);
  color: var(--muted);
  background: var(--surface);
  transition: all 0.25s ease;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}
.gallery-card { background: none; cursor: pointer; }
.gallery-card-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 111, 212, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.gallery-card:hover .gallery-card-inner {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(26, 111, 212, 0.18);
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.82) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.75rem 0.9rem 0.85rem;
  opacity: 1;
  color: #fff;
  pointer-events: none;
}
.gallery-card-caption {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.gallery-card-overlay .bi {
  font-size: 1.15rem;
  flex-shrink: 0;
  opacity: 0.95;
}
.gallery-item.is-hidden { display: none !important; }

/* Lightbox — fullscreen on phones so the grid thumb does not show under the zoom */
.gallery-modal-content {
  background: #0f172a;
  min-height: 100%;
}
.gallery-modal-header {
  flex-shrink: 0;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(15, 23, 42, 0.98);
}
.gallery-modal-header .modal-title {
  color: #fff;
  padding-right: 0.5rem;
}
.gallery-modal-header .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.85;
}
.gallery-modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0.75rem;
  background: #0f172a;
}
.gallery-modal-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(72vh, calc(100dvh - 7rem));
  object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  #galleryModal .modal-dialog {
    margin: 0;
    max-width: none;
    height: 100%;
  }
  #galleryModal .gallery-modal-content {
    min-height: 100dvh;
    border-radius: 0;
  }
  #galleryModal .gallery-modal-body {
    padding: 0.5rem 0.75rem 1rem;
  }
  #galleryModal .gallery-modal-img {
    max-height: calc(100dvh - 5.5rem);
  }
}
body.modal-open .mobile-cta {
  display: none !important;
}
/* Keep lightbox above sticky nav / mobile CTA; backdrop must stay *under* the modal.
   Do not raise .modal-backdrop above Bootstrap's modal — that trapped clicks on black overlay. */
#galleryModal,
#siteOfferModal {
  z-index: 1085;
}
#galleryModal .modal-content,
#siteOfferModal .modal-content {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
body.modal-open > .modal-backdrop {
  z-index: 1080;
}

/* ── Locations ── */
.location-card .badge { font-size: 0.7rem; }
.location-info-panel { background: var(--surface); }
.location-hero .breadcrumb a { color: var(--brand); text-decoration: none; }
.location-hero .breadcrumb-item.active { color: var(--muted); }

.store-card-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
}
.store-card .badge { font-size: 0.7rem; }

/* ── Landing pages ── */
.landing-main { overflow-x: hidden; }

.lp-section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}
.lp-hero { padding: 4rem 0 5rem; }
.lp-hero-compact { padding: 3.5rem 0 4rem; }

.lp-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-section > .container,
.lp-section > .ticker-wrap { position: relative; z-index: 1; }

.lp-bg-bubbles {
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(45, 184, 77, 0.12), transparent),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 111, 212, 0.1), transparent),
              linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-section) 100%);
}
.lp-bg-gradient {
  background: linear-gradient(90deg, var(--bg-section), var(--bg-page) 50%, var(--bg-section));
}
.lp-bg-gradient-reverse {
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--bg-section) 50%, var(--bg-page) 100%);
}
.lp-bg-dots {
  background-color: var(--bg-page);
  background-image: radial-gradient(rgba(26, 111, 212, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lp-bg-mesh {
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--brand-light) 40%, var(--bg-muted) 100%);
}
.lp-bg-lines {
  background: linear-gradient(180deg, var(--bg-muted), var(--bg-section));
}
.lp-bg-shimmer {
  background: linear-gradient(110deg, var(--bg-page) 0%, var(--bg-section) 45%, var(--bg-page) 90%);
  background-size: 200% 100%;
  animation: lpShimmer 8s ease-in-out infinite;
}
@keyframes lpShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lp-bg-map {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-page) 100%);
}
.lp-bg-cta {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--bg-muted) 50%, var(--bg-section) 100%);
}

.lp-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.14), rgba(45, 184, 77, 0.08));
  animation: floatBubble 9s ease-in-out infinite;
}
.lp-b1 { width: 140px; height: 140px; top: 8%; left: 4%; }
.lp-b2 { width: 90px; height: 90px; top: 55%; left: 12%; animation-delay: -2s; }
.lp-b3 { width: 180px; height: 180px; top: 15%; right: 6%; animation-delay: -4s; }
.lp-b4 { width: 70px; height: 70px; bottom: 12%; right: 18%; animation-delay: -1s; }

.lp-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath fill='%23f0f9ff' d='M0,30 C300,60 600,0 900,30 C1050,45 1150,40 1200,30 L1200,60 L0,60 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 100% 100%;
  opacity: 0.9;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: lpOrb 12s ease-in-out infinite;
}
.lp-orb-1 { width: 200px; height: 200px; background: rgba(26, 111, 212, 0.15); top: 10%; right: 10%; }
.lp-orb-2 { width: 160px; height: 160px; background: rgba(45, 184, 77, 0.12); bottom: 15%; left: 5%; animation-delay: -5s; }
@keyframes lpOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.1); }
}

.lp-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 111, 212, 0.2), transparent);
  animation: lpLine 6s ease-in-out infinite;
}
.lp-line-1 { width: 40%; top: 25%; left: 10%; }
.lp-line-2 { width: 35%; bottom: 30%; right: 8%; animation-delay: -3s; }
@keyframes lpLine {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.lp-hero-media { position: relative; }
.lp-hero-img { display: block; aspect-ratio: 3/2; object-fit: cover; }
.lp-hero-photo {
  border-radius: 1rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}
.lp-hero-photo__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.lp-hero-showcase {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-section) 55%, var(--brand-light) 100%);
  border: 1px solid rgba(26, 111, 212, 0.12);
  overflow: hidden;
  min-height: 320px;
}
.lp-showcase-glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(45, 184, 77, 0.22), transparent 70%);
  animation: lpShowcaseGlow 6s ease-in-out infinite;
}
@keyframes lpShowcaseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.lp-showcase-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
}
.lp-showcase-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(26, 111, 212, 0.25);
  border-radius: 50%;
  animation: lpShowcaseSpin 18s linear infinite;
}
@keyframes lpShowcaseSpin {
  to { transform: rotate(360deg); }
}
.lp-showcase-core,
.lp-showcase-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.15);
}
.lp-showcase-core {
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  animation: lpShowcasePulse 2.5s ease-in-out infinite;
}
@keyframes lpShowcasePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}
.lp-showcase-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  animation: lpShowcaseFloat 4s ease-in-out infinite;
}
.lp-showcase-icon--1 { top: 0; left: 50%; margin-left: -1.25rem; }
.lp-showcase-icon--2 { right: 0; top: 50%; margin-top: -1.25rem; animation-delay: -1s; }
.lp-showcase-icon--3 { bottom: 0; left: 50%; margin-left: -1.25rem; animation-delay: -2s; }
.lp-showcase-icon--4 { left: 0; top: 50%; margin-top: -1.25rem; animation-delay: -3s; }
@keyframes lpShowcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.lp-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.lp-showcase-stat {
  background: rgba(247, 250, 250, 0.92);
  border: 1px solid rgba(26, 111, 212, 0.1);
  border-radius: 0.85rem;
  padding: 0.65rem 0.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-showcase-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26, 111, 212, 0.12);
}
.lp-showcase-stat i {
  display: block;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.lp-showcase-stat__label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.lp-showcase-stat strong {
  display: block;
  font-size: 0.82rem;
  color: #0f172a;
}
.lp-showcase-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  padding-top: 0.75rem;
  margin-top: 0.15rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-showcase-ticker__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: lpShowcaseTicker 24s linear infinite;
}
.lp-showcase-ticker__track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}
.lp-showcase-ticker__track i {
  color: var(--accent-ui);
  margin-right: 0.3rem;
  font-size: 0.65rem;
}
@keyframes lpShowcaseTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.lp-hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.lp-breadcrumb a { color: var(--brand); text-decoration: none; }
.lp-breadcrumb--on-dark .breadcrumb-item,
.lp-breadcrumb--on-dark .breadcrumb-item a,
.lp-breadcrumb--on-dark .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}
.lp-breadcrumb--on-dark .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}
.lp-breadcrumb--on-dark .breadcrumb-item a:hover {
  color: #fff;
}
.lp-seo-article__p {
  line-height: 1.7;
  font-size: 1.05rem;
}
.lp-seo-article__phrases {
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  padding-top: 1rem;
}
.service-hub-card__placeholder--photo {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.service-hub-card__fallback-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.landing-main .lp-section.lp-services {
  /* services now use home section-pad styling */
  padding-top: 0;
}
.lp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}
.lp-highlight-row { transition: transform 0.3s ease; }
.lp-service-card:hover { transform: translateY(-6px); }

.lp-process-step { border-left: 3px solid var(--brand); }
.lp-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-gallery-card img { aspect-ratio: 4/3; object-fit: cover; display: block; }
.lp-map-frame iframe { display: block; min-height: 280px; }
.lp-rates-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.lp-area-link:hover { transform: translateY(-4px); color: inherit; }
.lp-soc-link { color: var(--muted); padding: 0.35rem 0; }
.lp-soc-link:hover { color: var(--brand); }

.lp-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-soft);
  color: var(--brand);
}

.lp-ticker .ticker-wrap { background: transparent; }

/* ── Price list page ── */
.prices-page .prices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .prices-page .prices-grid { grid-template-columns: 1fr; }
}
.price-cat-card {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 111, 212, 0.08);
}
.price-cat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.price-cat-card--ladies .price-cat-card__head { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.price-cat-card--children .price-cat-card__head { background: linear-gradient(135deg, #ea580c, #f97316); }
.price-cat-card--household .price-cat-card__head { background: linear-gradient(135deg, #059669, #10b981); }
.price-cat-card__count {
  opacity: 0.85;
  font-size: 0.75rem;
  font-weight: 600;
}
.price-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.price-table th {
  background: var(--brand-soft);
  padding: 0.55rem 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}
.price-table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.price-table tbody tr:hover { background: rgba(212, 232, 229, 0.55); }
.price-table .col-num { width: 2rem; text-align: center; color: var(--muted); font-weight: 600; }
.price-table .col-item { word-break: break-word; }
.price-table .col-price {
  width: 5.25rem;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.78rem;
}
.price-table .col-price--dc { color: var(--brand); }
.price-table .col-price--pr { color: var(--accent-dark); }
.price-na { color: #64748b; }
.price-dash { color: #cbd5e1; }
.prices-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.prices-fab {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 100;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 22px var(--glow);
  transition: transform 0.2s ease;
}
.prices-fab:hover { color: #fff; transform: translateY(-2px); }
.prices-fab--print {
  right: max(1rem, env(safe-area-inset-right));
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.prices-fab--pdf {
  right: calc(max(1rem, env(safe-area-inset-right)) + 4rem);
  background: linear-gradient(135deg, #059669, #10b981);
}
.prices-fab--pdf-mobile {
  right: calc(max(1rem, env(safe-area-inset-right)) + 7rem);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}
@media (max-width: 991.98px) {
  .prices-fab {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}
@media (max-width: 768px) {
  .prices-fab--pdf-desktop { display: none !important; }
  .prices-actions .pdf-link-desktop { display: none; }
}
@media (min-width: 769px) {
  .prices-fab--pdf-mobile { display: none !important; }
  .prices-actions .pdf-link-mobile { display: none; }
}
@media print {
  .prices-fab, .site-nav, .site-footer, .prices-actions { display: none !important; }
  body.site-body { background: #fff; }
  .price-cat-card { break-inside: avoid; page-break-inside: avoid; }
}

/* ── Footer (legacy link rule) ── */
.site-footer a { color: inherit; }

/* ── Mobile sticky CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-brand);
  padding: 0.55rem max(0.65rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.mobile-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-cta__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand);
  border: 1px solid rgba(21, 101, 192, 0.22);
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.mobile-cta__btn i { font-size: 1.15rem; line-height: 1; }
.mobile-cta__btn:hover { background: var(--brand-soft); color: var(--brand-dark); }
.mobile-cta__btn--prices {
  color: var(--brand-dark);
  border-color: rgba(21, 101, 192, 0.28);
}
.mobile-cta__btn--wa { color: var(--accent); }
.mobile-cta__btn--wa:hover { background: #e8f5e9; color: var(--accent-dark); }
.mobile-cta__btn--brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.28);
}
.mobile-cta__btn--brand:hover { color: #fff; opacity: 0.94; }

/* ── Laundry bubble background (subtle) ── */
.bubble-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.35;
}
.bubble-bg__bubble {
  position: absolute;
  left: var(--left);
  bottom: -12%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.6) 0%, rgba(187, 222, 251, 0.25) 38%, rgba(21, 101, 192, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 -3px 8px rgba(21, 101, 192, 0.04),
    0 3px 10px rgba(21, 101, 192, 0.03);
  animation: bubbleRise var(--duration) linear var(--delay) infinite;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.35; }
  85% { opacity: 0.15; }
  100% { transform: translateY(-115vh) translateX(var(--drift)) scale(1.08); opacity: 0; }
}

/* ── Service category cards ── */
.service-cat-card {
  min-height: 5.75rem;
}
.service-cat-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  text-align: center;
  line-height: 1;
}
.service-cat-card__body {
  min-width: 0;
  flex: 1;
}

/* ── Legal pages ── */
.legal-prose {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose ul { margin-bottom: 1rem; }
.legal-prose ul { padding-left: 1.25rem; }
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose a { color: var(--brand); font-weight: 600; }

/* ── Developed By (credits) page ── */
.page-developed-by .bubble-bg { opacity: 0.35; }
.db-main { overflow: hidden; }
.db-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}
.db-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  color: #fff;
}
.db-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.db-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: dbHeroDrift 28s ease-in-out infinite alternate;
}
.db-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 71, 161, 0.28) 0%, rgba(15, 23, 42, 0.42) 42%, rgba(15, 23, 42, 0.78) 100%),
    radial-gradient(ellipse 80% 60% at 18% 25%, rgba(21, 101, 192, 0.32), transparent 62%);
}
.db-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.db-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.db-orb--a {
  width: 180px; height: 180px; top: 18%; left: 8%;
  background: radial-gradient(circle, rgba(187, 222, 251, 0.7), transparent 70%);
  animation: dbOrbFloat 11s ease-in-out infinite;
}
.db-orb--b {
  width: 120px; height: 120px; top: 42%; right: 12%;
  background: radial-gradient(circle, rgba(45, 184, 77, 0.35), transparent 70%);
  animation: dbOrbFloat 14s ease-in-out infinite reverse;
}
.db-orb--c {
  width: 90px; height: 90px; bottom: 22%; left: 38%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
  animation: dbOrbFloat 9s ease-in-out infinite;
}
.db-hero__content {
  z-index: 2;
  text-align: center;
  padding-bottom: 0.5rem;
}
.db-hero .db-kicker { color: rgba(187, 222, 251, 0.95); }
.db-hero__name {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.85rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(15, 23, 42, 0.35);
}
.db-hero__name-line { display: block; }
.db-hero__name-line--accent {
  color: #bbdefb;
}
.db-hero__role {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  opacity: 0.92;
  margin: 0 0 0.85rem;
}
.db-hero__lead {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.82;
}
.db-hero__scroll {
  margin: 2.25rem auto 0;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  position: relative;
}
.db-hero__scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: #fff;
  animation: dbScrollDot 1.6s ease-in-out infinite;
}
.db-intro {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(187, 222, 251, 0.45), transparent 70%),
    linear-gradient(180deg, #eef3f9 0%, var(--bg-page) 100%);
}
.db-particles--field,
.db-particles--close {
  opacity: 0.85;
}
.db-intro__text {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
.db-pillar {
  height: 100%;
  padding: 0.25rem 0.15rem;
  text-align: center;
}
.db-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 1.55rem;
  background: linear-gradient(145deg, rgba(187, 222, 251, 0.65), rgba(232, 245, 233, 0.55));
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: 1rem;
  animation: dbIconBob 4.5s ease-in-out infinite;
}
.db-pillar:nth-child(2) .db-pillar__icon { animation-delay: 0.4s; }
.db-pillar:nth-child(3) .db-pillar__icon { animation-delay: 0.8s; }
.db-pillar:nth-child(4) .db-pillar__icon { animation-delay: 1.2s; }
.db-pillar__title { margin-bottom: 0.55rem; }
.db-pillar__text { color: var(--muted); font-size: 0.95rem; }
.db-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  background: var(--bg-section);
}
.db-split--flip .db-split__visual { order: 2; }
.db-split--flip .db-split__copy { order: 1; }
.db-split__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.db-split__frame {
  position: absolute;
  inset: 0;
}
.db-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.db-split:hover .db-split__img { transform: scale(1.04); }
.db-split__sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(187, 222, 251, 0.8);
  animation: dbSparkle 3.4s ease-in-out infinite;
}
.db-split__sparkles span:nth-child(1) { top: 18%; left: 14%; animation-delay: 0s; }
.db-split__sparkles span:nth-child(2) { top: 32%; right: 18%; animation-delay: 0.5s; width: 4px; height: 4px; }
.db-split__sparkles span:nth-child(3) { bottom: 28%; left: 22%; animation-delay: 1s; }
.db-split__sparkles span:nth-child(4) { bottom: 18%; right: 28%; animation-delay: 1.4s; width: 5px; height: 5px; }
.db-split__sparkles span:nth-child(5) { top: 48%; left: 48%; animation-delay: 0.8s; width: 3px; height: 3px; }
.db-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 249, 0.96));
}
.db-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--text);
}
.db-points li i {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.45rem;
}
.db-flow {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(187, 222, 251, 0.4), transparent 65%),
    var(--bg-page);
}
.db-flow__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.db-flow__track::before {
  content: '';
  position: absolute;
  top: 1.7rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.25), transparent);
  z-index: 0;
}
.db-flow__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.db-flow__icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 1.1rem;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  animation: dbIconBob 5s ease-in-out infinite;
}
.db-flow__step:nth-child(2) .db-flow__icon { animation-delay: 0.3s; }
.db-flow__step:nth-child(3) .db-flow__icon { animation-delay: 0.6s; }
.db-flow__step:nth-child(4) .db-flow__icon { animation-delay: 0.9s; }
.db-flow__label {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.db-flow__text {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}
.db-close {
  position: relative;
  background:
    linear-gradient(180deg, #e8eef5 0%, #dbe7f5 100%);
  overflow: hidden;
}
@keyframes dbHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(0, -1.5%, 0); }
}
@keyframes dbOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -18px, 0); }
}
@keyframes dbScrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}
@keyframes dbIconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes dbSparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}
@media (max-width: 991.98px) {
  .db-split,
  .db-split--flip {
    grid-template-columns: 1fr;
  }
  .db-split--flip .db-split__visual,
  .db-split--flip .db-split__copy { order: initial; }
  .db-split__visual { min-height: 260px; }
  .db-flow__track {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1rem;
  }
  .db-flow__track::before { display: none; }
  .db-hero { min-height: 78vh; padding-top: 5.5rem; }
}
@media (max-width: 575.98px) {
  .db-flow__track { grid-template-columns: 1fr; }
}

/* ── Site offer band + modal ── */
.hero-photo:has(.offer-band),
.page-hero:has(.offer-band) {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.hero-photo:has(.offer-band) .hero-photo__content {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
}
.page-hero:has(.offer-band) {
  padding-bottom: 0;
}
.page-hero:has(.offer-band) .page-hero__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-bottom: 1.25rem;
}
.page-hero--photo:has(.offer-band) {
  min-height: clamp(260px, 38vh, 400px);
}

.offer-band {
  --offer-sky: #0b3d91;
  --offer-mid: #1565c0;
  --offer-glow: #38bdf8;
  --offer-gold: #fbbf24;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(11, 61, 145, 0.96) 0%, rgba(21, 101, 192, 0.94) 48%, rgba(14, 116, 144, 0.92) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.28);
  animation: offer-band-in 0.7s ease-out both;
}
.offer-band--hero-foot {
  margin-top: auto;
  width: 100%;
}
.offer-band--in-hero {
  width: 100%;
  margin-top: 0.5rem;
}
.lp-hero .offer-band {
  margin-top: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-band--page {
  margin: 0;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.prices-page > .offer-band--page {
  margin-bottom: 0;
}

.offer-band__rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 10px,
      rgba(255, 255, 255, 0.07) 10px,
      rgba(255, 255, 255, 0.07) 11px
    );
  background-size: 24px 40px;
  animation: offer-rain-fall 1.1s linear infinite;
}

.offer-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  padding: 0.85rem 0;
}

.offer-band__badge {
  position: relative;
  flex: 0 0 auto;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
  color: #0f172a;
  background: radial-gradient(circle at 30% 25%, #fff7cc 0%, var(--offer-gold) 55%, #f59e0b 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.35),
    0 8px 22px rgba(245, 158, 11, 0.45);
  overflow: hidden;
  animation: offer-badge-pulse 2.2s ease-in-out infinite;
}
.offer-band__badge::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: offer-shimmer 2.8s ease-in-out infinite;
}
.offer-band__pct {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.offer-band__off {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

.offer-band__copy {
  flex: 1 1 12rem;
  min-width: 0;
  color: #fff;
}
.offer-band__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.95);
}
.offer-band__headline {
  font-size: clamp(0.98rem, 2.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.15rem !important;
}
.offer-band__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-top: 0.35rem !important;
}
.offer-band__code {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
}
.offer-band__code strong {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.offer-band__ends {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.offer-band__cta {
  flex: 0 0 auto;
  font-weight: 700;
  color: #0f172a !important;
  background: #fff;
  border: 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
  animation: offer-cta-pulse 2.6s ease-in-out infinite;
}
.offer-band__cta:hover,
.offer-band__cta:focus {
  background: #e0f2fe;
  color: #0f172a !important;
}

.offer-modal__content {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background:
    linear-gradient(165deg, #0b3d91 0%, #1565c0 42%, #0e7490 100%);
  color: #fff;
}
.offer-modal__rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 12px,
      rgba(255, 255, 255, 0.08) 12px,
      rgba(255, 255, 255, 0.08) 13px
    );
  background-size: 28px 48px;
  animation: offer-rain-fall 1.2s linear infinite;
}
.offer-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  filter: invert(1) grayscale(1);
  opacity: 0.85;
}
.offer-modal__body {
  padding: 2rem 1.5rem 1.75rem;
}
.offer-modal__badge {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: radial-gradient(circle at 30% 25%, #fff7cc 0%, #fbbf24 55%, #f59e0b 100%);
  color: #0f172a;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.28),
    0 10px 28px rgba(245, 158, 11, 0.5);
  overflow: hidden;
  position: relative;
  animation: offer-badge-pulse 2.2s ease-in-out infinite;
}
.offer-modal__badge::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  animation: offer-shimmer 2.8s ease-in-out infinite;
}
.offer-modal__pct {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}
.offer-modal__off {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}
.offer-modal__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bae6fd;
}
.offer-modal__headline {
  color: #fff;
  line-height: 1.3;
}
.offer-modal__text {
  color: rgba(255, 255, 255, 0.9);
}
.offer-modal__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}
.offer-modal__code strong {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.offer-modal__ends {
  color: rgba(255, 255, 255, 0.75);
}
.offer-modal__cta {
  font-weight: 700;
  color: #0f172a !important;
  background: #fff;
  border: 0;
  animation: offer-cta-pulse 2.6s ease-in-out infinite;
}
.offer-modal__cta:hover,
.offer-modal__cta:focus {
  background: #e0f2fe;
  color: #0f172a !important;
}

@keyframes offer-band-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes offer-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes offer-shimmer {
  0%, 30% { transform: translateX(-120%) rotate(12deg); }
  60%, 100% { transform: translateX(120%) rotate(12deg); }
}
@keyframes offer-cta-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22); transform: translateY(0); }
  50% { box-shadow: 0 10px 28px rgba(56, 189, 248, 0.45); transform: translateY(-1px); }
}
@keyframes offer-rain-fall {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

@media (max-width: 575.98px) {
  .offer-band__inner {
    justify-content: center;
    text-align: center;
  }
  .offer-band__copy {
    flex-basis: 100%;
  }
  .offer-band__cta {
    width: 100%;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .lp-showcase-ticker__track { animation: none; }
  .bubble-bg__bubble { animation: none; opacity: 0.2; }
  .parallax-band__img,
  .hero-photo__img { transform: none !important; }
  .db-hero__img { animation: none; transform: none; }
  .db-orb,
  .db-pillar__icon,
  .db-flow__icon,
  .db-split__sparkles span,
  .db-hero__scroll span { animation: none; }
  .offer-band,
  .offer-band__rain,
  .offer-band__badge,
  .offer-band__badge::after,
  .offer-band__cta,
  .offer-modal__rain,
  .offer-modal__badge,
  .offer-modal__badge::after,
  .offer-modal__cta {
    animation: none !important;
  }
}
