:root {
  --black: #000;
  --panel: #111;
  --white: #fff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --dim: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.14);
  --orange: #02b2ff;
  --accent: #02b2ff;
  --accent-soft: rgba(2, 178, 255, 0.16);
  --accent-line: rgba(2, 178, 255, 0.45);
  --accent-glow: rgba(2, 178, 255, 0.28);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.nowrap { white-space: nowrap; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-revealed="true"] {
  opacity: 1;
  transform: none;
}

.container {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}
.section { padding: 104px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 92px;
  padding: 14px 34px;
  background:
    linear-gradient(110deg, rgba(1, 8, 13, 0.98) 0%, rgba(5, 28, 40, 0.97) 52%, rgba(0, 5, 9, 0.98) 100%);
  border-bottom: 1px solid rgba(2, 178, 255, 0.28);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  width: min(1560px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .container {
    width: min(1460px, calc(100% - 96px));
  }

  .header-shell {
    width: min(1680px, 100%);
  }

}
.site-header.is-scrolled {
  background:
    linear-gradient(110deg, rgba(0, 5, 9, 0.99) 0%, rgba(4, 24, 35, 0.99) 52%, rgba(0, 3, 6, 0.99) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(2, 178, 255, 0.18);
}

.logo {
  position: relative;
  display: block;
  width: 245px;
  height: 62px;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  max-width: none;
  height: 260px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:not(.header-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:hover { color: var(--accent); }
.header-cta, .btn-primary { background: linear-gradient(135deg, #02b2ff, #0077d8); color: var(--white); }
.header-cta {
  padding: 15px 23px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(2, 178, 255, 0);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav .header-cta:hover {
  background: linear-gradient(135deg, #38c9ff, #008bea);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(2, 178, 255, 0.28);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 96px;
  text-align: left;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: grayscale(18%) brightness(0.78) contrast(1.08);
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}
.hero-overlay {
  background:
    radial-gradient(circle at 70% 48%, rgba(2, 178, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.74) 45%, rgba(0, 0, 0, 0.38)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.hero:hover .hero-bg {
  filter: grayscale(8%) brightness(0.9) contrast(1.08);
  transform: scale(1.06);
}

.hero-copy-block {
  max-width: 760px;
}

.hero-copy-block h1 {
  display: grid;
  gap: 8px;
}

.hero-copy-block h1 span:first-child {
  color: var(--accent);
}

.hero-media-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-media-panel::before {
  content: "";
  position: absolute;
  inset: 34px -18px 86px 34px;
  background: linear-gradient(135deg, rgba(2, 178, 255, 0.16), rgba(2, 178, 255, 0.03));
  border: 1px solid rgba(2, 178, 255, 0.24);
  border-radius: 16px;
  opacity: 0.9;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(2, 178, 255, 0.34);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.hero-image-card:hover img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.05);
}

.hero-media-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-media-stats article {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(4, 13, 17, 0.92), rgba(10, 22, 28, 0.78));
  border: 1px solid rgba(2, 178, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-media-stats article:hover {
  border-color: rgba(2, 178, 255, 0.7);
  box-shadow: 0 22px 58px rgba(2, 178, 255, 0.14);
  transform: translateY(-4px);
}

.hero-media-stats strong {
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-media-stats span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.9rem, 7.8vw, 7.15rem); }
h2 { font-size: clamp(2.45rem, 4.1vw, 4rem); }
h3 { font-size: 1.3rem; }

.hero p:not(.eyebrow), .section-copy, .booking-copy > p, .cta-grid p, .about-grid p {
  color: var(--muted);
  font-size: 1.14rem;
}
.hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 16px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  padding: 10px 13px;
  background: rgba(2, 178, 255, 0.1);
  border: 1px solid rgba(2, 178, 255, 0.28);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(2, 178, 255, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38c9ff, #008bea);
  box-shadow: 0 14px 34px rgba(2, 178, 255, 0.3);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--white);
}
.center-heading { text-align: center; }

.reviews { padding: 72px 0 92px; }
.review-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.review-card {
  min-height: 180px;
  padding: 22px;
  background: #f8f8f8;
  border-radius: 6px;
  color: #181818;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card:hover {
  box-shadow: 0 18px 42px rgba(2, 178, 255, 0.16);
  transform: translateY(-8px);
}
.review-top {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
}
.review-top span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #02b2ff;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.review-top strong { display: block; font-size: 0.96rem; line-height: 1.15; }
.review-top small { color: #4285f4; font-size: 0.78rem; font-weight: 800; }
.stars { margin: 15px 0 8px; color: #02b2ff; font-size: 1rem; }
.review-card p { margin: 0; color: #333; font-size: 0.95rem; line-height: 1.42; }

.booking-grid {
  position: relative;
  display: grid;
  width: min(1320px, calc(100% - 64px));
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.82fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 64px;
}

.booking-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(2, 178, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(2, 178, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, rgba(2, 178, 255, 0.05));
  border: 1px solid rgba(2, 178, 255, 0.2);
  border-radius: 14px;
  opacity: 0.95;
}

@media (min-width: 1600px) {
  .booking-grid {
    width: min(1460px, calc(100% - 96px));
  }
}

.booking-copy h2, .transformations h2, .about h2, .process h2, .service-menu h2, .addons h2, .coverage h2, .faq h2, .why h2, .comparison h2, .prep h2 { position: relative; }
.booking-copy h2::before, .transformations h2::before, .about h2::before, .process h2::before, .service-menu h2::before, .addons h2::before, .coverage h2::before, .faq h2::before, .why h2::before, .comparison h2::before, .prep h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 36px;
  margin-right: 10px;
  background: var(--orange);
  vertical-align: -6px;
}
.booking-copy .eyebrow {
  margin-bottom: 14px;
}

.booking-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.booking-highlights article {
  display: grid;
  gap: 14px;
  min-height: 185px;
  padding: 22px;
  background: rgba(2, 178, 255, 0.07);
  border: 1px solid rgba(2, 178, 255, 0.24);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.booking-highlights article:hover {
  background: rgba(2, 178, 255, 0.12);
  border-color: rgba(2, 178, 255, 0.62);
  transform: translateY(-6px);
}

.booking-highlights strong {
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.booking-highlights span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.booking-support {
  display: inline-grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--accent);
}

.booking-support span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-support strong {
  font-size: 1.02rem;
}

.booking-support a {
  width: max-content;
  max-width: 100%;
  color: inherit;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.booking-support > a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.service-menu {
  background: #070707;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-menu-grid article,
.addons-list article,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
}

.service-menu-grid article {
  min-height: 255px;
  padding: 32px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.service-menu-grid h3,
.addons-list h3 {
  margin-bottom: 14px;
}

.service-menu-grid p,
.addons-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-menu-grid article:hover,
.addons-list article:hover {
  background: #171717;
  border-color: rgba(2, 178, 255, 0.58);
  transform: translateY(-8px);
}

.schedule-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(3, 12, 17, 0.72), rgba(2, 6, 9, 0.7)),
    url("../images/detailing/IMG_3844.jpeg") center 62% / cover;
  border: 1px solid rgba(2, 178, 255, 0.3);
  border-radius: 10px;
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.schedule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 178, 255, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.schedule-card > * {
  position: relative;
  z-index: 1;
}

.schedule-card:hover {
  border-color: rgba(2, 178, 255, 0.6);
  box-shadow: 0 30px 90px rgba(2, 178, 255, 0.16);
  transform: translateY(-6px);
}

.schedule-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.schedule-head img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(2, 178, 255, 0.36);
  border-radius: 50%;
}

.schedule-head span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card h3 {
  margin: 2px 0 0;
  color: var(--white);
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.schedule-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.schedule-card input,
.schedule-card select,
.schedule-card textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: var(--white);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.schedule-card textarea {
  min-height: 94px;
  resize: vertical;
}

.schedule-card input::placeholder,
.schedule-card textarea::placeholder {
  color: rgba(235, 244, 249, 0.5);
}

.schedule-card input:focus,
.schedule-card select:focus,
.schedule-card textarea:focus {
  background: rgba(0, 0, 0, 0.48);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(2, 178, 255, 0.12);
  outline: 0;
}

.schedule-card select option {
  color: #111;
}

.calendar {
  margin: 18px 0 22px;
  color: var(--text);
}

.calendar-head {
  display: grid;
  margin-bottom: 12px;
  gap: 3px;
}

.calendar-head small {
  color: var(--muted);
  font-size: 0.88rem;
}

.window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.window-grid span {
  display: grid;
  min-height: 46px;
  place-items: center;
  background: rgba(2, 178, 255, 0.08);
  border: 1px solid rgba(2, 178, 255, 0.25);
  border-radius: 7px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.window-grid span:hover {
  background: rgba(2, 178, 255, 0.2);
  border-color: rgba(2, 178, 255, 0.7);
  transform: translateY(-3px);
}

.form-note { min-height: 20px; margin: 12px 0 0; color: var(--muted); font-size: 0.9rem; }
.form-note.is-error { color: #ff6b5e; }
.form-note.is-success { color: #4ade80; }

.pricing {
  position: relative;
  overflow: hidden;
}
.pricing::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(2, 178, 255, 0.2));
}
.center-btn {
  display: flex;
  width: max-content;
  margin: 22px auto 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(940px, 100%);
  margin: 0 auto;
  align-items: center;
}
.price-card {
  min-height: 330px;
  padding: 32px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(2, 178, 255, 0.36);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.price-card.featured {
  min-height: 385px;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(2, 178, 255, 0.24);
}
.price-card h3 { margin: 10px 0 22px; font-size: 2.35rem; }
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 1.02rem;
  list-style: none;
}
.price-card li::before { content: "-"; margin-right: 8px; color: var(--white); }

.price-card:hover {
  border-color: var(--orange);
  box-shadow: 0 26px 68px rgba(2, 178, 255, 0.18);
  transform: translateY(-10px);
}

.transformations { padding-top: 42px; }
.section-copy {
  max-width: 950px;
  margin: 16px 0 32px;
}
.vehicle-group { margin-top: 34px; }
.vehicle-group h3 { margin-bottom: 12px; font-size: 1.2rem; }
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.masonry-gallery button {
  position: relative;
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  background: var(--panel);
  border: 0;
  cursor: zoom-in;
}

.masonry-gallery button::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 200ms ease;
}
.masonry-gallery button:first-child { grid-row: span 2; }
.gallery-wide button:nth-child(6),
.gallery-wide button:nth-child(11) { grid-row: span 2; }
.masonry-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 220ms ease;
}
.masonry-gallery button:hover img { transform: scale(1.04); }

.masonry-gallery button:hover::after {
  opacity: 1;
}

.gallery-showcase {
  background: #080808;
}

.gallery-simple-head {
  margin-bottom: 30px;
}

.gallery-simple-head h2 {
  max-width: 760px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.work-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.work-gallery-card:hover {
  border-color: rgba(2, 178, 255, 0.62);
  box-shadow: 0 18px 48px rgba(2, 178, 255, 0.12);
  transform: translateY(-4px);
}

.work-gallery-card:hover img {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.035);
}

.addons {
  background: var(--panel);
}

.addons h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.addons-grid,
.coverage-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.addons-list article {
  min-height: 185px;
  padding: 30px;
}

.cta-band { background: var(--panel); }
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.cta-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.cta-grid img:hover {
  filter: brightness(1.1) saturate(1.08);
  transform: scale(1.02);
}
.wide {
  width: min(520px, 100%);
  margin-top: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 28px 0;
}
.about-points span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}
.about-points span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: 500px;
}

.about-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 260ms ease, transform 260ms ease;
}

.about-shot-main {
  height: 500px;
}

.about-shot-offset {
  height: 420px;
  margin-top: 150px;
}

.about-shot:hover img {
  filter: brightness(1.08) saturate(1.06);
  transform: scale(1.045);
}

.coverage {
  background:
    linear-gradient(90deg, rgba(2, 178, 255, 0.14), transparent 42%),
    #070707;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coverage-list span {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.coverage-list span:hover {
  background: rgba(2, 178, 255, 0.12);
  border-color: rgba(2, 178, 255, 0.58);
  transform: translateX(8px);
}

.why {
  background: var(--panel);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.why-grid article {
  min-height: 270px;
  padding: 30px;
  background: #070707;
  border: 1px solid var(--line);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.why-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--orange);
  font-family: "Chakra Petch", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.why-grid p {
  color: var(--muted);
  font-size: 1rem;
}

.why-grid article:hover {
  background: #151515;
  border-color: rgba(2, 178, 255, 0.58);
  transform: translateY(-8px);
}

.comparison-grid,
.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}

.compare-table {
  display: grid;
  border: 1px solid rgba(2, 178, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table div {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  border-bottom: 1px solid var(--line);
}

.compare-table div:last-child {
  border-bottom: 0;
}

.compare-table strong,
.compare-table span {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  font-size: 0.98rem;
}

.compare-table strong:last-child,
.compare-table span:last-child {
  border-right: 0;
}

.compare-table strong {
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
}

.compare-table span {
  color: var(--muted);
}

.prep {
  background: #070707;
}

.prep-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.prep-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.prep-grid img:hover {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.02);
}

.prep-grid ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 1.05rem;
  list-style: none;
}

.prep-grid li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--orange);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.process-grid article {
  min-height: 350px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.process-grid span {
  display: block;
  color: var(--orange);
  font-family: "Chakra Petch", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
}
.process-grid h3 { margin: 22px 0 12px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.process-grid article:hover {
  background: #171717;
  border-color: rgba(2, 178, 255, 0.45);
  transform: translateY(-8px);
}

.faq {
  background: #050505;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: #171717;
  border-color: rgba(2, 178, 255, 0.5);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list p {
  padding: 0 22px 22px;
}

.page-main {
  padding-top: 92px;
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 0;
  background: #020405;
}

.page-hero-bg,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(16%) brightness(0.62) contrast(1.08);
  transform: scale(1.03);
}

.page-hero::after {
  content: "";
  background:
    radial-gradient(circle at 82% 22%, rgba(2, 178, 255, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.34));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

/* .page-hero-copy {
  max-width: 900px;
} */

.page-hero h1 {
  max-width:1000px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.page-hero p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}

.page-hero .hero-actions {
  justify-content: center;
}

.page-intro-grid,
.detail-layout,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.page-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: center;
}

.page-image-stack img,
.detail-image {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(2, 178, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.page-image-stack img:first-child {
  height: 460px;
}

.page-image-stack img:last-child {
  height: 340px;
}

.service-card-grid,
.feature-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading-row p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-card-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-category-list {
  display: grid;
  gap: 74px;
}

.service-category {
  padding-top: 8px;
}

.service-category-head {
  position: relative;
  margin-bottom: 24px;
  padding-left: 18px;
}

.service-category-head::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: calc(100% - 14px);
  min-height: 36px;
  background: var(--blue);
}

.service-category-head h3 {
  max-width: 880px;
  margin: 4px 0 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.95;
}

.category-interior-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-exterior-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-paint-grid,
.category-specialty-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.included-card,
.contact-info-card {
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(2, 178, 255, 0.24);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 510px;
}

.service-card-premium {
  position: relative;
  border-color: rgba(2, 178, 255, 0.38);
}

.service-card-premium::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(2, 178, 255, 0.14);
  pointer-events: none;
}

.service-card-wide,
.service-card-specialty {
  background: #101010;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content,
.feature-card,
.included-card,
.contact-info-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 1.8vw, 2.05rem);
}

.service-card p,
.feature-card p,
.included-card p,
.contact-info-card p,
.detail-list li {
  color: var(--muted);
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.service-card .btn {
  min-width: 118px;
  min-height: 46px;
  padding: 13px 18px;
  font-size: 0.86rem;
}

.service-card:hover,
.feature-card:hover,
.included-card:hover,
.contact-info-card:hover {
  background: #171717;
  border-color: rgba(2, 178, 255, 0.62);
  box-shadow: 0 24px 70px rgba(2, 178, 255, 0.12);
  transform: translateY(-8px);
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.06);
}

.detail-image {
  aspect-ratio: 4 / 3;
}

.detail-panel {
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 178, 255, 0.16), transparent 30%),
    #0b0b0b;
  border: 1px solid rgba(2, 178, 255, 0.28);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: rgba(2, 178, 255, 0.12);
  border: 1px solid rgba(2, 178, 255, 0.38);
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 34px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(2, 178, 255, 0.24);
}

.map-panel > * {
  min-width: 0;
}

.map-panel h2 {
  max-width: 560px;
  overflow-wrap: normal;
}

.map-panel iframe {
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  border-radius: 10px;
  filter: grayscale(100%) invert(92%) contrast(92%);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.split-showcase > img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(2, 178, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transition: filter 220ms ease, transform 220ms ease;
}

.split-showcase > img:hover {
  filter: brightness(1.08) saturate(1.06);
  transform: scale(1.02);
}

.tier-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.tier-list article {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
  border-left: 4px solid var(--accent);
  transition: background 180ms ease, transform 180ms ease;
}

.tier-list article:hover {
  background: rgba(2, 178, 255, 0.1);
  transform: translateX(8px);
}

.tier-list span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-list strong {
  color: var(--text);
  font-size: 1rem;
}

.package-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.breakdown-grid article {
  padding: 30px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(2, 178, 255, 0.24);
}

.breakdown-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.breakdown-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stats-row article {
  min-height: 150px;
  padding: 28px;
  background: rgba(2, 178, 255, 0.08);
  border: 1px solid rgba(2, 178, 255, 0.24);
}

.stats-row strong {
  display: block;
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.stats-row span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(2, 178, 255, 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(2, 178, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(2, 119, 216, 0.11), transparent 28%),
    linear-gradient(125deg, #061923 0%, #091f2b 48%, #02080c 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 178, 255, 0.08), transparent 48%, rgba(2, 178, 255, 0.06));
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(0, 0.8fr));
  gap: 38px;
  padding: 62px 0 42px;
}

.footer-logo {
  position: relative;
  display: block;
  width: 240px;
  height: 72px;
  overflow: hidden;
  margin-bottom: 18px;
}

.footer-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  max-width: none;
  height: 270px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.footer-call {
  width: max-content;
  margin-top: 24px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-col a,
.footer-col span,
.footer-bottom {
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-col a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

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

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom a {
  transition: color 180ms ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lightbox-close:hover {
  background: #0098dd;
  box-shadow: 0 0 0 7px rgba(2, 178, 255, 0.16);
  transform: rotate(90deg) scale(1.04);
}

.lightbox-close img {
  width: 18px;
  height: 18px;
  max-width: none;
}

@media (max-width: 1240px) {
  .site-header { min-height: 82px; padding: 10px 18px; }
  .header-shell { justify-content: space-between; }
  .logo {
    width: 205px;
    height: 56px;
  }
  .logo img {
    width: 230px;
    height: 230px;
  }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid var(--line);
  }
  .site-nav.is-open { display: grid; gap: 16px; }
  .hero {
    min-height: auto;
    padding: 128px 0 82px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .hero-copy-block {
    max-width: 900px;
  }
  .hero-media-panel {
    width: min(720px, 100%);
  }
  .booking-grid, .cta-grid, .about-grid, .addons-grid, .coverage-grid, .faq-grid, .comparison-grid, .prep-grid { grid-template-columns: 1fr; }
  .page-intro-grid,
  .detail-layout,
  .contact-page-grid,
  .split-showcase,
  .map-panel,
  .package-breakdown {
    grid-template-columns: 1fr;
  }
  .service-card-grid,
  .category-interior-grid,
  .category-paint-grid,
  .category-specialty-grid,
  .feature-grid,
  .included-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .booking-grid {
    width: min(900px, calc(100% - 48px));
    padding: 48px;
  }
  .booking-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .review-row, .process-grid, .service-menu-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-images {
    width: min(760px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 1320px) {
  .map-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section { padding: 58px 0; }
  .hero {
    min-height: 100svh;
    padding: 108px 0 58px;
    background: var(--black);
  }
  .hero-bg,
  .hero-overlay {
    top: 0;
    bottom: auto;
    height: var(--mobile-hero-bg-height, clamp(590px, 76svh, 700px));
    min-height: 0;
  }
  .hero-bg {
    object-position: 58% center;
    filter: grayscale(8%) brightness(0.96) contrast(1.04);
    transform: scale(1);
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 70% 20%, rgba(2, 178, 255, 0.18), transparent 36%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.62)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.32));
  }
  h1 { font-size: 3.25rem; }
  .hero-copy-block h1 {
    gap: 2px;
    line-height: 0.94;
  }
  .logo {
    width: 178px;
    height: 50px;
  }
  .logo img {
    width: 205px;
    height: 205px;
  }
  .review-row, .pricing-grid, .masonry-gallery, .work-gallery, .process-grid, .about-points, .service-menu-grid, .addons-list, .coverage-list, .why-grid, .booking-highlights, .form-grid, .window-grid {
    grid-template-columns: 1fr;
  }
  .page-main {
    padding-top: 82px;
  }
  .page-hero {
    min-height: auto;
    padding: 72px 0;
  }
  .page-hero-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .page-hero h1 {
    font-size: 3.2rem;
    line-height: 0.94;
  }
  .service-card-grid,
  .category-interior-grid,
  .category-exterior-grid,
  .category-paint-grid,
  .category-specialty-grid,
  .feature-grid,
  .included-grid,
  .page-image-stack,
  .breakdown-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 46px 0 32px;
  }
  .footer-bottom {
    display: grid;
  }
  .footer-bottom nav {
    gap: 12px;
  }
  .service-card {
    grid-template-rows: 240px 1fr;
    min-height: auto;
  }
  .service-category {
    padding-top: 0;
  }
  .page-image-stack img:first-child,
  .page-image-stack img:last-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .hero-media-panel {
    gap: 12px;
  }
  .hero-image-card {
    width: 100%;
    height: 340px;
  }
  .hero-media-panel::before {
    inset: 20px -8px 86px 14px;
  }
  .hero-media-stats {
    grid-template-columns: 1fr;
  }
  .hero-media-stats article {
    min-height: auto;
    padding: 14px 16px;
  }
  .hero-pills span {
    font-size: 0.72rem;
  }
  .compare-table {
    overflow-x: auto;
  }
  .compare-table div {
    min-width: 620px;
  }
  .booking-grid {
    gap: 38px;
    width: min(100%, calc(100% - 28px));
    padding: 24px;
  }
  .booking-grid::before {
    inset: 0;
    border-radius: 10px;
  }
  .booking-highlights article {
    min-height: auto;
  }
  .schedule-card {
    padding: 22px;
  }
  .schedule-card h3 {
    font-size: 1.55rem;
  }
  .masonry-gallery button:first-child { grid-row: auto; }
  .gallery-wide button:nth-child(6),
  .gallery-wide button:nth-child(11) { grid-row: auto; }
  .masonry-gallery button { min-height: 260px; }
  .about-images {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    gap: 16px;
  }
  .about-shot-main,
  .about-shot-offset {
    height: auto;
  }
  .about-shot-offset {
    margin-top: 0;
  }
  .about-shot img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 104px;
  }
  .hero-bg,
  .hero-overlay {
    height: var(--mobile-hero-bg-height, 570px);
  }
  .hero-bg {
    object-position: 54% center;
    filter: grayscale(4%) brightness(1) contrast(1.02);
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 76% 18%, rgba(2, 178, 255, 0.16), transparent 38%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.58)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.26));
  }
  h1 {
    font-size: 2.82rem;
  }
  .hero-copy-block h1 {
    line-height: 0.92;
  }
}
/* Structured service directory */
.service-breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #8e9ba2;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pricing-intro {
  max-width: 620px;
  margin: -0.75rem auto 1.5rem;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

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

.memberships {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(2, 178, 255, 0.09), transparent 55%);
}

.membership-heading .eyebrow {
  margin-bottom: 0.7rem;
}

.membership-grid .price-card > p:not(.eyebrow) {
  margin: 1.25rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.membership-terms {
  max-width: 760px;
  margin: 1.75rem auto 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.membership-terms p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.membership-terms p + p {
  margin-top: 0.45rem;
}

.membership-page-hero .page-hero-bg { object-position: center 58%; }
.membership-page-eyebrow { text-align: center; }
.membership-details .detail-layout { align-items: stretch; }
.membership-callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(2, 178, 255, 0.14), rgba(14, 14, 14, 0.96));
}
.membership-callout .btn { width: max-content; }

/* Homepage-only light theme preview. Keep scoped until the direction is approved. */
.home-light-preview {
  --black: #f6fafc;
  --panel: #ffffff;
  --white: #14232d;
  --text: rgba(20, 35, 45, 0.92);
  --muted: rgba(20, 35, 45, 0.68);
  --dim: rgba(20, 35, 45, 0.5);
  --line: rgba(20, 35, 45, 0.14);
  background: #f6fafc;
  color: #14232d;
}

.home-light-preview .site-header,
.home-light-preview .site-header.is-scrolled {
  --text: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(110deg, rgba(1, 8, 13, 0.98) 0%, rgba(5, 28, 40, 0.97) 52%, rgba(0, 5, 9, 0.98) 100%);
  border-bottom-color: rgba(2, 178, 255, 0.28);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.home-light-preview .header-cta,
.home-light-preview .btn-primary {
  color: #ffffff;
}

.home-light-preview .nav-toggle span { background: #ffffff; }

.home-light-preview .hero,
.home-light-preview .hero .eyebrow,
.home-light-preview .hero p,
.home-light-preview .hero h1,
.home-light-preview .hero-media-stats {
  color: #ffffff;
}

.home-light-preview .hero {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.76);
  --dim: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.34);
}

.home-light-preview .hero .btn-outline,
.home-light-preview .hero-pills span,
.home-light-preview .hero-media-stats span {
  color: #ffffff;
}

.home-light-preview .hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(5, 19, 28, 0.2);
}

.home-light-preview .hero .btn-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #10212c;
}

.home-light-preview .hero-pills span {
  background: rgba(4, 24, 35, 0.42);
  border-color: rgba(2, 178, 255, 0.58);
}

.home-light-preview .hero-overlay {
  background:
    radial-gradient(circle at 72% 44%, rgba(2, 178, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(7, 21, 30, 0.9), rgba(7, 21, 30, 0.66) 48%, rgba(7, 21, 30, 0.24)),
    linear-gradient(0deg, rgba(7, 21, 30, 0.72), transparent 48%, rgba(7, 21, 30, 0.46));
}

.home-light-preview .review-card,
.home-light-preview .service-menu-grid article,
.home-light-preview .schedule-card,
.home-light-preview .price-card,
.home-light-preview .addons-list article,
.home-light-preview .process-card,
.home-light-preview .why-card,
.home-light-preview .detail-panel {
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.12);
  box-shadow: 0 16px 42px rgba(25, 72, 98, 0.08);
}

.home-light-preview .price-card.featured {
  border-color: #02a7ec;
  box-shadow: 0 18px 48px rgba(2, 178, 255, 0.16);
}

.home-light-preview .pricing::after {
  background: linear-gradient(90deg, transparent, rgba(2, 178, 255, 0.1));
}

.home-light-preview .pricing-intro,
.home-light-preview .membership-grid .price-card > p:not(.eyebrow),
.home-light-preview .membership-terms p {
  color: rgba(20, 35, 45, 0.68);
}

.home-light-preview .membership-terms {
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.12);
}

.home-light-preview .booking,
.home-light-preview .addons,
.home-light-preview .service-area,
.home-light-preview .faq {
  background-color: #edf6fa;
}

.home-light-preview .site-footer {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.64);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(2, 178, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(2, 119, 216, 0.11), transparent 28%),
    linear-gradient(125deg, #061923 0%, #091f2b 48%, #02080c 100%);
  border-top-color: rgba(2, 178, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.home-light-preview .btn-outline:not(.hero .btn-outline) {
  border-color: rgba(20, 35, 45, 0.42);
  color: #14232d;
}

.home-light-preview .btn-outline:not(.hero .btn-outline):hover {
  background: #14232d;
  border-color: #14232d;
  color: #ffffff;
}

/* Premium contrast rhythm for the homepage preview. */
.home-light-preview .memberships,
.home-light-preview .pricing {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(2, 178, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #071722 0%, #0d2635 52%, #07131c 100%);
}

.home-light-preview .memberships::before,
.home-light-preview .pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, 0.035) 64% 65%, transparent 65%);
}

.home-light-preview .memberships .container,
.home-light-preview .pricing .container {
  position: relative;
  z-index: 1;
}

.home-light-preview .memberships .price-card,
.home-light-preview .pricing .price-card {
  background: rgba(9, 25, 35, 0.72);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.home-light-preview .memberships .price-card.featured,
.home-light-preview .pricing .price-card.featured {
  background: linear-gradient(150deg, rgba(14, 45, 61, 0.94), rgba(7, 23, 34, 0.96));
  border-color: #02b2ff;
  box-shadow: 0 24px 65px rgba(2, 178, 255, 0.16);
}

.home-light-preview .memberships .membership-terms {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-light-preview .memberships .membership-terms p,
.home-light-preview .memberships .membership-grid .price-card > p:not(.eyebrow),
.home-light-preview .pricing .pricing-intro {
  color: rgba(255, 255, 255, 0.72);
}

.home-light-preview .memberships .btn-outline,
.home-light-preview .pricing .btn-outline {
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}

.home-light-preview .memberships .btn-outline:hover,
.home-light-preview .pricing .btn-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #10212c;
}

.home-light-preview .service-menu,
.home-light-preview .transformations,
.home-light-preview .about,
.home-light-preview .comparison,
.home-light-preview .process {
  background: #f6fafc;
}

.home-light-preview .service-menu-grid article:hover,
.home-light-preview .addons-list article:hover,
.home-light-preview .why-grid article:hover,
.home-light-preview .process-grid article:hover {
  background: #f2f9fc;
  border-color: rgba(2, 178, 255, 0.5);
}

.home-light-preview .why-grid article,
.home-light-preview .process-grid article,
.home-light-preview .faq-list details,
.home-light-preview .booking-highlights article,
.home-light-preview .booking-support {
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.12);
}

.home-light-preview .prep {
  background: #edf6fa;
}
.service-breadcrumbs a { color: #10aef2; }
.service-directory-heading { max-width: 760px; margin-bottom: 34px; }
.service-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-category-directory { align-items: start; }
.service-directory-card,
.service-category-panel {
  overflow: hidden;
  border: 1px solid rgba(16, 174, 242, .22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 25, 29, .98), rgba(7, 11, 14, .98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}
.service-directory-card { display: grid; grid-template-columns: 42% 1fr; min-height: 330px; }
.service-directory-card > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.service-directory-card > div,
.service-category-panel { padding: 30px; }
.service-directory-card h2,
.service-category-panel h2 { margin: 7px 0 12px; }
.service-directory-card p:not(.eyebrow),
.service-category-panel > p:not(.eyebrow) { color: #b7c0c5; line-height: 1.7; }
.service-directory-card .btn,
.service-category-panel .btn { margin-top: 18px; }
.service-sub-links { display: grid; gap: 7px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.service-sub-links a { color: #c5d0d5; font-size: .9rem; }
.service-sub-links a:hover { color: #10aef2; }
.service-link-list { display: grid; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.service-link-list > a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.08); color: #f3f7f8; font-weight: 800; }
.service-link-list > a b { color: #10aef2; font-size: 1.2rem; }
.tier-three-links { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0 17px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.tier-three-links a { padding: 7px 10px; border: 1px solid rgba(16,174,242,.22); border-radius: 999px; color: #aebac0; font-size: .78rem; font-weight: 700; }
.detail-cta { text-align: center; background: linear-gradient(135deg, rgba(0, 163, 224, .13), rgba(0,0,0,0)); }
.detail-cta .container { max-width: 800px; }
.detail-cta p:not(.eyebrow) { color: #b7c0c5; margin: 12px auto 24px; line-height: 1.7; }
.detail-cta .hero-actions { justify-content: center; }
.included-card > span { display: inline-block; margin-bottom: 12px; color: #10aef2; font-family: 'Chakra Petch', sans-serif; font-weight: 700; }

@media (max-width: 900px) {
  .service-directory-grid { grid-template-columns: 1fr; }
  .service-directory-card { grid-template-columns: 38% 1fr; }
}

@media (max-width: 620px) {
  .service-breadcrumbs { width: min(100% - 28px, 1180px); padding-top: 16px; font-size: .68rem; }
  .service-directory-card { grid-template-columns: 1fr; }
  .service-directory-card > img { min-height: 210px; max-height: 240px; }
  .service-directory-card > div,
  .service-category-panel { padding: 23px; }
}

/* Compact heroes: keep the message and primary actions above the fold. */
.nav-services { position: relative; }
.nav-services-trigger { display: flex; align-items: center; gap: 4px; }
.services-toggle { display: grid; width: 26px; height: 26px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: rgba(2,178,255,.08); cursor: pointer; transition: background 180ms ease; }
.services-toggle:hover { background: rgba(2,178,255,.18); }
.services-chevron { display: block; width: 8px; height: 8px; margin-top: -3px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform 180ms ease, margin 180ms ease; }
.nav-services.is-open .services-chevron { margin-top: 3px; transform: rotate(225deg); }
.services-mega { position: fixed; top: 82px; left: 50%; width: min(1180px, calc(100vw - 40px)); padding: 24px; visibility: hidden; opacity: 0; background: rgba(3, 8, 11, .99); border: 1px solid rgba(2, 178, 255, .28); border-radius: 0 0 16px 16px; box-shadow: 0 28px 70px rgba(0,0,0,.62); transform: translate(-50%, -8px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; text-transform: none; }
.nav-services:hover .services-mega,
.nav-services:focus-within .services-mega,
.nav-services.is-open .services-mega { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.services-mega-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.services-mega section { min-width: 0; }
.site-nav .mega-category { display: block; min-height: 48px; padding-bottom: 10px; border-bottom: 1px solid rgba(2,178,255,.25); color: #fff; font-family: "Chakra Petch", sans-serif; font-size: .92rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; white-space: normal; }
.mega-links { display: grid; gap: 8px; padding-top: 12px; }
.site-nav .mega-links a { color: #aebbc1; font-size: .78rem; font-weight: 700; line-height: 1.3; white-space: normal; }
.site-nav .mega-links a:hover { color: var(--accent); }
.site-nav .mega-links a::after,
.site-nav .mega-category::after,
.site-nav .mega-all-services::after { display: none; }
.mega-tier-three { display: grid; gap: 6px; padding: 3px 0 3px 12px; border-left: 1px solid rgba(2,178,255,.3); }
.site-nav .mega-tier-three a { color: #7f929c; font-size: .72rem; }
.site-nav .mega-all-services { display: flex; justify-content: center; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); color: var(--accent); font-weight: 800; text-transform: uppercase; }

.hero {
  min-height: 650px;
  padding-top: 126px;
  padding-bottom: 54px;
}
.hero-copy-block h1 {
  display: block;
  max-width: 820px;
  font-size: clamp(3.3rem, 4.5vw, 5.35rem);
  line-height: .96;
}
.hero-image-card { height: 400px; }
.hero-media-stats article { min-height: 82px; padding: 14px 16px; }
.hero-actions { margin-top: 24px; }
.hero-pills { margin-top: 20px; }

.page-hero {
  min-height: 500px;
  padding: 58px 0;
}
.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(3.3rem, 5.1vw, 5.5rem);
  line-height: .96;
}
.page-hero p:not(.eyebrow) { margin-top: 14px; }
.page-hero .hero-actions { margin-top: 24px; }

@media (max-width: 1240px) {
  .nav-services { width: 100%; }
  .nav-services-trigger { justify-content: space-between; }
  .services-toggle { width: 38px; height: 34px; border: 1px solid rgba(2,178,255,.24); border-radius: 6px; }
  .services-mega { position: static; width: 100%; max-height: 0; padding: 0; overflow: hidden; visibility: hidden; border: 0; border-radius: 0; box-shadow: none; transform: none; transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, padding 240ms ease; }
  .nav-services:hover .services-mega,
  .nav-services:focus-within .services-mega { max-height: 0; padding: 0; visibility: hidden; opacity: 0; transform: none; }
  .nav-services.is-open .services-mega { max-height: min(68vh, 620px); padding: 18px 4px 8px; visibility: visible; opacity: 1; overflow-y: auto; }
  .services-mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .hero { min-height: auto; padding: 116px 0 64px; }
  .hero-copy-block h1 { max-width: 900px; font-size: clamp(3.2rem, 7vw, 5.25rem); }
  .hero-image-card { height: 380px; }
  .page-hero { min-height: 450px; padding: 52px 0; }
}

@media (max-width: 760px) {
  .services-mega-grid { grid-template-columns: 1fr; }
  .site-nav .mega-category { min-height: 0; }
  .hero { min-height: auto; padding: 96px 0 46px; }
  .hero-copy-block h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); line-height: .95; }
  .hero p:not(.eyebrow) { font-size: 1rem; line-height: 1.6; }
  .hero-image-card { height: 300px; }
  .hero-media-stats article { min-height: 72px; padding: 12px; }
  .hero-pills { margin-top: 17px; }
  .page-hero { min-height: 390px; padding: 42px 0; }
  .page-hero h1 { font-size: clamp(2.4rem, 11vw, 3.15rem); line-height: .96; }
  .page-hero p:not(.eyebrow) { font-size: 1rem; line-height: 1.6; }
}

/* =====================================================================
   PREMIUM POLISH
   ===================================================================== */

/* --- Hero pills → true pill shape ----------------------------------- */
.hero-pills span {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.75rem;
}

/* --- Star ratings → warm gold --------------------------------------- */
.stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin: 14px 0 10px;
}

/* --- Review cards → blue left accent + soft radius ------------------ */
.review-card {
  border-left: 3px solid var(--accent);
  border-radius: 10px;
}

.review-top small {
  color: #02b2ff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Why / Process step numbers → circular accent badge ------------- */
.why-grid span,
.process-grid span {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(2, 178, 255, 0.18), rgba(2, 178, 255, 0.05));
  border: 1px solid rgba(2, 178, 255, 0.42);
  border-radius: 50%;
  font-size: 1.05rem;
  box-shadow: 0 0 18px rgba(2, 178, 255, 0.1);
}

/* Why-grid h3 spacing after badge */
.why-grid h3 {
  margin: 0 0 12px;
}

/* --- Service menu cards → sliding accent top stripe on hover -------- */
.service-menu-grid article {
  position: relative;
  overflow: hidden;
}
.service-menu-grid article::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(2, 178, 255, 0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
  pointer-events: none;
}
.service-menu-grid article:hover::after {
  transform: scaleX(1);
}

/* --- Addon cards → same sliding accent top stripe ------------------- */
.addons-list article {
  position: relative;
  overflow: hidden;
}
.addons-list article::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(2, 178, 255, 0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
  pointer-events: none;
}
.addons-list article:hover::after {
  transform: scaleX(1);
}

/* --- Coverage area tags → pill shape -------------------------------- */
.coverage-list span {
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* --- Featured price card → stronger depth ring ---------------------- */
.price-card.featured {
  box-shadow:
    0 0 0 1px rgba(2, 178, 255, 0.55),
    0 0 42px rgba(2, 178, 255, 0.18),
    0 26px 60px rgba(0, 0, 0, 0.18);
}

/* --- Comparison table → alternating row tint ------------------------ */
.compare-table div:nth-child(even) {
  background: rgba(2, 178, 255, 0.05);
}

/* --- Prep & CTA images → rounded corners for softness --------------- */
.prep-grid > img,
.cta-grid > img {
  border-radius: 14px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

/* --- Primary hero CTA → visible glow at rest ----------------------- */
.hero-actions .btn-primary {
  box-shadow: 0 8px 28px rgba(2, 178, 255, 0.32);
}

/* --- Why-grid articles → subtle inner top accent line --------------- */
.why-grid article,
.process-grid article {
  border-top: 2px solid rgba(2, 178, 255, 0.12);
  transition: border-top-color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.why-grid article:hover,
.process-grid article:hover {
  border-top-color: rgba(2, 178, 255, 0.6);
}

/* --- Section copy max-width tighten for better readability ---------- */
.section-copy {
  max-width: 720px;
  line-height: 1.72;
}

/* --- Light-mode specific overrides ---------------------------------- */
.home-light-preview .review-card {
  border-left: 3px solid #02b2ff;
  box-shadow: 0 6px 28px rgba(2, 130, 200, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.home-light-preview .why-grid article,
.home-light-preview .process-grid article {
  border-top: 2px solid rgba(2, 178, 255, 0.15);
}

.home-light-preview .why-grid article:hover,
.home-light-preview .process-grid article:hover {
  border-top-color: rgba(2, 178, 255, 0.55);
}

.home-light-preview .price-card.featured {
  box-shadow:
    0 0 0 2px #02b2ff,
    0 0 40px rgba(2, 178, 255, 0.18),
    0 24px 58px rgba(25, 72, 98, 0.14);
}

/* Booking highlights step numbers — larger & accented */
.booking-highlights strong {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

/* Coverage list in light mode — border color on hover */
.home-light-preview .coverage-list span:hover {
  background: rgba(2, 178, 255, 0.1);
  border-color: rgba(2, 178, 255, 0.52);
}

/* Smoother CTA band image hover */
.cta-grid > img:hover {
  filter: brightness(1.06) saturate(1.08);
  transform: scale(1.015);
}

/* Mobile home hero: keep the first viewport focused on the core message. */
@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 108px 0 48px;
    align-items: center;
  }

  .hero-bg,
  .hero-overlay {
    height: 100% !important;
  }

  .hero-content {
    display: block;
  }

  .hero-media-panel,
  .hero-pills,
  .hero-actions .btn-outline {
    display: none;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

/* Membership cards */
.membership-grid {
  width: min(1120px, 100%);
  gap: 22px;
  margin-top: 46px;
  align-items: stretch;
}

.membership-grid .price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(19, 34, 43, 0.96), rgba(7, 13, 17, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.membership-grid .price-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(2, 178, 255, 0.9), transparent);
  background-size: 200% 100%;
  animation: membershipShimmer 4s linear infinite;
}

.membership-grid .price-card.featured {
  min-height: 470px;
  background:
    radial-gradient(circle at 85% 8%, rgba(2, 178, 255, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(14, 43, 57, 0.98), rgba(6, 17, 24, 0.99));
  border-color: rgba(2, 178, 255, 0.78);
  transform: translateY(-10px);
}

.membership-grid .price-card:hover {
  border-color: rgba(2, 178, 255, 0.72);
  box-shadow: 0 28px 72px rgba(2, 178, 255, 0.16);
  transform: translateY(-6px);
}

.membership-grid .price-card.featured:hover {
  transform: translateY(-16px);
}

.membership-grid .price-card:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 178, 255, 0.2), 0 28px 72px rgba(2, 178, 255, 0.16);
  outline: 0;
}

.membership-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 72px;
}

.membership-card-heading .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.membership-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(2, 178, 255, 0.45);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 26px 0 12px;
}

.membership-price strong {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(3.15rem, 5vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.membership-price span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.membership-grid .price-card > p:not(.eyebrow) {
  min-height: 78px;
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.6;
}

.membership-benefits {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-grid .membership-benefits li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.4;
}

.membership-grid .membership-benefits li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 900;
}

.membership-grid .price-card .btn {
  width: 100%;
  margin-top: auto;
}

.membership-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  background: var(--accent);
  border-radius: 999px;
  color: #00121c;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes membershipShimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.membership-modal {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  overflow: auto;
  color: var(--white);
  background: transparent;
  border: 0;
}

.membership-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.membership-modal[open] { animation: membershipModalIn 240ms ease-out; }

.membership-modal-shell {
  position: relative;
  padding: 32px;
  background:
    radial-gradient(circle at 90% 0, rgba(2, 178, 255, 0.2), transparent 34%),
    #09171f;
  border: 1px solid rgba(2, 178, 255, 0.42);
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.membership-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.membership-selected-plan {
  margin: 0 0 20px;
  padding: 12px 14px;
  background: rgba(2, 178, 255, 0.1);
  border: 1px solid rgba(2, 178, 255, 0.25);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 800;
}

.membership-form.schedule-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.membership-form .btn { width: 100%; }

@keyframes membershipModalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 760px) {
  .membership-grid {
    gap: 18px;
    margin-top: 32px;
  }

  .membership-grid .price-card,
  .membership-grid .price-card.featured {
    min-height: 0;
    padding: 28px;
    transform: none;
  }

  .membership-grid .price-card:hover,
  .membership-grid .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .membership-grid .price-card > p:not(.eyebrow) {
    min-height: 0;
  }

  .home-light-preview .membership-grid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .home-light-preview .membership-grid .price-card.reveal {
    transform: translateY(34px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .75, .25, 1), border-color 220ms ease, box-shadow 220ms ease;
  }

  .home-light-preview .membership-grid .price-card.reveal.is-visible { transform: translateY(0); }
  .home-light-preview .membership-grid .price-card:nth-child(2) { transition-delay: 90ms; }
  .home-light-preview .membership-grid .price-card:nth-child(3) { transition-delay: 180ms; }

  .membership-modal-shell { padding: 26px 20px 22px; }
  .membership-modal .schedule-head { padding-right: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .membership-grid .price-card,
  .membership-grid .price-card::before,
  .membership-modal[open] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Prep image hover */
.prep-grid > img:hover {
  filter: brightness(1.06) saturate(1.08);
  transform: scale(1.015);
}

/* Homepage premium services showcase */
.home-light-preview .service-menu {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(2, 178, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #edf6fa 100%);
}

.home-light-preview .service-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.service-menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.service-menu-intro .eyebrow { margin-bottom: 12px; }
.service-menu-intro .section-copy { margin: 0 0 5px; }

.home-light-preview .service-menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.home-light-preview .service-menu-grid article {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #07141c;
  border: 1px solid rgba(7, 35, 49, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(19, 58, 78, 0.13);
}

.home-light-preview .service-menu-grid article:hover {
  background: #07141c;
  border-color: rgba(2, 178, 255, 0.66);
  box-shadow: 0 28px 72px rgba(13, 65, 92, 0.2);
  transform: translateY(-8px);
}

.home-light-preview .service-menu-grid article::after { display: none; }
.home-light-preview .service-menu-grid article > a { display: grid; height: 100%; grid-template-columns: 46% 1fr; }

.service-menu-image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.service-menu-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 11, 16, 0.56), transparent 55%);
}

.service-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 650ms cubic-bezier(.2, .75, .25, 1), filter 650ms ease;
}

.service-menu-grid article:hover .service-menu-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.service-menu-image > span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-menu-card-body {
  display: flex;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
}

.home-light-preview .service-menu-grid .service-menu-card-body h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.home-light-preview .service-menu-grid .service-menu-card-body p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-menu-card-body > strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-menu-card-body > strong span {
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.service-menu-grid article:hover .service-menu-card-body > strong span { transform: translateX(5px); }

@media (max-width: 980px) {
  .service-menu-intro { grid-template-columns: 1fr; gap: 18px; }
  .home-light-preview .service-menu-grid article > a { grid-template-columns: 1fr; }
  .service-menu-image { min-height: 240px; }
}

/* Final contrast guard for every dark service-page surface. */
.service-premium main > .detail-cta > .container > h2,
.service-premium main > .service-process > .container > h2,
.service-premium main > .service-issues > .container h2,
.service-premium main > .service-work > .container > h2,
.service-premium main > .service-coverage > .container h2 {
  color: #ffffff;
}

.service-premium .detail-cta,
.service-premium .service-process,
.service-premium .service-issues,
.service-premium .service-work,
.service-premium .service-coverage,
.service-premium .service-page-pricing .price-card {
  color: #ffffff;
}

.service-premium .detail-cta h1,
.service-premium .detail-cta h2,
.service-premium .detail-cta h3,
.service-premium .service-process h1,
.service-premium .service-process h2,
.service-premium .service-process h3,
.service-premium .service-issues h1,
.service-premium .service-issues h2,
.service-premium .service-issues h3,
.service-premium .service-work h1,
.service-premium .service-work h2,
.service-premium .service-work h3,
.service-premium .service-coverage h1,
.service-premium .service-coverage h2,
.service-premium .service-coverage h3,
.service-premium .service-page-pricing .price-card h3 {
  color: #ffffff;
}

.service-premium .detail-cta p:not(.eyebrow),
.service-premium .service-process p:not(.eyebrow),
.service-premium .service-issues p:not(.eyebrow),
.service-premium .service-work p:not(.eyebrow),
.service-premium .service-coverage p:not(.eyebrow),
.service-premium .service-page-pricing .price-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-premium .detail-cta .btn-primary,
.service-premium .service-page-pricing .price-card .btn-primary {
  color: #ffffff;
}

@media (max-width: 760px) {
  .home-light-preview .service-menu-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
  .service-menu-image { min-height: 220px; }
  .service-menu-card-body { padding: 26px; }
}

/* Compact homepage booking section */
.home-light-preview .booking.section { padding: 70px 0; }

.home-light-preview .booking-grid {
  gap: 38px;
  padding: 42px;
}

.home-light-preview .booking-copy h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.35rem);
  line-height: 1;
}

.home-light-preview .booking-highlights {
  gap: 10px;
  margin-top: 24px;
}

.home-light-preview .booking-highlights article {
  min-height: 128px;
  gap: 9px;
  padding: 16px;
}

.home-light-preview .booking-highlights strong { font-size: 1.55rem; }
.home-light-preview .booking-highlights span { font-size: 0.86rem; line-height: 1.4; }
.home-light-preview .booking-support { margin-top: 18px; padding: 12px 16px; }
.home-light-preview .booking .schedule-card { padding: 26px; }
.home-light-preview .booking .schedule-head { margin-bottom: 18px; }
.home-light-preview .booking .schedule-head img { width: 48px; height: 48px; }
.home-light-preview .booking .schedule-card h3 { font-size: 1.65rem; }
.home-light-preview .booking .schedule-card label { gap: 5px; margin-bottom: 10px; }
.home-light-preview .booking .schedule-card input,
.home-light-preview .booking .schedule-card select { min-height: 48px; padding: 10px 12px; }
.home-light-preview .booking .schedule-card textarea { min-height: 68px; padding: 10px 12px; }
.home-light-preview .booking .calendar { margin: 12px 0 16px; }

@media (max-width: 1240px) {
  .home-light-preview .booking-grid {
    width: min(820px, calc(100% - 36px));
    gap: 24px;
    padding: 30px;
  }

  .home-light-preview .booking-copy { text-align: center; }
  .home-light-preview .booking-copy h2 { max-width: 720px; margin: 0 auto; }
  .home-light-preview .booking-copy h2::before { display: none; }
  .home-light-preview .booking-copy > p:not(.eyebrow),
  .home-light-preview .booking-highlights,
  .home-light-preview .booking-support,
  .home-light-preview .booking .calendar { display: none; }
  .home-light-preview .booking .schedule-card { width: min(700px, 100%); margin: 0 auto; }
}

@media (max-width: 760px) {
  .home-light-preview .booking.section { padding: 48px 0; }
  .home-light-preview .booking-grid { gap: 24px; padding: 24px 20px; }
  .home-light-preview .booking-copy h2 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .home-light-preview .booking-copy > p:not(.eyebrow),
  .home-light-preview .booking-highlights,
  .home-light-preview .booking-support,
  .home-light-preview .booking .calendar { display: none; }
  .home-light-preview .booking .schedule-card { padding: 20px; }
  .home-light-preview .booking .schedule-head { margin-bottom: 14px; }
  .home-light-preview .booking .schedule-card textarea { min-height: 60px; }
}

/* Premium homepage request form */
.home-light-preview .booking .schedule-card {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.64);
  position: relative;
  background:
    radial-gradient(circle at 100% 0, rgba(2, 178, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #0c202b 0%, #07141c 58%, #040c11 100%);
  border: 1px solid rgba(2, 178, 255, 0.34);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(6, 32, 46, 0.24);
}

.home-light-preview .booking .schedule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, 0.025) 70% 71%, transparent 71%);
  pointer-events: none;
}

.home-light-preview .booking .schedule-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.home-light-preview .booking .schedule-card:hover {
  border-color: rgba(2, 178, 255, 0.5);
  box-shadow: 0 32px 82px rgba(6, 32, 46, 0.3);
  transform: translateY(-3px);
}

.home-light-preview .booking .schedule-head {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-light-preview .booking .schedule-head img {
  padding: 8px;
  background: rgba(0, 0, 0, 0.46);
  border-color: rgba(2, 178, 255, 0.5);
  box-shadow: 0 0 0 5px rgba(2, 178, 255, 0.07);
}

.home-light-preview .booking .schedule-head span { color: var(--accent); }
.home-light-preview .booking .schedule-card h3,
.home-light-preview .booking .schedule-card label { color: #ffffff; }

.home-light-preview .booking .schedule-card label > span {
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.home-light-preview .booking .schedule-card input,
.home-light-preview .booking .schedule-card select,
.home-light-preview .booking .schedule-card textarea {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.home-light-preview .booking .schedule-card input:hover,
.home-light-preview .booking .schedule-card select:hover,
.home-light-preview .booking .schedule-card textarea:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(2, 178, 255, 0.34);
}

.home-light-preview .booking .schedule-card input:focus,
.home-light-preview .booking .schedule-card select:focus,
.home-light-preview .booking .schedule-card textarea:focus {
  background: rgba(2, 178, 255, 0.075);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 178, 255, 0.13);
}

.home-light-preview .booking .schedule-card input::placeholder,
.home-light-preview .booking .schedule-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.home-light-preview .booking .schedule-card select option {
  color: #ffffff;
  background: #0b1d27;
}

.home-light-preview .booking .schedule-card > .btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(2, 178, 255, 0.22);
}

.home-light-preview .booking .form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

/* Homepage premium add-ons */
.home-light-preview .addons {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(2, 178, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #071722 0%, #0c2837 55%, #06131c 100%);
  color: #ffffff;
}

.home-light-preview .addons::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(255, 255, 255, 0.025) 68% 69%, transparent 69%);
}

.home-light-preview .addons-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.home-light-preview .addons-intro {
  position: relative;
  padding-left: 24px;
}

.home-light-preview .addons-intro::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(2, 178, 255, 0.08));
  border-radius: 999px;
}

.home-light-preview .addons h2 {
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.home-light-preview .addons h2::before { display: none; }

.home-light-preview .addons .section-copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

.addons-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.addons-contact span { font-size: 1.15rem; transition: transform 200ms ease; }
.addons-contact:hover span { transform: translateX(5px); }

.home-light-preview .addons-list { gap: 16px; }

.home-light-preview .addons-list article {
  display: grid;
  min-height: 205px;
  padding: 28px;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.home-light-preview .addons-list article:hover {
  background: linear-gradient(145deg, rgba(2, 178, 255, 0.14), rgba(255, 255, 255, 0.05));
  border-color: rgba(2, 178, 255, 0.58);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
  transform: translateY(-6px);
}

.home-light-preview .addons-list article::after {
  transform: scaleX(1);
  opacity: 0.65;
}

.addon-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(2, 178, 255, 0.45);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-light-preview .addons-list h3 {
  margin: 5px 0 12px;
  color: #ffffff;
  font-size: 1.28rem;
}

.home-light-preview .addons-list p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
  line-height: 1.58;
}

@media (max-width: 1240px) {
  .home-light-preview .addons-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-light-preview .addons-intro { max-width: 760px; }
}

@media (max-width: 760px) {
  .home-light-preview .addons-intro { padding-left: 18px; }
  .home-light-preview .addons h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .home-light-preview .addons-list { grid-template-columns: 1fr; }
  .home-light-preview .addons-list article { min-height: 0; padding: 24px 22px; }
}

/* Homepage service-area contrast and polish */
.home-light-preview .coverage {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.66);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 12%, rgba(2, 178, 255, 0.18), transparent 34%),
    radial-gradient(circle at 92% 85%, rgba(2, 178, 255, 0.08), transparent 28%),
    linear-gradient(120deg, #061923 0%, #07131a 48%, #03080c 100%);
}

.home-light-preview .coverage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 72%, rgba(255, 255, 255, 0.025) 72% 73%, transparent 73%);
}

.home-light-preview .coverage-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.home-light-preview .coverage h2 { color: #ffffff; }

.home-light-preview .coverage .section-copy {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.home-light-preview .coverage-list { gap: 12px; }

.home-light-preview .coverage-list span {
  display: flex;
  min-height: 66px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.home-light-preview .coverage-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  flex: 0 0 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 178, 255, 0.1);
}

.home-light-preview .coverage-list span:hover {
  background: rgba(2, 178, 255, 0.13);
  border-color: rgba(2, 178, 255, 0.54);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateX(6px);
}

@media (max-width: 760px) {
  .home-light-preview .coverage-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-light-preview .coverage-list span { min-height: 58px; padding: 13px 14px; font-size: 0.78rem; }
}

/* Homepage-wide Fresh Mobile visual system */
.home-light-preview main > .section {
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(70px, 7vw, 104px);
}

.home-light-preview main > .section h2 {
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.home-light-preview main > .section .eyebrow {
  color: var(--accent);
  letter-spacing: 0.11em;
}

.home-light-preview .reviews { background: #f7fbfd; }
.home-light-preview .review-row { gap: 16px; }
.home-light-preview .review-card {
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(18, 61, 84, 0.09);
}

.home-light-preview .transformations {
  background: #f7fbfd;
}

.home-light-preview .transformations .section-copy { margin-bottom: 38px; }
.home-light-preview .masonry-gallery button {
  overflow: hidden;
  border: 1px solid rgba(20, 35, 45, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(18, 61, 84, 0.1);
}

.home-light-preview .cta-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 20%, rgba(2, 178, 255, 0.17), transparent 30%),
    linear-gradient(130deg, #071722, #0b2939 58%, #06131b);
}

.home-light-preview .cta-grid {
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.home-light-preview .cta-grid > img {
  min-height: 390px;
  object-fit: cover;
  border: 1px solid rgba(2, 178, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.home-light-preview .cta-grid h2 { color: #ffffff; }
.home-light-preview .cta-grid h2::before { display: none; }
.home-light-preview .cta-grid p { color: rgba(255, 255, 255, 0.68); }

.home-light-preview .about { background: #f7fbfd; }
.home-light-preview .about-grid { gap: clamp(44px, 7vw, 96px); align-items: center; }
.home-light-preview .about-points span {
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.11);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(18, 61, 84, 0.07);
}

.home-light-preview .about-shot { border-radius: 16px; }

.home-light-preview .why { background: #f7fbfd; }
.home-light-preview .why-grid { gap: 16px; margin-top: 38px; }
.home-light-preview .why-grid article {
  min-height: 245px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 45, 0.1);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(18, 61, 84, 0.08);
}

.home-light-preview .comparison { background: #edf6fa; }
.home-light-preview .comparison-grid { gap: clamp(42px, 7vw, 90px); align-items: center; }
.home-light-preview .compare-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 45, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(18, 61, 84, 0.1);
}

.home-light-preview .prep { background: #f7fbfd; }
.home-light-preview .prep-grid { gap: clamp(42px, 7vw, 90px); align-items: center; }
.home-light-preview .prep-grid > img {
  min-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(20, 35, 45, 0.1);
  border-radius: 16px;
}

.home-light-preview .prep li {
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.1);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(18, 61, 84, 0.06);
}

.home-light-preview .prep .btn { margin-top: 24px; }

.home-light-preview .process {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(2, 178, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #061822, #0b2634 55%, #050f16);
}

.home-light-preview .process h2 { color: #ffffff; }
.home-light-preview .process-grid { gap: 16px; margin-top: 42px; }
.home-light-preview .process-grid article {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.home-light-preview .process-grid article:hover {
  background: rgba(2, 178, 255, 0.12);
  border-color: rgba(2, 178, 255, 0.5);
}

.home-light-preview .process-grid p { color: rgba(255, 255, 255, 0.64); }

.home-light-preview .faq { background: #f7fbfd; }
.home-light-preview .faq-grid { gap: clamp(42px, 7vw, 90px); }
.home-light-preview .faq-list { gap: 10px; }
.home-light-preview .faq-list details {
  overflow: hidden;
  background: #ffffff;
  border-color: rgba(20, 35, 45, 0.11);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(18, 61, 84, 0.07);
}

@media (max-width: 760px) {
  .home-light-preview main > .section { padding-top: 56px; padding-bottom: 56px; }
  .home-light-preview main > .section h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .home-light-preview .cta-grid > img,
  .home-light-preview .prep-grid > img { min-height: 280px; }
  .home-light-preview .why-grid article,
  .home-light-preview .process-grid article { min-height: 0; padding: 24px; }
  .home-light-preview .compare-table { border-radius: 10px; }
}

/* Light premium homepage pricing section */
.home-light-preview .pricing {
  --white: #10232e;
  --text: rgba(16, 35, 46, 0.9);
  --muted: rgba(16, 35, 46, 0.65);
  position: relative;
  color: #10232e;
  background:
    radial-gradient(circle at 12% 10%, rgba(2, 178, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(2, 119, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #fafdff 0%, #eaf5fa 100%);
}

.home-light-preview .pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 68%, rgba(2, 178, 255, 0.035) 68% 69%, transparent 69%);
}

.home-light-preview .pricing::after {
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(2, 178, 255, 0.08));
}

.home-light-preview .pricing .container { position: relative; z-index: 1; }
.home-light-preview .pricing h2 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  color: #10232e;
  font-size: clamp(2.5rem, 3.7vw, 3.55rem);
  line-height: 0.98;
}

.home-light-preview .pricing .pricing-intro {
  margin-top: 12px;
  margin-bottom: 26px;
  color: rgba(16, 35, 46, 0.66);
  font-size: 1rem;
  line-height: 1.5;
}

.home-light-preview .pricing > .container > .center-btn {
  box-shadow: 0 12px 30px rgba(2, 178, 255, 0.2);
}

.home-light-preview .pricing .pricing-grid {
  width: min(1080px, 100%);
  gap: 22px;
  align-items: stretch;
}

.home-light-preview .pricing .price-card {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.66);
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 5%, rgba(2, 178, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #102733, #07141c 62%, #040b0f);
  border: 1px solid rgba(2, 178, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(14, 48, 65, 0.2);
}

.home-light-preview .pricing .price-card.featured {
  background:
    radial-gradient(circle at 88% 4%, rgba(2, 178, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #123747, #071a24 62%, #040b0f);
  border-color: rgba(2, 178, 255, 0.72);
  box-shadow: 0 28px 68px rgba(2, 128, 190, 0.22);
  transform: translateY(-10px);
}

.home-light-preview .pricing .price-card h3 { color: #ffffff; }
.home-light-preview .pricing .price-card li { color: rgba(255, 255, 255, 0.7); }
.home-light-preview .pricing .price-card li::before { color: var(--accent); }
.home-light-preview .pricing .price-card .btn { width: 100%; margin-top: auto; }

.home-light-preview .pricing .price-card .btn-outline {
  color: #ffffff;
  background: rgba(2, 178, 255, 0.07);
  border-color: rgba(2, 178, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(2, 178, 255, 0.05);
}

.home-light-preview .pricing .price-card .btn-outline:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #02b2ff, #0077d8);
  border-color: #02b2ff;
  box-shadow: 0 12px 28px rgba(2, 178, 255, 0.25);
}

.home-light-preview .pricing .price-card:hover {
  border-color: rgba(2, 178, 255, 0.72);
  box-shadow: 0 30px 72px rgba(2, 128, 190, 0.24);
}

@media (max-width: 760px) {
  .home-light-preview .pricing h2 { font-size: clamp(2.2rem, 10vw, 2.85rem); }
  .home-light-preview .pricing .pricing-grid { gap: 18px; }
  .home-light-preview .pricing .price-card,
  .home-light-preview .pricing .price-card.featured {
    min-height: 0;
    padding: 28px;
    transform: none;
  }
}

/* Premium desktop homepage hero */
@media (min-width: 1241px) {
  .home-light-preview .hero {
    min-height: 790px;
    padding: 148px 0 74px;
  }

  .home-light-preview .hero-bg {
    object-position: center 48%;
    filter: grayscale(10%) brightness(0.78) contrast(1.1) saturate(1.05);
    transform: scale(1.015);
  }

  .home-light-preview .hero-overlay {
    background:
      radial-gradient(circle at 73% 42%, rgba(2, 178, 255, 0.22), transparent 27%),
      linear-gradient(90deg, rgba(2, 12, 18, 0.97) 0%, rgba(4, 24, 34, 0.9) 42%, rgba(3, 17, 24, 0.48) 72%, rgba(1, 8, 12, 0.7) 100%),
      linear-gradient(0deg, rgba(0, 5, 8, 0.92), transparent 46%, rgba(0, 6, 10, 0.62));
  }

  .home-light-preview .hero-content {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.72fr);
    gap: clamp(64px, 6vw, 108px);
  }

  .home-light-preview .hero-copy-block {
    position: relative;
    max-width: 800px;
    padding-left: 24px;
  }

  .home-light-preview .hero-copy-block::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 5px;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), rgba(2, 178, 255, 0.05));
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(2, 178, 255, 0.34);
  }

  .home-light-preview .hero .eyebrow {
    margin-bottom: 17px;
    color: #54caff;
    font-size: 0.82rem;
    letter-spacing: 0.13em;
  }

  .home-light-preview .hero-copy-block h1 {
    max-width: 790px;
    font-size: clamp(4rem, 5.15vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-shadow: 0 7px 32px rgba(0, 0, 0, 0.42);
  }

  .home-light-preview .hero-copy-block > p:not(.eyebrow) {
    max-width: 690px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .home-light-preview .hero-actions { gap: 14px; margin-top: 30px; }
  .home-light-preview .hero-actions .btn { min-height: 56px; border-radius: 8px; }
  .home-light-preview .hero-actions .btn-primary { box-shadow: 0 14px 36px rgba(2, 178, 255, 0.3); }

  .home-light-preview .hero-pills { gap: 9px; margin-top: 24px; }
  .home-light-preview .hero-pills span {
    padding: 9px 14px;
    background: rgba(4, 24, 35, 0.64);
    border-color: rgba(2, 178, 255, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }

  .home-light-preview .hero-media-panel {
    width: 100%;
    max-width: 500px;
    justify-self: end;
    gap: 0;
  }

  .home-light-preview .hero-media-panel::before {
    inset: 24px -18px 34px 28px;
    background: linear-gradient(145deg, rgba(2, 178, 255, 0.2), rgba(2, 178, 255, 0.025));
    border-color: rgba(2, 178, 255, 0.3);
    border-radius: 22px;
    transform: rotate(2deg);
  }

  .home-light-preview .hero-image-card {
    height: 470px;
    border-color: rgba(105, 211, 255, 0.42);
    border-radius: 20px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .home-light-preview .hero-image-card img { filter: saturate(0.94) contrast(1.04); }

  .home-light-preview .hero-media-stats {
    z-index: 4;
    width: calc(100% - 36px);
    gap: 8px;
    margin: -42px auto 0;
  }

  .home-light-preview .hero-media-stats article {
    min-height: 94px;
    padding: 15px;
    background: linear-gradient(145deg, rgba(8, 31, 43, 0.96), rgba(3, 13, 19, 0.94));
    border-color: rgba(2, 178, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
  }

  .home-light-preview .hero-media-stats strong { font-size: 1.45rem; }
  .home-light-preview .hero-media-stats span { font-size: 0.68rem; }
}

/* Desktop hero right-side refinement */
@media (min-width: 1241px) {
  .home-light-preview .hero-media-panel {
    max-width: 540px;
    padding: 12px 12px 34px;
  }

  .home-light-preview .hero-media-panel::before {
    inset: -16px -18px 18px 46px;
    background:
      radial-gradient(circle at 65% 38%, rgba(2, 178, 255, 0.2), transparent 48%),
      rgba(2, 178, 255, 0.035);
    border: 1px solid rgba(2, 178, 255, 0.2);
    border-radius: 26px;
    transform: none;
    box-shadow: 0 0 70px rgba(2, 178, 255, 0.09);
  }

  .home-light-preview .hero-image-card {
    height: 490px;
    border: 1px solid rgba(115, 215, 255, 0.42);
    border-radius: 20px;
    box-shadow:
      0 34px 90px rgba(0, 0, 0, 0.5),
      0 0 0 6px rgba(4, 20, 29, 0.5);
  }

  .home-light-preview .hero-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, transparent 58%, rgba(1, 9, 14, 0.5)),
      linear-gradient(90deg, rgba(2, 178, 255, 0.06), transparent 38%);
    pointer-events: none;
  }

  .home-light-preview .hero-image-card::after {
    content: "Professional mobile detailing";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 9px 12px;
    background: rgba(3, 17, 24, 0.82);
    border: 1px solid rgba(2, 178, 255, 0.34);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
  }

  .home-light-preview .hero-image-card img {
    object-position: center 48%;
    filter: saturate(0.98) contrast(1.05) brightness(0.92);
  }

  .home-light-preview .hero-media-stats {
    width: calc(100% - 54px);
    margin: -48px auto 0;
    gap: 1px;
    overflow: hidden;
    background: rgba(2, 178, 255, 0.25);
    border: 1px solid rgba(2, 178, 255, 0.32);
    border-radius: 12px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
  }

  .home-light-preview .hero-media-stats article {
    min-height: 88px;
    padding: 15px 16px;
    background: rgba(4, 20, 29, 0.94);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .home-light-preview .hero-media-stats article:hover {
    background: rgba(7, 35, 48, 0.98);
    box-shadow: none;
    transform: none;
  }
}

/* Four live service pages — homepage-aligned visual system */
.service-premium {
  --black: #f7fbfd;
  --panel: #ffffff;
  --white: #10232e;
  --text: rgba(16, 35, 46, 0.9);
  --muted: rgba(16, 35, 46, 0.66);
  --dim: rgba(16, 35, 46, 0.48);
  --line: rgba(16, 35, 46, 0.12);
  background: #f7fbfd;
  color: #10232e;
}

.service-premium .site-header,
.service-premium .site-header.is-scrolled {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.64);
}

.service-premium .page-main { background: #f7fbfd; }

.service-premium .btn-primary,
.service-premium .header-cta {
  color: #ffffff;
}

.service-premium .service-breadcrumbs {
  color: rgba(16, 35, 46, 0.62);
}

.service-premium .service-breadcrumbs a:hover { color: var(--accent); }

.service-premium .page-hero.service-page-hero {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  min-height: 590px;
  color: #ffffff;
}

.service-premium .service-page-hero::after {
  background:
    radial-gradient(circle at 78% 42%, rgba(2, 178, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(2, 12, 18, 0.96) 0%, rgba(4, 25, 35, 0.86) 48%, rgba(2, 13, 19, 0.42) 78%, rgba(1, 7, 10, 0.64)),
    linear-gradient(0deg, rgba(0, 5, 8, 0.86), transparent 50%, rgba(0, 5, 8, 0.5));
}

.service-premium .service-page-hero .page-hero-content {
  display: block;
}

.service-premium .service-page-hero .page-hero-copy {
  position: relative;
  max-width: 900px;
  padding-left: 24px;
}

.service-premium .service-page-hero .page-hero-copy::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(2, 178, 255, 0.04));
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(2, 178, 255, 0.3);
}

.service-premium .service-page-hero .eyebrow { color: #54caff; }

.service-premium .service-page-hero h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.service-premium .service-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.service-premium .service-page-hero .btn-outline {
  color: #ffffff;
  background: rgba(4, 22, 31, 0.34);
  border-color: rgba(255, 255, 255, 0.48);
}

.service-premium .service-page-hero .btn-outline:hover {
  color: #10232e;
  background: #ffffff;
  border-color: #ffffff;
}

.service-premium main > .section:not(.page-hero) {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.service-premium .section-heading { max-width: 820px; }
.service-premium .section-heading h2,
.service-premium .detail-panel h2,
.service-premium .service-faq h2 {
  color: #10232e;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.service-premium .section-heading .section-copy,
.service-premium .detail-panel .section-copy,
.service-premium .service-faq .section-copy { color: rgba(16, 35, 46, 0.66); }

.service-premium .service-directory-grid {
  gap: 22px;
  margin-top: 46px;
}

.service-premium .service-directory-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 61, 84, 0.1);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-premium .service-directory-card:hover {
  border-color: rgba(2, 178, 255, 0.48);
  box-shadow: 0 26px 62px rgba(18, 79, 108, 0.16);
  transform: translateY(-6px);
}

.service-premium .service-directory-card > img {
  filter: saturate(0.92) contrast(1.03);
  transition: transform 550ms ease, filter 550ms ease;
}

.service-premium .service-directory-card:hover > img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.service-premium .service-directory-card {
  grid-template-columns: minmax(240px, 43%) minmax(0, 1fr);
  min-height: 360px;
}

.service-premium .service-directory-card > img { min-height: 360px; }

.service-premium .service-directory-card > div {
  display: flex;
  min-width: 0;
  padding: clamp(26px, 2.3vw, 38px);
  flex-direction: column;
  justify-content: center;
}

.service-premium .service-directory-card h2 {
  max-width: 100%;
  margin: 10px 0 16px;
  color: #10232e;
  font-size: clamp(1.75rem, 2.15vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

.service-premium .service-directory-card p:not(.eyebrow) { color: rgba(16, 35, 46, 0.66); }

.service-premium .service-directory-card .btn {
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
}

.service-premium .detail-layout {
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.service-premium .detail-image {
  min-height: 500px;
  object-fit: cover;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(18, 61, 84, 0.15);
}

.service-premium .detail-panel {
  background: #ffffff;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 61, 84, 0.09);
}

.service-premium .detail-list li {
  color: rgba(16, 35, 46, 0.78);
  border-color: rgba(16, 35, 46, 0.1);
}

.service-premium .section.service-menu {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(2, 178, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #061822, #0b2634 55%, #050f16);
}

.service-premium .section.service-menu h2 { color: #ffffff; }
.service-premium .included-grid { gap: 18px; margin-top: 42px; }
.service-premium .included-card {
  min-height: 240px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.service-premium .included-card p { color: rgba(255, 255, 255, 0.64); }

.service-premium .service-faq {
  background: linear-gradient(180deg, #eef7fb, #f9fcfd);
}

.service-premium .service-faq .faq-grid {
  gap: clamp(44px, 7vw, 90px);
}

.service-premium .service-faq .faq-list { gap: 10px; }
.service-premium .service-faq .faq-list details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(18, 61, 84, 0.07);
}

.service-premium .service-faq summary { color: #10232e; }
.service-premium .service-faq details p { color: rgba(16, 35, 46, 0.66); }

.service-premium .detail-cta {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.68);
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 16%, rgba(2, 178, 255, 0.2), transparent 31%),
    linear-gradient(125deg, #061923, #0b2939 55%, #050f16);
}

.service-premium .detail-cta h2 { color: #ffffff; }
.service-premium main > .detail-cta > .container > h2 { color: #ffffff; }
.service-premium .detail-cta p:not(.eyebrow) { color: rgba(255, 255, 255, 0.68); }
.service-premium .detail-cta .btn-outline { color: #ffffff; border-color: rgba(255, 255, 255, 0.46); }

.service-premium .site-footer {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.64);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .service-premium .service-directory-grid { grid-template-columns: 1fr; }
  .service-premium .service-directory-card { grid-template-columns: minmax(260px, 38%) minmax(0, 1fr); }
  .service-premium .service-directory-card h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
}

@media (max-width: 760px) {
  .service-premium .service-page-hero { min-height: auto; }
  .service-premium .service-page-hero .page-hero-copy { padding-left: 16px; }
  .service-premium .service-page-hero h1 { font-size: clamp(2.5rem, 11vw, 3.25rem); }
  .service-premium main > .section:not(.page-hero) { padding-top: 56px; padding-bottom: 56px; }
  .service-premium .service-directory-grid { gap: 18px; margin-top: 32px; }
  .service-premium .service-directory-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .service-premium .service-directory-card > img { min-height: 220px; max-height: 250px; }
  .service-premium .service-directory-card > div { padding: 24px; }
  .service-premium .service-directory-card h2 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .service-premium .detail-image { min-height: 300px; }
  .service-premium .included-card { min-height: 0; padding: 24px; }
}

/* Expanded live-service page layouts */
.service-premium main > .section > .container > .eyebrow {
  margin-bottom: 12px;
}

.service-premium main > .section > .container > h2 {
  max-width: 1000px;
  color: #10232e;
  font-size: clamp(2.7rem, 4.3vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-premium .content-card-grid article {
  min-height: 190px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(18, 61, 84, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-premium .content-card-grid article:hover {
  border-color: rgba(2, 178, 255, 0.48);
  box-shadow: 0 22px 52px rgba(18, 79, 108, 0.14);
  transform: translateY(-6px);
}

.content-card-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(2, 178, 255, 0.42);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.content-card-grid h3 { color: #10232e; font-size: 1.16rem; }

.service-premium .service-included,
.service-premium .service-duration,
.service-premium .service-worth,
.service-premium .service-frequency,
.service-premium .service-prepare,
.service-premium .service-faq {
  background: #f7fbfd;
}

.service-premium .service-standard,
.service-premium .service-surfaces,
.service-premium .service-comparison,
.service-premium .service-mobile,
.service-premium .service-why {
  background: #edf6fa;
}

.service-premium .service-process,
.service-premium .service-issues,
.service-premium .service-work,
.service-premium .service-coverage {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(2, 178, 255, 0.15), transparent 30%),
    linear-gradient(135deg, #061822, #0b2634 55%, #050f16);
}

.service-premium .service-process h2,
.service-premium .service-issues h2,
.service-premium .service-work h2,
.service-premium .service-coverage h2 { color: #ffffff; }

.service-premium main > .service-process > .container > h2,
.service-premium main > .service-issues > .container h2,
.service-premium main > .service-work > .container > h2,
.service-premium main > .service-coverage > .container h2 {
  color: #ffffff;
}

.service-premium .service-process .process-grid { gap: 16px; margin-top: 40px; }
.service-premium .service-process .process-grid article {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}
.service-premium .service-process .process-grid p { color: rgba(255, 255, 255, 0.64); }

.service-premium .service-page-pricing {
  background:
    radial-gradient(circle at 10% 8%, rgba(2, 178, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #fafdff, #eaf5fa);
}

.service-premium .service-page-pricing .pricing-intro {
  max-width: 700px;
  margin: 14px 0 34px;
  color: rgba(16, 35, 46, 0.64);
  text-align: left;
}

.service-premium .service-page-pricing .pricing-grid {
  width: min(1100px, 100%);
  margin: 0;
  gap: 20px;
  align-items: stretch;
}

.service-premium .service-page-pricing .price-card {
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.66);
  display: flex;
  min-height: 390px;
  flex-direction: column;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 5%, rgba(2, 178, 255, 0.13), transparent 30%),
    linear-gradient(145deg, #102733, #07141c 62%, #040b0f);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(14, 48, 65, 0.2);
}

.service-premium .service-page-pricing .price-card.featured {
  min-height: 390px;
  border-color: rgba(2, 178, 255, 0.72);
  transform: translateY(-8px);
}

.service-premium .service-page-pricing .price-card h3 { color: #ffffff; }
.service-premium .service-page-pricing .price-card > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.66); }
.service-premium .service-page-pricing .price-card .btn { width: 100%; margin-top: auto; }

.editorial-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-premium .editorial-copy > h2 { margin-right: auto; margin-left: auto; }
.editorial-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(16, 35, 46, 0.68);
  font-size: 1.08rem;
  line-height: 1.78;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.editorial-split > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
  line-height: 1.78;
}

.service-premium .service-comparison .comparison-grid { align-items: center; }
.service-premium .service-comparison .compare-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 46, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(18, 61, 84, 0.1);
}

.service-work-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.service-premium .service-work-gallery button {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(2, 178, 255, 0.2);
  border-radius: 12px;
}

.service-premium .service-mobile .cta-grid { align-items: center; }
.service-premium .service-mobile .cta-grid > img {
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(18, 61, 84, 0.16);
}

.service-premium .service-prepare .prep-grid { align-items: center; }
.service-premium .service-prepare .prep-grid > img { min-height: 430px; object-fit: cover; border-radius: 16px; }
.service-premium .service-prepare li {
  background: #ffffff;
  border-color: rgba(16, 35, 46, 0.1);
  border-radius: 9px;
  color: rgba(16, 35, 46, 0.78);
  box-shadow: 0 8px 22px rgba(18, 61, 84, 0.06);
}

.service-premium .service-why .why-grid { gap: 16px; margin-top: 38px; }
.service-premium .service-why .why-grid article {
  min-height: 230px;
  background: #ffffff;
  border-color: rgba(16, 35, 46, 0.1);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(18, 61, 84, 0.08);
}

.service-premium .service-coverage .section-copy { color: rgba(255, 255, 255, 0.65); }
.service-premium .service-coverage .coverage-list span {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.service-premium .service-coverage .coverage-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  flex: 0 0 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 178, 255, 0.1);
}

@media (max-width: 980px) {
  .content-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-split { grid-template-columns: 1fr; gap: 24px; }
  .service-work-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .service-premium main > .section > .container > h2 { font-size: clamp(2.25rem, 10vw, 3.1rem); }
  .content-card-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .service-premium .content-card-grid article { min-height: 0; padding: 24px; }
  .service-premium .service-page-pricing .price-card,
  .service-premium .service-page-pricing .price-card.featured { min-height: 0; transform: none; }
  .service-work-gallery { grid-template-columns: 1fr; }
  .service-premium .service-work-gallery button { min-height: 260px; }
  .service-premium .service-mobile .cta-grid > img,
  .service-premium .service-prepare .prep-grid > img { min-height: 280px; }
  .service-premium .service-why .why-grid article { min-height: 0; }
  .service-premium .service-coverage .coverage-list { grid-template-columns: 1fr 1fr; }
}

/* Dark-section contrast must remain last in the cascade. */
.service-premium main > .detail-cta > .container > h2,
.service-premium main > .service-process > .container > h2,
.service-premium main > .service-issues > .container h2,
.service-premium main > .service-work > .container > h2,
.service-premium main > .service-coverage > .container h2,
.service-premium .detail-cta h3,
.service-premium .service-process h3,
.service-premium .service-issues h3,
.service-premium .service-work h3,
.service-premium .service-coverage h3,
.service-premium .service-page-pricing .price-card h3 {
  color: #ffffff;
}

.service-premium .detail-cta p:not(.eyebrow),
.service-premium .service-process p:not(.eyebrow),
.service-premium .service-issues p:not(.eyebrow),
.service-premium .service-work p:not(.eyebrow),
.service-premium .service-coverage p:not(.eyebrow),
.service-premium .service-page-pricing .price-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-premium .detail-cta .btn,
.service-premium .service-page-pricing .price-card .btn {
  color: #ffffff;
}

/* Membership component shared by the homepage and live service pages. */
.service-premium .service-memberships {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(2, 178, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #071722 0%, #0d2635 52%, #07131c 100%);
}

.service-premium .service-memberships::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, 0.035) 64% 65%, transparent 65%);
}

.service-premium .service-memberships .container { position: relative; z-index: 1; }
.service-premium main > .service-memberships > .container h2 { color: #ffffff; }
.service-premium .service-memberships .membership-heading .section-copy {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.service-premium .service-memberships .price-card {
  color: #ffffff;
  background: rgba(9, 25, 35, 0.72);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.service-premium .service-memberships .price-card.featured {
  background: linear-gradient(150deg, rgba(14, 45, 61, 0.94), rgba(7, 23, 34, 0.96));
  border-color: #02b2ff;
  box-shadow: 0 24px 65px rgba(2, 178, 255, 0.16);
}

.service-premium .service-memberships .price-card p:not(.eyebrow),
.service-premium .service-memberships .membership-benefits,
.service-premium .service-memberships .membership-terms p { color: rgba(255, 255, 255, 0.72); }
.service-premium .service-memberships .membership-terms {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}
.service-premium .service-memberships .btn { color: #ffffff; }

.service-premium .service-page-pricing .membership-heading { text-align: center; }
.service-premium .service-page-pricing .membership-heading h2 { margin-right: auto; margin-left: auto; }
.service-premium .service-page-pricing .pricing-intro { margin: 14px auto 34px; text-align: center; }
.service-premium .service-package-grid .price-card { min-height: 440px; }

.service-premium .service-page-pricing .service-package-grid {
  margin-right: auto;
  margin-left: auto;
}
