:root {
  --accent-red: #e10e22;
  --dark: #11131a;
  --ink: #1d2129;
  --bg: #f5f5f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: #ececef;
  color: var(--ink);
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f6 100%);
  border: 0;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  padding: 14px 34px;
  border-bottom: 1px solid rgba(18, 23, 33, 0.08);
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(17, 19, 26, 0.08);
}

.topbar-brand {
  justify-self: stretch;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: min(20px, 2vw);
  min-width: 0;
}

.topbar-actions {
  justify-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding-left: min(20px, 2vw);
  min-width: 0;
}

.logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(16, 18, 24, 0.16));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  background: rgba(248, 249, 251, 0.92);
  border: 1px solid rgba(20, 24, 33, 0.08);
  border-radius: 999px;
  padding: 8px;
  max-width: min(100vw - 240px, 720px);
  flex-wrap: nowrap;
}

.main-nav a {
  text-decoration: none;
  color: #20252f;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: var(--accent-red);
  box-shadow: 0 8px 16px rgba(205, 0, 18, 0.24);
}

.main-nav a.active {
  position: relative;
  color: #ffffff !important;
  background: #11131a !important;
  box-shadow: 0 8px 16px rgba(17, 19, 26, 0.28) !important;
}

.main-nav a.active:hover {
  color: #ffffff !important;
  background: #11131a !important;
}

.main-nav a.active::after {
  display: none;
}

.main-nav .book-btn,
.main-nav .membership-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.main-nav .book-btn i,
.main-nav .membership-btn i {
  font-size: 15px;
  line-height: 1;
}

.book-btn {
  padding: 10px 18px !important;
  background: linear-gradient(180deg, #e2c766 0%, #c9a227 55%, #b8941f 100%);
  color: #2a2208 !important;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(168, 132, 28, 0.4);
}

.book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(168, 132, 28, 0.48) !important;
  background: linear-gradient(180deg, #ebd47a 0%, #d4ad2f 55%, #c9a227 100%) !important;
  color: #2a2208 !important;
}

.main-nav a.book-btn.active,
.main-nav a.book-btn.active:hover {
  color: #2a2208 !important;
  background: linear-gradient(180deg, #ebd47a 0%, #c9a227 55%, #a68b1b 100%) !important;
  box-shadow: 0 10px 22px rgba(168, 132, 28, 0.5) !important;
}

.membership-btn {
  padding: 10px 20px !important;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(205, 0, 18, 0.3);
}

.membership-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(205, 0, 18, 0.36) !important;
  background: linear-gradient(180deg, #ff4b59 0%, #d30016 100%) !important;
  color: #fff !important;
}

.main-nav a.membership-btn.active,
.main-nav a.membership-btn.active:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%) !important;
  box-shadow: 0 10px 22px rgba(205, 0, 18, 0.38) !important;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #121722;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.14);
  box-shadow: 0 8px 16px rgba(17, 19, 26, 0.1);
  animation: phoneFloat 2.2s ease-in-out infinite;
}

.header-phone i {
  color: var(--accent-red);
  animation: phoneRing 1.4s ease-in-out infinite;
  transform-origin: 70% 30%;
}

.header-phone:hover {
  background: #11131a;
  color: #ffffff;
}

.header-phone:hover i {
  color: #ff5a67;
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 19, 26, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #11131a;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(17, 19, 26, 0.12);
  transition: all 0.25s ease;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-12deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  80% {
    transform: rotate(5deg);
  }
}

.theme-toggle:hover {
  background: #11131a;
  color: #ffffff;
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 19, 26, 0.18);
  border-radius: 12px;
  background: #ffffff;
  color: #11131a;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(17, 19, 26, 0.1);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-menu-toggle:hover {
  background: #11131a;
  color: #ffffff;
  border-color: rgba(17, 19, 26, 0.35);
}

.nav-menu-toggle-inner {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 0 -6px 0 0 currentColor, 0 6px 0 0 currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 630px;
  margin: 0 0 22px;
  overflow: hidden;
  background: url("assets/img/Cover Hero.png") center center / 100% auto no-repeat;
  clip-path: ellipse(125% 100% at 50% 0%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.86) 28%, rgba(255, 255, 255, 0.2) 54%, rgba(255, 255, 255, 0) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 52px;
  background: linear-gradient(to bottom, rgba(244, 244, 246, 0) 0%, rgba(244, 244, 246, 0.96) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-rain-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.78;
}

.hero-copy {
  padding: 26px 30px 26px 56px;
  margin-left: 58px;
  position: relative;
  z-index: 5;
  width: min(46%, 560px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 34px rgba(17, 19, 26, 0.14);
  overflow: hidden;
}

.hero-copy::before {
  content: none;
}

.hero-copy::after {
  content: none;
}

.site-main {
  position: relative;
  background:
    radial-gradient(circle at 25% 20%, rgba(179, 223, 245, 0.2) 0, rgba(179, 223, 245, 0) 34%),
    radial-gradient(circle at 80% 65%, rgba(215, 236, 248, 0.24) 0, rgba(215, 236, 248, 0) 30%),
    repeating-linear-gradient(
      45deg,
      rgba(180, 206, 224, 0.08) 0px,
      rgba(180, 206, 224, 0.08) 2px,
      transparent 2px,
      transparent 22px
    ),
    linear-gradient(180deg, #f8fbfe 0%, #f2f6fa 45%, #eef3f8 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(225, 14, 34, 0.15);
  color: #121722;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.hero-kicker i {
  color: var(--accent-red);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.4px;
  font-weight: 900;
  color: #171a23;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.45);
}

.hero h1 span,
.difference h2 span {
  color: var(--accent-red);
}

.hero p {
  font-size: 31px;
  margin: 0 0 16px;
  color: #2c3038;
  font-weight: 600;
}

.hero-btn {
  box-shadow: 0 14px 24px rgba(205, 0, 18, 0.34);
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-offer {
  margin: 10px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, rgba(225, 14, 34, 0.95), rgba(255, 70, 87, 0.92));
  border-radius: 999px;
  padding: 7px 12px;
  box-shadow: 0 10px 22px rgba(225, 14, 34, 0.28);
}

.hero-offer i {
  font-size: 13px;
}

.hero-pills {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #1a2030;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 24, 33, 0.12);
}

.hero-pills i {
  color: var(--accent-red);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 14px 24px rgba(205, 0, 18, 0.34);
  }
  50% {
    box-shadow: 0 18px 32px rgba(205, 0, 18, 0.48);
  }
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f53f4e 0%, #cc0012 100%);
  color: #fff;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 31px;
  letter-spacing: 0.3px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 200px;
  padding: 16px 16px 14px;
  border-top: 1px solid #e7e7ea;
  border-bottom: 1px solid #e7e7ea;
  background: transparent;
}

.trust-row div {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
  padding: 16px 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 253, 0.88) 100%);
  border: 1px solid rgba(146, 181, 204, 0.24);
  box-shadow: 0 12px 28px rgba(15, 32, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-row div:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 32, 46, 0.14);
}

.trust-row i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 2px;
  background: linear-gradient(180deg, #ff4b5a 0%, #cc0012 100%);
  box-shadow: 0 10px 20px rgba(204, 0, 18, 0.28);
}

.trust-title {
  display: block;
  font-size: 25px;
  font-weight: 800;
  color: #18202e;
}

.trust-sub {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #516073;
}

.member-portal-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 43px 16px 72px;
  border-top: 1px solid #e7e7ea;
  border-bottom: 1px solid #e7e7ea;
}

.member-portal-frame {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 24, 33, 0.1);
  box-shadow: 0 12px 28px rgba(15, 32, 46, 0.08);
}

.member-portal-iframe {
  display: block;
  width: 100%;
  min-height: 1080px;
  border: 0;
  vertical-align: top;
}

.plans-section {
  padding: 30px 200px 36px;
}

.billing-toggle {
  margin: 0 auto 20px;
  width: fit-content;
  max-width: min(100%, 720px);
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: #e7e7e7;
  border: 1px solid #d6d6d6;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.billing-toggle button {
  border: 0;
  background: transparent;
  color: #21252d;
  font-size: clamp(13px, 2.1vw, 16px);
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
  max-width: 100%;
}

.billing-toggle button.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 18, 24, 0.12);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px;
  min-height: 470px;
  box-shadow: 0 4px 10px rgba(15, 20, 30, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 20, 30, 0.12);
}

.plan-head {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #181c23;
  margin-bottom: 2px;
  line-height: 1.2;
}

.plan-sub {
  margin: 0 0 14px;
  font-size: 16px;
  color: #666a72;
  font-weight: 500;
}

.plan-price {
  font-size: 38px;
  font-weight: 800;
  color: #141921;
  margin-bottom: 14px;
  line-height: 1;
}

.plan-price span {
  font-size: 19px;
  font-weight: 700;
  color: #1f2631;
}

.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.plan-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #20242c;
  font-weight: 600;
}

.plan-card li::before {
  content: "\2699";
  position: absolute;
  left: 0;
  top: -1px;
  color: #7e8792;
  font-size: 15px;
  font-weight: 700;
}

.plan-card li.has-custom-icon::before {
  content: none;
}

.plan-card li.has-custom-icon i {
  position: absolute;
  left: 4px;
  top: 2px;
  color: #7e8792;
  font-size: 15px;
}

.plan-card li.plan-highlight-note {
  padding-left: 0;
  margin-top: 4px;
  margin-bottom: 0;
  font-weight: 700;
  color: #141921;
  background: #f1f5f9;
  border-left: 3px solid #111318;
  border-radius: 6px;
  padding: 6px 10px;
}

.plan-card li.plan-highlight-note::before {
  content: none;
}

.plan-extra-note {
  margin-top: 8px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f6f8fb;
  border: 1px solid #e2e7ee;
}

.plan-extra-note p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #20242c;
  font-weight: 600;
}

.plan-extra-note p i {
  width: 16px;
  margin-right: 6px;
  color: #5a6472;
}

.plan-extra-note p:last-child {
  margin-bottom: 0;
}

.plan-extra-note .perk-label {
  margin-top: 4px;
  letter-spacing: 0.03em;
  color: #111318;
  font-weight: 800;
}

.plan-extra-note .value-line {
  color: #111318;
  font-weight: 800;
}

.vip-extra-note {
  margin-top: 8px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f4f8f4;
  border: 1px solid #dce9dc;
}

.vip-extra-note p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #20242c;
  font-weight: 600;
}

.vip-extra-note p:last-child {
  margin-bottom: 0;
}

.vip-extra-note .value-line {
  color: #111318;
  font-weight: 800;
}

.about-hero {
  margin: 0;
  max-width: none;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  color: #17202d;
}

.about-hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f4158;
  opacity: 0.92;
}

.about-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.about-hero h1 span {
  color: var(--accent-red);
}

.about-hero h1 .about-hero-line-top {
  color: #22364d;
  font-size: 0.74em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-hero h1 span:not(.about-hero-line-top) {
  display: block;
}

.about-hero-sub {
  margin: 0;
  max-width: 880px;
  font-size: clamp(17px, 1.9vw, 20px);
  color: #344a62;
  line-height: 1.5;
  font-weight: 500;
}

.about-section,
.about-cta {
  max-width: 1180px;
  margin: 0 auto 14px;
  padding: 22px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(19, 24, 36, 0.08);
  box-shadow: 0 8px 20px rgba(15, 20, 30, 0.08);
}

.about-section h2,
.about-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  color: #141921;
}

.about-section p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.65;
  color: #283141;
}

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

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

.about-value-card,
.about-stat-card {
  background: #f7f9fc;
  border: 1px solid #e1e8f2;
  border-radius: 14px;
  padding: 14px 16px;
}

.about-value-card h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 2.2vw, 24px);
  color: #171d28;
  letter-spacing: -0.01em;
}

.about-value-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #334156;
}

.about-section > h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-section > h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e10e22 0%, #ff6674 100%);
  opacity: 0.9;
}

.about-value-card {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(20, 30, 44, 0.12);
  background: linear-gradient(165deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 10px 24px rgba(17, 24, 35, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #e10e22 0%, #ff6c79 100%);
  opacity: 0.9;
}

.about-value-card h3 i[aria-hidden="true"] {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  color: #c50d20;
  background: rgba(225, 14, 34, 0.06);
  border: 1px solid rgba(225, 14, 34, 0.14);
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 14, 34, 0.28);
  box-shadow: 0 18px 34px rgba(17, 24, 35, 0.14);
}

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-stat-icon {
  font-size: 24px;
}

.about-stat-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1b2331;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-main {
  padding-bottom: 8px;
}

.about-hero-advanced {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(95deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.68) 70%, rgba(255, 255, 255, 0.56) 100%),
    url("assets/img/Gallery/cover images/car wash with vacuum near me.jpg") center center / cover no-repeat;
  border-top: 1px solid rgba(18, 23, 33, 0.08);
  border-bottom: 1px solid rgba(18, 23, 33, 0.1);
  box-shadow: 0 10px 26px rgba(17, 19, 26, 0.08);
}

.about-hero-advanced::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 248, 251, 0.92) 100%);
  z-index: 0;
  pointer-events: none;
}

.about-hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
  z-index: 0;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  align-items: stretch;
  gap: clamp(16px, 2vw, 26px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.2vw, 24px);
}

.about-hero-grid > div:first-child {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.34) 100%);
  box-shadow: 0 14px 30px rgba(17, 19, 26, 0.14);
  backdrop-filter: blur(10px);
}

.about-hero-kicker i {
  margin-right: 6px;
  color: var(--accent-red);
}

.about-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-hero-advanced .btn-primary,
.about-hero-advanced .plan-btn {
  min-width: 190px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 0;
}

.about-hero-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.36) 100%);
  box-shadow: 0 14px 28px rgba(17, 19, 26, 0.16);
  backdrop-filter: blur(10px);
}

.about-hero-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: #122033;
}

.about-hero-panel-row:last-child {
  border-bottom: 0;
}

.about-hero-panel-row span {
  font-size: 15px;
  color: #233850;
}

.about-hero-panel-row strong {
  font-size: 21px;
  color: #0f1a2a;
}

.about-story-wrap {
  max-width: 1180px;
  margin: 0 auto 14px;
  display: grid;
  gap: 14px;
}

.about-story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 12px;
}

.about-story-card {
  background: #ffffff;
  border: 1px solid rgba(19, 24, 36, 0.08);
  box-shadow: 0 8px 20px rgba(15, 20, 30, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
}

.about-story-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d5f78;
}

.about-story-card-main {
  background: linear-gradient(155deg, #ffffff 0%, #f5f9ff 62%, #ecf3fd 100%);
  border-color: rgba(86, 117, 153, 0.24);
  box-shadow: 0 18px 34px rgba(18, 31, 48, 0.14);
}

.about-story-card-main h2 {
  margin: 0 0 12px;
}

.about-story-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(19, 24, 36, 0.12);
  box-shadow: 0 16px 30px rgba(17, 24, 35, 0.16);
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-card-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(125deg, #5c000c 0%, #8a0612 22%, #c5091a 52%, #a00815 88%, #6d040e 100%);
  box-shadow: 0 20px 42px rgba(17, 24, 35, 0.18), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
}

.about-story-card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -30%, rgba(255, 255, 255, 0.16) 0%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.about-story-card-cta > * {
  position: relative;
  z-index: 1;
}

.about-story-card-cta .about-story-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.about-story-card-cta h2,
.about-story-card-cta p,
.about-story-card-cta .about-proof-list li {
  color: #ffffff;
}

.about-story-card-cta > p {
  margin: 0 0 16px;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.about-story-subheading {
  display: block;
  margin: 0 0 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: #ffffff;
}

.about-story-subtext {
  display: block;
  margin: 0 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: #ffffff;
}

.about-story-card-cta .about-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.about-story-card-cta .about-proof-list li {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.about-story-card-cta .about-proof-list li i {
  color: #b8ffd9;
  margin-top: 0;
}

.about-proof-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.about-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #243043;
  font-weight: 600;
}

.about-proof-list li i {
  color: #17915b;
  margin-top: 2px;
}

.about-value-card,
.about-stat-card,
.about-story-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-value-card:hover,
.about-stat-card:hover,
.about-story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 20, 30, 0.12);
}

.about-team-band {
  background: linear-gradient(135deg, #f4f7fc 0%, #edf2fa 100%);
}

.about-team-stats {
  background: linear-gradient(145deg, #f6f9ff 0%, #edf3fc 58%, #e8effa 100%);
  border-color: rgba(76, 103, 136, 0.2);
  box-shadow: 0 14px 30px rgba(16, 28, 44, 0.1);
}

.about-team-stats-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-team-stats-head h2 {
  margin-bottom: 8px;
}

.about-team-stats-head p {
  margin: 0;
}

.about-team-stats-strip {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(76, 103, 136, 0.2);
}

.about-team-stats-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5d78;
}

.about-team-stats .about-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.about-team-stats .about-stat-card {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border: 1px solid rgba(76, 103, 136, 0.18);
  box-shadow: 0 8px 18px rgba(17, 24, 35, 0.08);
}

.about-team-stats .about-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 14, 34, 0.08);
  color: #c40d1f;
  font-size: 14px;
}

.about-team-cta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(76, 103, 136, 0.2);
  text-align: center;
}

.about-team-cta .about-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.about-team-cta .about-cta-actions .btn-primary,
.about-team-cta .about-cta-actions .plan-btn {
  min-width: 190px;
  min-height: 52px;
  padding: 0 22px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.about-team-cta .about-cta-actions .btn-primary {
  background: linear-gradient(180deg, #ff5a68 0%, #cf0c20 100%);
  box-shadow: 0 12px 24px rgba(205, 12, 32, 0.34);
}

.about-team-cta .about-cta-actions .plan-btn {
  background: #121924;
  box-shadow: 0 12px 24px rgba(12, 18, 28, 0.24);
}

.about-team-cta .about-cta-actions .btn-primary:hover,
.about-team-cta .about-cta-actions .plan-btn:hover {
  transform: translateY(-2px);
}

.about-team-cta .about-cta-actions .btn-primary:hover {
  box-shadow: 0 16px 30px rgba(205, 12, 32, 0.42);
}

.about-team-cta .about-cta-actions .plan-btn:hover {
  box-shadow: 0 16px 30px rgba(12, 18, 28, 0.36);
}

.contact-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 16px;
}

.contact-hero,
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(19, 24, 36, 0.08);
  box-shadow: 0 10px 24px rgba(15, 20, 30, 0.08);
  border-radius: 18px;
  margin: 0 0 14px;
}

.contact-hero {
  padding: 26px 30px;
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #f5f8ff 60%, #ecf3fd 100%);
}

.contact-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3c4e66;
}

.contact-kicker i {
  color: var(--accent-red);
  margin-right: 6px;
}

.contact-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: #141b28;
}

.contact-sub {
  margin: 0;
  font-size: 19px;
  color: #3a485d;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #151d2a;
}

.contact-muted {
  margin: 0 0 14px;
  color: #4b5a70;
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3b4b62;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 24, 36, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #162132;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(225, 14, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.12);
}

.contact-btn-primary {
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  box-shadow: 0 12px 24px rgba(205, 0, 18, 0.3);
  cursor: pointer;
}

.contact-info-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #28374c;
}

.contact-info-list li i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(225, 14, 34, 0.08);
  border: 1px solid rgba(225, 14, 34, 0.16);
  color: #c20d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list li span {
  display: grid;
  gap: 2px;
}

.contact-info-list li strong {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #51637d;
}

.contact-info-list a {
  color: #151d2a;
  text-decoration: none;
  font-weight: 700;
}

.contact-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(19, 24, 36, 0.12);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

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

.contact-faq details {
  border: 1px solid rgba(19, 24, 36, 0.12);
  border-radius: 12px;
  background: #f8fbff;
  padding: 12px 14px;
}

.contact-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #1d2a3c;
}

.contact-faq p {
  margin: 8px 0 0;
  color: #44566f;
  line-height: 1.5;
}

.legal-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 16px;
}

.legal-hero,
.legal-card {
  margin: 0 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(19, 24, 36, 0.08);
  box-shadow: 0 10px 24px rgba(15, 20, 30, 0.08);
  background: #fff;
}

.legal-hero {
  padding: 24px 30px;
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #f5f8ff 62%, #ecf3fd 100%);
}

.legal-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #445975;
}

.legal-kicker i {
  color: var(--accent-red);
  margin-right: 6px;
}

.legal-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  color: #141b28;
}

.legal-hero p {
  margin: 0;
  color: #4b5c73;
  font-size: 16px;
  font-weight: 600;
}

.legal-card {
  padding: 18px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
  border-color: rgba(76, 103, 136, 0.2);
  box-shadow: 0 14px 30px rgba(16, 28, 44, 0.1);
}

.legal-card h2 {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 27px);
  color: #182131;
  background: #ffffff;
  border: 1px solid rgba(76, 103, 136, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(17, 24, 35, 0.07);
}

.legal-card p,
.legal-card li {
  color: #34465d;
  font-size: 16px;
  line-height: 1.65;
}

.legal-card p,
.legal-card ul {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(76, 103, 136, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.legal-card ul {
  padding-left: 30px;
}

.legal-card a {
  color: #b00f22;
  font-weight: 700;
}

.about-cta-advanced {
  text-align: center;
}

.about-cta-advanced p {
  margin: 0 0 12px;
  font-size: 19px;
  color: #2b3446;
}

.about-cta-advanced .about-cta-actions {
  justify-content: center;
}

.about-photo-scroll {
  max-width: none;
  margin: 0 0 14px;
  padding: 0;
}

.about-photo-scroll-head {
  padding: 0 28px 8px;
}

.about-photo-scroll-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: #141921;
}

.about-photo-scroll-head p {
  margin: 4px 0 0;
  color: #495569;
  font-size: 17px;
  font-weight: 600;
}

.about-photo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

.about-photo-marquee::before,
.about-photo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 4.5vw, 70px);
  z-index: 3;
  pointer-events: none;
}

.about-photo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(241, 246, 252, 1) 0%, rgba(241, 246, 252, 0) 100%);
}

.about-photo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241, 246, 252, 1) 0%, rgba(241, 246, 252, 0) 100%);
}

.about-main .about-hero + .about-photo-scroll {
  margin-top: 0;
}

.about-photo-track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 10px 0;
  animation: aboutPhotoMarquee 52s linear infinite;
  will-change: transform;
}

.about-photo-marquee:hover .about-photo-track {
  animation-play-state: paused;
}

.about-photo-card {
  margin: 0;
  width: 382px;
  height: 510px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 35, 0.12);
  box-shadow: 0 12px 26px rgba(17, 23, 34, 0.14);
  background: #f2f4f7;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-photo-card:nth-child(odd) {
  transform: translateY(-4px);
}

.about-photo-card:nth-child(even) {
  transform: translateY(4px);
}

.about-photo-card:hover {
  transform: translateY(0) scale(1.02);
  border-color: rgba(225, 14, 34, 0.34);
  box-shadow: 0 18px 34px rgba(17, 23, 34, 0.2);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.about-photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.about-photo-nav {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.about-photo-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(20, 24, 33, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #162132;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(17, 23, 34, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.about-photo-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 23, 34, 0.18);
}

body.image-preview-open {
  overflow: hidden;
}

.image-preview-modal[hidden] {
  display: none !important;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: 22px;
}

.image-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(10, 15, 24, 0.76);
  cursor: pointer;
}

.image-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background: #0d1420;
}

.image-preview-dialog img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 44px);
  display: block;
  object-fit: contain;
  background: #0d1420;
}

.image-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.image-preview-close:hover {
  background: rgba(225, 14, 34, 0.8);
}


@keyframes aboutPhotoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

@media (min-width: 992px) {
  .about-photo-card {
    width: calc((100vw - 56px) / 6);
    height: 251px;
  }
}

body.dark-mode .about-hero {
  background: linear-gradient(135deg, #0f141e 0%, #1b2535 100%);
  color: #edf4ff;
}

body.dark-mode .about-hero-advanced {
  background:
    linear-gradient(108deg, rgba(4, 8, 14, 0.96) 0%, rgba(5, 10, 16, 0.88) 42%, rgba(6, 12, 19, 0.72) 68%, rgba(7, 13, 21, 0.58) 100%),
    url("assets/img/Gallery/cover images/car wash with vacuum near me.jpg") center 38% / cover no-repeat;
}

body.dark-mode .about-hero-layer {
  background:
    radial-gradient(circle at 20% 20%, rgba(13, 24, 38, 0.52) 0%, rgba(13, 24, 38, 0.12) 48%, rgba(13, 24, 38, 0) 68%),
    linear-gradient(90deg, rgba(6, 12, 20, 0.64) 0%, rgba(6, 12, 20, 0.22) 58%, rgba(6, 12, 20, 0.08) 100%);
  backdrop-filter: blur(6px);
}

body.dark-mode .about-hero-kicker {
  color: #b7cde8;
  opacity: 0.94;
}

body.dark-mode .about-hero-sub {
  color: #d1e1f5;
}

body.dark-mode .about-hero h1 .about-hero-line-top {
  color: #dbe9fb;
}

body.dark-mode .about-hero-grid > div:first-child {
  border-color: rgba(196, 216, 239, 0.32);
  background: linear-gradient(180deg, rgba(18, 29, 45, 0.62) 0%, rgba(18, 29, 45, 0.42) 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42);
}

body.dark-mode .about-section,
body.dark-mode .about-cta {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.98) 0%, rgba(19, 25, 37, 0.96) 100%);
  border-color: rgba(140, 178, 201, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about-section h2,
body.dark-mode .about-cta h2 {
  color: #edf3ff;
}

body.dark-mode .about-section p {
  color: #c5d4e8;
}

body.dark-mode .about-value-card,
body.dark-mode .about-stat-card {
  background: rgba(57, 70, 90, 0.32);
  border-color: rgba(159, 177, 201, 0.28);
}

body.dark-mode .about-section > h2::after {
  background: linear-gradient(90deg, #ff5a68 0%, #ff8f9a 100%);
}

body.dark-mode .about-value-card {
  background: linear-gradient(165deg, rgba(28, 37, 53, 0.96) 0%, rgba(21, 29, 42, 0.94) 100%);
  border-color: rgba(159, 177, 201, 0.26);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

body.dark-mode .about-value-card::before {
  background: linear-gradient(180deg, #ff6674 0%, #ff9ba4 100%);
}

body.dark-mode .about-value-card h3 {
  color: #edf3ff;
}

body.dark-mode .about-value-card p {
  color: #c5d6ea;
}

body.dark-mode .about-value-card h3 i[aria-hidden="true"] {
  color: #ff8d99;
  background: rgba(255, 102, 116, 0.1);
  border-color: rgba(255, 143, 154, 0.26);
}

body.dark-mode .about-story-card {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.98) 0%, rgba(19, 25, 37, 0.96) 100%);
  border-color: rgba(140, 178, 201, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about-story-card-main {
  background: linear-gradient(165deg, rgba(24, 34, 49, 0.98) 0%, rgba(20, 29, 43, 0.96) 100%);
  border-color: rgba(159, 177, 201, 0.26);
}

body.dark-mode .about-story-visual {
  border-color: rgba(159, 177, 201, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
}

body.dark-mode .about-story-kicker {
  color: #a9bed8;
}

body.dark-mode .about-proof-list li {
  color: #c8d7ea;
}

body.dark-mode .about-proof-list li i {
  color: #6ee0ab;
}

body.dark-mode .about-hero-panel {
  border-color: rgba(196, 216, 239, 0.32);
  background: linear-gradient(180deg, rgba(18, 29, 45, 0.62) 0%, rgba(18, 29, 45, 0.42) 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .about-hero-panel-row {
  border-bottom-color: rgba(196, 216, 239, 0.24);
}

body.dark-mode .about-hero-panel-row span {
  color: #c8dbf2;
}

body.dark-mode .about-hero-panel-row strong {
  color: #f4f8ff;
}

body.dark-mode .about-team-band {
  background: linear-gradient(135deg, rgba(34, 46, 66, 0.9) 0%, rgba(27, 36, 52, 0.92) 100%);
}

body.dark-mode .about-team-stats {
  background: linear-gradient(145deg, rgba(23, 31, 45, 0.98) 0%, rgba(19, 27, 39, 0.96) 100%);
  border-color: rgba(159, 177, 201, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

body.dark-mode .about-team-stats-strip {
  background: rgba(20, 28, 40, 0.78);
  border-color: rgba(159, 177, 201, 0.24);
}

body.dark-mode .about-team-stats-label {
  color: #a9bed8;
}

body.dark-mode .about-team-stats .about-stat-card {
  background: linear-gradient(180deg, rgba(30, 40, 56, 0.96) 0%, rgba(24, 32, 46, 0.94) 100%);
  border-color: rgba(159, 177, 201, 0.24);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.38);
}

body.dark-mode .about-team-stats .about-stat-icon {
  background: rgba(255, 102, 116, 0.12);
  color: #ff8d99;
}

body.dark-mode .about-team-cta {
  border-top-color: rgba(159, 177, 201, 0.24);
}

body.dark-mode .about-team-cta .about-cta-actions .plan-btn {
  background: #0b1018;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

body.dark-mode .contact-hero,
body.dark-mode .contact-card {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.98) 0%, rgba(19, 25, 37, 0.96) 100%);
  border-color: rgba(140, 178, 201, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

body.dark-mode .contact-hero {
  background: linear-gradient(155deg, rgba(26, 35, 50, 0.98) 0%, rgba(20, 28, 41, 0.96) 100%);
}

body.dark-mode .contact-kicker {
  color: #b6cae3;
}

body.dark-mode .contact-hero h1 {
  color: #edf3ff;
}

body.dark-mode .contact-sub,
body.dark-mode .contact-muted,
body.dark-mode .contact-faq p {
  color: #c5d6ea;
}

body.dark-mode .contact-card h2,
body.dark-mode .contact-faq summary,
body.dark-mode .contact-info-list a {
  color: #edf3ff;
}

body.dark-mode .contact-form label span,
body.dark-mode .contact-info-list li strong {
  color: #a9bed8;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
  border-color: rgba(159, 177, 201, 0.24);
  background: rgba(16, 22, 33, 0.92);
  color: #e7efff;
}

body.dark-mode .contact-info-list li {
  color: #c5d6ea;
}

body.dark-mode .contact-info-list li i {
  background: rgba(255, 102, 116, 0.12);
  border-color: rgba(255, 143, 154, 0.26);
  color: #ff8d99;
}

body.dark-mode .contact-map-wrap,
body.dark-mode .contact-faq details {
  border-color: rgba(159, 177, 201, 0.24);
}

body.dark-mode .contact-faq details {
  background: rgba(25, 34, 49, 0.9);
}

body.dark-mode .legal-hero,
body.dark-mode .legal-card {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.98) 0%, rgba(19, 25, 37, 0.96) 100%);
  border-color: rgba(140, 178, 201, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

body.dark-mode .legal-hero {
  background: linear-gradient(155deg, rgba(26, 35, 50, 0.98) 0%, rgba(20, 28, 41, 0.96) 100%);
}

body.dark-mode .legal-kicker {
  color: #b5c9e4;
}

body.dark-mode .legal-hero h1,
body.dark-mode .legal-card h2 {
  color: #edf3ff;
}

body.dark-mode .legal-hero p,
body.dark-mode .legal-card p,
body.dark-mode .legal-card li {
  color: #c5d6ea;
}

body.dark-mode .legal-card a {
  color: #ff8d99;
}

body.dark-mode .legal-card h2 {
  background: rgba(22, 31, 45, 0.94);
  border-color: rgba(159, 177, 201, 0.26);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
}

body.dark-mode .legal-card p,
body.dark-mode .legal-card ul {
  background: rgba(24, 33, 47, 0.9);
  border-color: rgba(159, 177, 201, 0.22);
}

body.dark-mode .about-cta-advanced p {
  color: #c3d3e8;
}

body.dark-mode .about-photo-scroll-head h2 {
  color: #edf3ff;
}

body.dark-mode .about-photo-scroll-head p {
  color: #aebfd7;
}

body.dark-mode .about-photo-card {
  border-color: rgba(159, 177, 201, 0.28);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

body.dark-mode .about-photo-marquee {
  background: linear-gradient(180deg, #131b28 0%, #101723 100%);
}

body.dark-mode .about-photo-marquee::before {
  background: linear-gradient(90deg, rgba(17, 24, 35, 1) 0%, rgba(17, 24, 35, 0) 100%);
}

body.dark-mode .about-photo-marquee::after {
  background: linear-gradient(270deg, rgba(17, 24, 35, 1) 0%, rgba(17, 24, 35, 0) 100%);
}

body.dark-mode .about-photo-card {
  border-color: rgba(170, 190, 214, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  background: #182233;
}

body.dark-mode .about-photo-card:hover {
  border-color: rgba(255, 118, 132, 0.58);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.52);
}

body.dark-mode .about-photo-nav-btn {
  background: #1a2435;
  color: #e7efff;
  border-color: rgba(159, 177, 201, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}


body.dark-mode .about-value-card h3,
body.dark-mode .about-stat-card p {
  color: #edf3ff;
}

.plan-btn {
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: #111318;
  padding: 12px 12px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.24s ease, filter 0.24s ease, background-color 0.24s ease;
}

.plan-btn i {
  font-size: 12px;
  opacity: 0.85;
}

.plan-btn:hover {
  transform: translateY(-1px);
  background: #20242d;
}

.plan-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.plan-actions .plan-btn {
  margin-top: 0;
  width: 100%;
}

.plan-btn-outline {
  background: transparent;
  color: #151d2a;
  border: 2px solid rgba(18, 23, 33, 0.18);
  font-size: 16px;
  font-weight: 700;
}

.plan-btn-outline:hover {
  background: rgba(18, 23, 33, 0.04);
  color: #151d2a;
}

.plans-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(205, 0, 18, 0.18);
  background: linear-gradient(135deg, rgba(205, 0, 18, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.plans-detail-cta h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #151d2a;
}

.plans-detail-cta p {
  margin: 0;
  color: #5a6b82;
  font-size: 15px;
  max-width: 560px;
}

.plans-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.plans-detail-cta-actions .plan-btn {
  margin-top: 0;
  font-size: 16px;
  white-space: nowrap;
}

.plan-link {
  margin-top: 10px;
  text-align: center;
  color: #3f444e;
  font-size: 16px;
  text-decoration: underline;
}

.popular {
  border: 1px solid #dddddd;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 20, 30, 0.06);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 12px 10px;
  border-radius: 0;
  transform: none;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(205, 0, 18, 0.28);
  z-index: 5;
}

.popular .plan-head {
  margin-top: 40px;
}

.vip .plan-btn {
  background: #111318;
}

.difference {
  padding: 56px clamp(20px, 5vw, 48px) 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.difference h2 {
  margin: 0 auto 12px;
  max-width: 28ch;
  text-align: center;
  text-transform: none;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #141a24;
}

.difference h2 span {
  color: var(--accent-red);
  font-weight: 800;
}

.difference-lead {
  margin: 0 auto 40px;
  max-width: 42ch;
  text-align: center;
  font-size: 17px;
  line-height: 1.55;
  color: #5a6575;
  font-weight: 500;
}

.gallery-scroll {
  position: relative;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.gallery-scroll::before,
.gallery-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(34px, 5vw, 80px);
  z-index: 2;
  pointer-events: none;
}

.gallery-scroll::before {
  left: 0;
  background:
    linear-gradient(
      90deg,
      rgba(120, 180, 220, 0.46) 0%,
      rgba(188, 225, 246, 0.25) 35%,
      rgba(235, 246, 253, 0) 100%
    );
}

.gallery-scroll::after {
  right: 0;
  background:
    linear-gradient(
      270deg,
      rgba(120, 180, 220, 0.46) 0%,
      rgba(188, 225, 246, 0.25) 35%,
      rgba(235, 246, 253, 0) 100%
    );
}

.gallery-grid {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  width: max-content;
  animation: difference-gallery-scroll 72s linear infinite;
  will-change: transform;
}

.gallery-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 26, 36, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(17, 24, 35, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 35, 0.1);
}

.gallery-scroll:hover .gallery-grid {
  animation-play-state: paused;
}

@keyframes difference-gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (clamp(16px, 2.5vw, 28px) / 2)));
  }
}

.gallery-grid img {
  display: block;
  width: clamp(260px, 30vw, 360px);
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #eef2f6 0%, #e4e9ef 100%);
}

.gallery-grid figure:nth-child(3n + 1) img {
  object-position: center 45%;
}

.gallery-grid figure:nth-child(3n + 2) img {
  object-position: center center;
}

.gallery-grid figure:nth-child(3n) img {
  object-position: center 40%;
}

.cta {
  padding: 8px clamp(20px, 5vw, 48px) 48px;
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.cta-shell {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #5c000c 0%, #8a0612 22%, #c5091a 52%, #a00815 88%, #6d040e 100%);
  box-shadow: 0 20px 50px rgba(17, 24, 35, 0.12), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -30%, rgba(255, 255, 255, 0.14) 0%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60 L60 0' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 40px) 28px;
}

.cta h2 {
  margin: 0 0 14px;
  color: #fff;
  text-align: center;
  text-transform: none;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.cta-inner p {
  margin: 0 0 28px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a50812;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cta .btn-primary:hover {
  transform: translateY(-2px);
  background: #f8f8f8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  filter: none;
}

.cta-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.16);
  padding: 18px 20px 22px;
}

.cta-footer-item {
  display: block;
  text-align: center;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-footer-item + .cta-footer-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-footer-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cta-footer i {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.cta-reviews {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px clamp(14px, 3vw, 28px) 26px;
  text-align: left;
  background: transparent;
  border: none;
  box-shadow: none;
}

.cta-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 0 0 22px;
  padding: 0 clamp(4px, 1vw, 8px);
  text-align: left;
}

.cta-reviews-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-reviews-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: #4285f4;
  font-size: 22px;
  border: 1px solid #e8ecf2;
  box-shadow: 0 6px 16px rgba(17, 24, 35, 0.08);
}

.cta-reviews-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-reviews-kicker {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a2230;
}

.cta-reviews-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #5a6a82;
}

.cta-reviews-scoreline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.cta-reviews-score {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #141a24;
  line-height: 1;
}

.cta-reviews-stars {
  font-size: 15px;
  letter-spacing: 1px;
  color: #e6a200;
  filter: drop-shadow(0 1px 2px rgba(230, 162, 0, 0.25));
}

.cta-reviews-count {
  font-size: 13px;
  font-weight: 600;
  color: #5a6a82;
  width: 100%;
}

@media (min-width: 520px) {
  .cta-reviews-count {
    width: auto;
  }
}

@media (max-width: 540px) {
  .cta-reviews-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-reviews-brand {
    flex-direction: column;
  }

  .cta-reviews-titles {
    align-items: center;
  }

  .cta-reviews-scoreline {
    justify-content: center;
  }
}

.cta-reviews-columns {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: min(560px, 58vh);
  margin: 0 -2px;
  padding: 2px 0 0;
}

.review-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.review-col:hover .review-col-track {
  animation-play-state: paused;
}

.review-col-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.review-col--up .review-col-track {
  animation-name: review-col-scroll-up;
  animation-duration: 116s;
}

.review-col--down .review-col-track {
  animation-name: review-col-scroll-down;
  animation-duration: 136s;
}

.review-col:nth-child(1) .review-col-track {
  animation-duration: 100s;
}

.review-col:nth-child(2) .review-col-track {
  animation-duration: 132s;
}

.review-col:nth-child(3) .review-col-track {
  animation-duration: 112s;
}

.review-col:nth-child(4) .review-col-track {
  animation-duration: 124s;
}

@keyframes review-col-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes review-col-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.review-col-set {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
  padding: 0 0 2px;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 16px 18px 14px;
  flex-shrink: 0;
  border-radius: 16px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.08);
  box-shadow: 0 4px 24px rgba(17, 24, 35, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 35, 0.1);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-card-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666a72;
}

.review-card-google i {
  font-size: 13px;
  color: #4285f4;
}

.review-card-stars {
  font-size: 11px;
  letter-spacing: 1px;
  color: #e6a200;
}

.review-card-text {
  flex: 0 0 auto;
  margin: 0 0 8px;
  padding: 0 4px;
  text-align: left;
  text-transform: none;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: normal;
  color: #666a72;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-text--lines2 {
  -webkit-line-clamp: 2;
}

.review-card-text--lines3 {
  -webkit-line-clamp: 3;
}

.review-card-text--lines4 {
  -webkit-line-clamp: 4;
}

.review-readmore {
  flex-shrink: 0;
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a50812;
  background: rgba(197, 9, 26, 0.06);
  border: 1px solid rgba(197, 9, 26, 0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.review-readmore:hover {
  background: rgba(197, 9, 26, 0.12);
  border-color: rgba(197, 9, 26, 0.55);
}

.review-readmore:focus-visible {
  outline: 2px solid #c5091a;
  outline-offset: 2px;
}

.review-card-name {
  flex-shrink: 0;
  margin: 0;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 26, 36, 0.06);
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: #1c2430;
  letter-spacing: 0.02em;
}

.cta-reviews-columns--mobile-marquee {
  flex-direction: column;
  height: auto;
  overflow: visible;
  gap: 14px;
  mask-image: none;
  -webkit-mask-image: none;
}

.review-marquee-row {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
  position: relative;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.review-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  gap: 12px;
  will-change: transform;
  animation: review-marquee-ltr 82s linear infinite;
}

.review-marquee-row--rtl .review-marquee-track {
  animation-name: review-marquee-rtl;
  animation-duration: 96s;
}

.review-marquee-row:hover .review-marquee-track {
  animation-play-state: paused;
}

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

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

.review-marquee-set {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  flex-shrink: 0;
  align-items: stretch;
}

.cta-reviews-columns--mobile-marquee .review-card {
  width: min(272px, 78vw);
  max-width: none;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .cta-reviews-columns {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .review-col {
    flex: none;
    height: min(42vh, 340px);
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-scroll {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-col-track {
    animation: none !important;
    transform: none !important;
  }

  .review-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .review-col-set[aria-hidden="true"] {
    display: none;
  }

  .review-marquee-set[aria-hidden="true"] {
    display: none !important;
  }

  .review-marquee-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-col {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-col:hover .review-col-track {
    animation-play-state: running;
  }

  .review-marquee-row:hover .review-marquee-track {
    animation-play-state: running;
  }

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

  .site-footer-nav a:hover,
  .site-footer-nav a.site-footer-membership:hover {
    transform: none;
  }
}

body.review-modal-open {
  overflow: hidden;
}

.review-modal[hidden] {
  display: none !important;
}

.review-modal:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(14, 18, 28, 0.58);
  cursor: pointer;
}

.review-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  max-height: min(82vh, 680px);
  overflow: auto;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  border: 1px solid #dfe5ee;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  -webkit-overflow-scrolling: touch;
}

.review-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  font-size: 18px;
  color: #3d4a5f;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.review-modal-close:hover {
  background: rgba(197, 9, 26, 0.12);
  color: #a50812;
}

.review-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 44px 10px 0;
}

.review-modal-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4a5568;
}

.review-modal-google i {
  font-size: 14px;
  color: #4285f4;
}

.review-modal-stars {
  font-size: 13px;
  letter-spacing: 1px;
  color: #e6a200;
}

.review-modal-name {
  margin: 0 0 14px;
  padding-right: 44px;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #141a24;
  line-height: 1.25;
}

.review-modal-text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #2c3544;
  white-space: pre-wrap;
}

.site-footer {
  position: relative;
  margin-top: 10px;
  border-top: 1px solid rgba(20, 26, 36, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.9) 45%, rgba(241, 245, 249, 0.94) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 -24px 56px rgba(17, 24, 35, 0.045);
}

.site-footer-accent {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(225, 14, 34, 0.2) 22%,
    rgba(225, 14, 34, 0.75) 50%,
    rgba(225, 14, 34, 0.2) 78%,
    transparent 100%
  );
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px clamp(22px, 4vw, 44px) 34px;
}

.site-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px 36px;
  margin-bottom: 22px;
}

.site-footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
}

.site-footer-logo {
  flex-shrink: 0;
  display: block;
  height: 84px;
  width: auto;
  max-width: min(260px, 52vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 14px rgba(17, 19, 26, 0.14));
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 10px;
}

.site-footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #3d4a5f;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(17, 19, 26, 0.04);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.site-footer-nav a:hover {
  color: #a50812;
  background: rgba(225, 14, 34, 0.09);
  border-color: rgba(225, 14, 34, 0.14);
  box-shadow: 0 6px 18px rgba(205, 0, 18, 0.12);
  transform: translateY(-1px);
}

.site-footer-nav a.site-footer-membership {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(205, 0, 18, 0.32);
}

.site-footer-nav a.site-footer-membership:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #ff4b59 0%, #d30016 100%) !important;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 28px rgba(205, 0, 18, 0.4);
  transform: translateY(-2px);
}

.site-footer-phone {
  gap: 8px;
  font-weight: 700;
}

.site-footer-phone i {
  font-size: 13px;
  opacity: 0.92;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 26, 36, 0.07);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a8799;
  letter-spacing: 0.02em;
}

.site-footer-legal-copy {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #5c6b7f;
}

body.dark-mode {
  background: #0f1117;
  color: #e9edf8;
}

body.dark-mode .page-shell {
  background: linear-gradient(180deg, #151923 0%, #11141d 100%);
}

body.dark-mode .site-footer {
  border-top-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(22, 27, 38, 0.96) 0%, rgba(17, 21, 30, 0.94) 50%, rgba(14, 17, 26, 0.98) 100%);
  box-shadow: 0 -24px 56px rgba(0, 0, 0, 0.35);
}

body.dark-mode .site-footer-accent {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 120, 130, 0.25) 25%,
    rgba(255, 140, 150, 0.65) 50%,
    rgba(255, 120, 130, 0.25) 75%,
    transparent 100%
  );
}

body.dark-mode .site-footer-logo {
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55));
}

body.dark-mode .site-footer-nav a {
  color: #d2ddf0;
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .site-footer-nav a:hover {
  color: #fff;
  background: rgba(255, 120, 130, 0.16);
  border-color: rgba(255, 160, 168, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

body.dark-mode .site-footer-nav a.site-footer-membership {
  color: #fff !important;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%) !important;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body.dark-mode .site-footer-nav a.site-footer-membership:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #ff4b59 0%, #d30016 100%) !important;
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

body.dark-mode .site-footer-legal {
  color: #8b9cb8;
  border-top-color: rgba(255, 255, 255, 0.09);
}

body.dark-mode .site-footer-legal-copy {
  color: #b4c4dc;
}

body.dark-mode .site-main {
  background:
    radial-gradient(circle at 20% 18%, rgba(74, 115, 141, 0.22) 0, rgba(74, 115, 141, 0) 34%),
    radial-gradient(circle at 82% 70%, rgba(43, 72, 95, 0.24) 0, rgba(43, 72, 95, 0) 30%),
    repeating-linear-gradient(
      45deg,
      rgba(129, 170, 196, 0.07) 0px,
      rgba(129, 170, 196, 0.07) 2px,
      transparent 2px,
      transparent 22px
    ),
    linear-gradient(180deg, #141924 0%, #111722 45%, #0f151f 100%);
}

body.dark-mode .topbar {
  background: rgba(16, 19, 27, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

body.dark-mode .main-nav {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode .main-nav a {
  color: #d9dfef;
}

body.dark-mode .main-nav a.active,
body.dark-mode .main-nav a.active:hover {
  background: #ffffff !important;
  color: #10131b !important;
}

body.dark-mode .main-nav a.book-btn,
body.dark-mode .main-nav a.book-btn:hover,
body.dark-mode .main-nav a.book-btn.active,
body.dark-mode .main-nav a.book-btn.active:hover {
  background: linear-gradient(180deg, #e2c766 0%, #c9a227 55%, #b8941f 100%) !important;
  color: #2a2208 !important;
  box-shadow: 0 10px 20px rgba(168, 132, 28, 0.42) !important;
}

body.dark-mode .main-nav a.membership-btn,
body.dark-mode .main-nav a.membership-btn:hover,
body.dark-mode .main-nav a.membership-btn.active,
body.dark-mode .main-nav a.membership-btn.active:hover {
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(205, 0, 18, 0.35) !important;
}

body.dark-mode .theme-toggle {
  background: #1b2030;
  color: #ffd36a;
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .theme-toggle:hover {
  background: #2a3043;
}

body.dark-mode .nav-menu-toggle {
  background: #1b2030;
  color: #e8edff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

body.dark-mode .nav-menu-toggle:hover {
  background: #2a3043;
  color: #ffffff;
}

body.dark-mode .header-phone {
  background: #1b2030;
  border-color: rgba(255, 255, 255, 0.18);
  color: #e7edff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

body.dark-mode .header-phone i {
  color: #ff5b69;
}

body.dark-mode .hero::before {
  background: linear-gradient(90deg, rgba(13, 16, 24, 0.9) 0%, rgba(13, 16, 24, 0.66) 27%, rgba(13, 16, 24, 0.16) 55%, rgba(13, 16, 24, 0) 74%);
}

body.dark-mode .hero::after {
  background: linear-gradient(to bottom, rgba(17, 20, 29, 0) 0%, rgba(17, 20, 29, 0.95) 100%);
}

body.dark-mode .hero-rain-canvas {
  opacity: 0.62;
}

body.dark-mode .hero-copy {
  background: rgba(17, 22, 34, 0.42);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

body.dark-mode .hero-kicker,
body.dark-mode .hero-pills span {
  background: rgba(27, 32, 48, 0.9);
  color: #e8eeff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .hero-offer {
  background: linear-gradient(90deg, rgba(227, 40, 58, 0.95), rgba(255, 98, 112, 0.92));
}

body.dark-mode .hero h1,
body.dark-mode .hero p,
body.dark-mode .plans-section h2,
body.dark-mode .difference h2,
body.dark-mode .trust-row div,
body.dark-mode .gallery-grid figcaption,
body.dark-mode .plan-head,
body.dark-mode .plan-price {
  color: #edf2ff;
}

body.dark-mode .cta-shell {
  background: linear-gradient(125deg, #4a0008 0%, #6d050d 24%, #9a0714 55%, #7a0610 90%, #4a0409 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

body.dark-mode .cta-footer {
  background: rgba(0, 0, 0, 0.22);
  border-top-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .cta-footer-item {
  color: rgba(255, 255, 255, 0.94);
}

body.dark-mode .cta-footer-item + .cta-footer-item {
  border-left-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .cta h2,
body.dark-mode .cta-inner p {
  color: rgba(255, 255, 255, 0.96);
}

body.dark-mode .cta .btn-primary {
  color: #9a0714;
  background: #fff;
}

body.dark-mode .cta-reviews {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.dark-mode .cta-reviews-kicker {
  color: #edf2ff;
}

body.dark-mode .cta-reviews-tagline,
body.dark-mode .cta-reviews-count {
  color: #9fb1c9;
}

body.dark-mode .cta-reviews-score {
  color: #fff;
}

body.dark-mode .cta-reviews-stars {
  color: #ffd36a;
  filter: none;
}

body.dark-mode .cta-reviews-g {
  background: #252d3e;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

body.dark-mode .review-card {
  background: linear-gradient(180deg, rgba(30, 38, 54, 0.98) 0%, rgba(22, 28, 42, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

body.dark-mode .review-card:hover {
  border-color: rgba(255, 120, 130, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

body.dark-mode .review-card-google {
  color: #b9c9df;
}

body.dark-mode .review-card-google i {
  color: #8ab4f8;
}

body.dark-mode .review-card-stars {
  color: #ffd36a;
}

body.dark-mode .review-card-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.55;
}

body.dark-mode .review-card-name {
  color: #edf2ff;
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .review-readmore {
  color: #ffb4b9;
  background: rgba(255, 120, 130, 0.1);
  border-color: rgba(255, 140, 150, 0.4);
}

body.dark-mode .review-readmore:hover {
  background: rgba(255, 120, 130, 0.18);
  border-color: rgba(255, 160, 168, 0.55);
}

body.dark-mode .review-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
}

body.dark-mode .review-modal-dialog {
  background: linear-gradient(180deg, #1e2636 0%, #171d2b 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}

body.dark-mode .review-modal-close {
  color: #c5d2ea;
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .review-modal-close:hover {
  background: rgba(255, 120, 130, 0.2);
  color: #fff;
}

body.dark-mode .review-modal-google {
  color: #b9c9df;
}

body.dark-mode .review-modal-google i {
  color: #8ab4f8;
}

body.dark-mode .review-modal-stars {
  color: #ffd36a;
}

body.dark-mode .review-modal-name {
  color: #edf2ff;
}

body.dark-mode .review-modal-text {
  color: #d8e3f4;
}

body.dark-mode .trust-row,
body.dark-mode .plan-card,
body.dark-mode .gallery-grid figure {
  background: #1a2230;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

body.dark-mode .difference-lead {
  color: #9fb1c9;
}

body.dark-mode .gallery-grid figcaption {
  background: linear-gradient(180deg, rgba(28, 36, 50, 0.95) 0%, rgba(22, 29, 42, 0.98) 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #e8eef8;
}

body.dark-mode .trust-row {
  background: transparent;
}

body.dark-mode .trust-row div {
  background: linear-gradient(180deg, rgba(27, 34, 48, 0.96) 0%, rgba(22, 28, 40, 0.92) 100%);
  border-color: rgba(144, 188, 219, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

body.dark-mode .trust-title {
  color: #edf2ff;
}

body.dark-mode .trust-sub {
  color: #9fb1c9;
}

body.dark-mode .trust-row div + div {
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .member-portal-section {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .member-portal-frame {
  background: #1a2230;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

body.dark-mode .plan-card {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.98) 0%, rgba(19, 25, 37, 0.96) 100%);
  border-color: rgba(140, 178, 201, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

body.dark-mode .plan-head,
body.dark-mode .plan-price {
  color: #edf3ff;
}

body.dark-mode .plan-price span,
body.dark-mode .plan-card li {
  color: #b9c9df;
}

body.dark-mode .plan-card li::before {
  color: #8d97a5;
}

body.dark-mode .plan-card li.plan-highlight-note {
  color: #edf3ff;
  background: rgba(66, 80, 102, 0.35);
  border-left-color: #9fb1c9;
}

body.dark-mode .plan-extra-note {
  background: rgba(59, 73, 94, 0.32);
  border-color: rgba(159, 177, 201, 0.28);
}

body.dark-mode .plan-extra-note p {
  color: #c6d4e8;
}

body.dark-mode .plan-extra-note p i {
  color: #9fb1c9;
}

body.dark-mode .plan-extra-note .perk-label,
body.dark-mode .plan-extra-note .value-line {
  color: #edf3ff;
}

body.dark-mode .vip-extra-note {
  background: rgba(60, 88, 73, 0.3);
  border-color: rgba(153, 201, 174, 0.28);
}

body.dark-mode .vip-extra-note p {
  color: #cde3d5;
}

body.dark-mode .vip-extra-note .value-line {
  color: #edf3ff;
}

body.dark-mode .billing-toggle {
  background: #202837;
  border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode .billing-toggle button {
  color: #d8e1f0;
}

body.dark-mode .billing-toggle button.active {
  background: #2f3a4f;
  box-shadow: none;
}

body.dark-mode .plan-link {
  color: #b4c2d7;
}

body.dark-mode .vip .plan-btn {
  background: #090b11;
}

@media (max-width: 760px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  .topbar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    overflow: visible;
  }

  .topbar-brand {
    justify-content: flex-start;
    padding-right: 0;
    flex: 1;
    min-width: 0;
  }

  .topbar-actions {
    justify-content: flex-end;
    padding-left: 0;
    flex-shrink: 0;
    gap: 8px;
  }

  .nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    height: 60px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 220;
    width: auto;
    max-width: none;
    max-height: 0;
    margin: 0 12px;
    padding: 0 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 4px;
    font-size: 15px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 16px 40px rgba(15, 22, 32, 0.18);
    transition:
      max-height 0.32s ease,
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease,
      padding 0.22s ease;
  }

  body.nav-menu-open .main-nav {
    max-height: min(80vh, 520px);
    padding: 12px 10px 14px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body.dark-mode .main-nav {
    background: #090b10;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.75);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav a {
    padding: 12px 14px;
    text-align: center;
    border-radius: 12px;
  }

  .main-nav .book-btn,
  .main-nav .membership-btn {
    width: 100%;
    justify-content: center !important;
    text-align: center;
  }

  .main-nav .book-btn span,
  .main-nav .membership-btn span {
    text-align: center;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .header-phone {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero {
    min-height: clamp(440px, 72svh, 600px);
    margin: 0 0 14px;
    padding: 18px 14px 26px;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;
    clip-path: none;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.14) 42%,
      rgba(255, 255, 255, 0) 78%
    );
  }

  body.dark-mode .hero::before {
    background: linear-gradient(
      180deg,
      rgba(13, 16, 24, 0.58) 0%,
      rgba(13, 16, 24, 0.22) 48%,
      rgba(13, 16, 24, 0) 82%
    );
  }

  .hero::after {
    height: 36px;
    background: linear-gradient(to bottom, rgba(244, 244, 246, 0) 0%, rgba(244, 244, 246, 0.75) 100%);
  }

  body.dark-mode .hero::after {
    background: linear-gradient(to bottom, rgba(17, 20, 29, 0) 0%, rgba(17, 20, 29, 0.72) 100%);
  }

  .hero-rain-canvas {
    opacity: 0.32;
    mix-blend-mode: soft-light;
  }

  body.dark-mode .hero-rain-canvas {
    opacity: 0.26;
    mix-blend-mode: soft-light;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 16px 20px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(17, 19, 26, 0.1);
  }

  body.dark-mode .hero-copy {
    background: rgba(17, 22, 34, 0.36);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 44px);
    line-height: 0.95;
    margin-bottom: 10px;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9),
      0 10px 28px rgba(255, 255, 255, 0.55),
      0 0 1px rgba(17, 19, 26, 0.12);
  }

  .hero p {
    font-size: clamp(16px, 4.2vw, 21px);
    margin-bottom: 14px;
    line-height: 1.35;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75), 0 6px 18px rgba(255, 255, 255, 0.45);
  }

  .btn-primary {
    font-size: clamp(17px, 4.6vw, 22px);
    padding: 12px 22px;
  }

  .hero .btn-primary.hero-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-kicker {
    font-size: clamp(11px, 3.2vw, 13px);
    margin-left: auto;
    margin-right: auto;
    padding: 6px 12px;
  }

  .hero-pills {
    justify-content: center;
    gap: 8px;
  }

  .hero-pills span {
    font-size: clamp(11px, 3.1vw, 13px);
    padding: 8px 12px;
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-pills span:last-child {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-offer {
    font-size: clamp(11px, 3vw, 13px);
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row,
  .plans-grid,
  .gallery-grid,
  .cta-footer {
    grid-template-columns: 1fr;
  }

  .cta-footer-item + .cta-footer-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-row {
    gap: 10px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 12px;
  }

  .member-portal-section {
    padding: 29px 16px 50px;
  }

  .member-portal-iframe {
    min-height: clamp(684px, calc((100svh - 170px) * 1.8), 1080px);
  }

  .plans-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-title {
    font-size: 20px;
  }

  .trust-sub {
    font-size: 13px;
  }

  .difference h2 {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  .difference-lead {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .cta h2 {
    font-size: clamp(24px, 5.5vw, 34px);
  }

  .cta-inner p {
    margin-bottom: 22px;
  }

  .cta .btn-primary {
    width: 100%;
    max-width: 320px;
    padding: 13px 24px;
  }

  .billing-toggle button {
    padding: 10px 14px;
  }

  .about-hero,
  .about-section,
  .about-cta {
    margin-left: 0;
    margin-right: 0;
    padding: 18px 16px;
  }

  .about-hero {
    border-radius: 0;
  }

  .about-hero-sub,
  .about-section p,
  .about-stat-card p {
    font-size: 16px;
  }

  .about-photo-scroll {
    margin-left: 16px;
    margin-right: 16px;
  }

  .about-photo-scroll-head {
    padding-left: 0;
    padding-right: 0;
  }

  .about-values-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-team-stats .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-grid,
  .about-story-feature,
  .about-story-wrap {
    grid-template-columns: 1fr;
  }

  .about-hero-grid > div:first-child {
    text-align: center;
    align-items: center;
  }

  .about-hero-kicker,
  .about-hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .about-photo-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .about-photo-marquee::-webkit-scrollbar {
    display: none;
  }

  .about-photo-track {
    animation: none;
    width: max-content;
    scroll-snap-type: x mandatory;
    padding: 6px 0;
  }

  .about-photo-card {
    scroll-snap-align: start;
  }

  .about-photo-nav {
    display: flex;
  }

  .about-story-card-main {
    text-align: center;
    padding: 18px 16px;
  }

  .about-story-card-main .about-story-kicker,
  .about-story-card-main h2,
  .about-story-card-main p {
    text-align: center;
  }

  .about-team-stats-strip {
    padding: 12px;
    border-radius: 14px;
  }

  .about-team-stats .about-stat-card {
    padding: 12px 10px;
  }

  .about-team-stats .about-stat-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .about-team-cta .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .about-team-cta .about-cta-actions .btn-primary,
  .about-team-cta .about-cta-actions .plan-btn {
    width: 100%;
    min-width: 0;
  }

  .contact-main {
    margin-left: 16px;
    margin-right: 16px;
  }

  .contact-hero,
  .contact-card {
    padding: 18px 16px;
  }

  .contact-sub {
    font-size: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .legal-main {
    margin-left: 16px;
    margin-right: 16px;
  }

  .legal-hero,
  .legal-card {
    padding: 18px 16px;
  }

  .about-story-card-cta .about-proof-list {
    grid-template-columns: 1fr;
  }

  .about-hero-panel-row strong {
    font-size: 18px;
  }

  .about-value-card h3 {
    font-size: 20px;
  }


  .site-footer-inner {
    padding: 20px 18px 22px;
  }

  .site-footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 14px;
  }

  .site-footer-brand {
    justify-content: center;
    width: 100%;
  }

  .site-footer-nav {
    width: 100%;
    justify-content: center;
    gap: 8px 8px;
  }

  .site-footer-legal {
    justify-content: center;
    text-align: center;
    padding-top: 16px;
  }

  .site-footer-logo {
    height: 66px;
    max-width: min(230px, 58vw);
    object-position: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px clamp(16px, 3vw, 32px) 40px;
}

.pricing-list-wrap {
  display: grid;
  gap: 16px;
}

.pricing-list-head {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dde5ef;
  border-radius: 16px;
  padding: 18px clamp(16px, 3vw, 26px);
  box-shadow: 0 10px 28px rgba(17, 24, 35, 0.07);
}

.pricing-list-head h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 34px);
  color: #141a24;
  letter-spacing: -0.02em;
}

.pricing-list-head p {
  margin: 0;
  color: #596a80;
  font-size: 15px;
}

.pricing-package {
  position: relative;
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 18px clamp(16px, 3vw, 24px);
  box-shadow: 0 8px 24px rgba(17, 24, 35, 0.06);
}

.pricing-package-featured {
  border-color: rgba(205, 0, 18, 0.36);
  box-shadow: 0 14px 30px rgba(205, 0, 18, 0.12);
}

.pricing-badge {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-package-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.pricing-package-top h2 {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 28px);
  color: #141a24;
}

.pricing-package-price {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #141a24;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pricing-package-price span {
  font-size: 14px;
  font-weight: 600;
  color: #5a6a82;
}

.pricing-package-sub {
  margin: 0 0 12px;
  color: #5a6a82;
}

.pricing-package-list {
  margin: 0 0 12px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: #2b3442;
}

.pricing-package-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(205, 0, 18, 0.06);
  border: 1px solid rgba(205, 0, 18, 0.16);
  color: #7d111c;
  font-size: 14px;
  font-weight: 600;
}

body.dark-mode .pricing-list-head {
  background: linear-gradient(180deg, #1b2231 0%, #161d2b 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

body.dark-mode .pricing-list-head h1 {
  color: #edf3ff;
}

body.dark-mode .pricing-list-head p {
  color: #9fb1c9;
}

body.dark-mode .pricing-package {
  background: linear-gradient(180deg, rgba(29, 37, 53, 0.98) 0%, rgba(22, 29, 42, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

body.dark-mode .pricing-package-featured {
  border-color: rgba(255, 120, 130, 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 120, 130, 0.22) inset;
}

body.dark-mode .pricing-package-top h2,
body.dark-mode .pricing-package-price {
  color: #edf3ff;
}

body.dark-mode .pricing-package-price span,
body.dark-mode .pricing-package-sub {
  color: #9fb1c9;
}

body.dark-mode .pricing-package-list {
  color: #d8e3f4;
}

body.dark-mode .pricing-package-note {
  background: rgba(255, 120, 130, 0.12);
  border-color: rgba(255, 140, 150, 0.34);
  color: #ffc8cc;
}

@media (max-width: 760px) {
  .pricing-main {
    padding: 18px 14px 28px;
  }

  .pricing-package-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-package-price {
    font-size: 28px;
  }

  .pricing-badge {
    margin-bottom: 8px;
  }
}

.pricing-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pricing-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 23, 33, 0.12);
  background: #fff;
  color: #28374c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-jump-link:hover,
.pricing-jump-link.is-active {
  border-color: rgba(205, 0, 18, 0.35);
  background: rgba(205, 0, 18, 0.06);
  color: #151d2a;
}

.pricing-jump-link--cta {
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  border-color: #cd0012;
  color: #fff;
}

.pricing-jump-link--cta:hover {
  background: linear-gradient(180deg, #ff5160 0%, #e00014 100%);
  color: #fff;
}

.pricing-section {
  display: grid;
  gap: 16px;
}

.pricing-section-title {
  margin: 8px 0 0;
  font-size: clamp(20px, 3vw, 28px);
  color: #151d2a;
}

.pricing-section-lead {
  margin: 0;
  color: #5a6b82;
  font-size: 15px;
}

.pricing-actions {
  display: grid;
  gap: 10px;
}

.pricing-actions .plan-btn {
  margin-top: 0;
}

.pricing-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid rgba(18, 23, 33, 0.14);
  color: #28374c;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pricing-btn-secondary:hover {
  background: rgba(18, 23, 33, 0.04);
  border-color: rgba(205, 0, 18, 0.25);
}

.pricing-details-mount {
  display: grid;
  gap: 22px;
}

.pricing-detail-group-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.pricing-detail-grid {
  display: grid;
  gap: 12px;
}

.pricing-detail-card {
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(17, 24, 35, 0.06);
}

.pricing-detail-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.pricing-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(205, 0, 18, 0.08);
  color: var(--accent-red);
  font-size: 18px;
}

.pricing-detail-card h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #151d2a;
}

.pricing-detail-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5a6b82;
}

.pricing-detail-price {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #151d2a;
  white-space: nowrap;
}

.pricing-detail-price span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #5a6b82;
  text-transform: lowercase;
}

.pricing-detail-book.plan-btn {
  width: 100%;
  margin-top: 0;
  font-size: 16px;
}

.pricing-detail-disclaimer {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(18, 23, 33, 0.04);
  font-size: 13px;
  color: #5a6b82;
}

body.dark-mode .pricing-jump-link {
  background: #121722;
  border-color: rgba(255, 255, 255, 0.12);
  color: #d8e2f0;
}

body.dark-mode .pricing-section-title,
body.dark-mode .pricing-detail-card h4,
body.dark-mode .pricing-detail-price {
  color: #edf3ff;
}

body.dark-mode .pricing-section-lead,
body.dark-mode .pricing-detail-desc,
body.dark-mode .pricing-detail-price span,
body.dark-mode .pricing-detail-disclaimer {
  color: #9fb0c8;
}

body.dark-mode .pricing-detail-card {
  background: linear-gradient(180deg, rgba(29, 37, 53, 0.98) 0%, rgba(22, 29, 42, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .pricing-btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: #d8e2f0;
}

body.dark-mode .plan-btn-outline {
  color: #edf3ff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .plans-detail-cta {
  background: linear-gradient(135deg, rgba(205, 0, 18, 0.12) 0%, rgba(18, 23, 33, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .plans-detail-cta h3 {
  color: #edf3ff;
}

@media (max-width: 760px) {
  .hero-btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .plans-detail-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .plans-detail-cta-actions {
    flex-direction: column;
  }

  .plans-detail-cta-actions .plan-btn {
    width: 100%;
  }

  .pricing-detail-card-top {
    grid-template-columns: auto 1fr;
  }

  .pricing-detail-price {
    grid-column: 1 / -1;
  }
}

/* --- Booking wizard --- */

.booking-main {
  padding: 28px 34px 48px;
}

.booking-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.booking-hero {
  text-align: center;
  margin-bottom: 28px;
}

.booking-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3c4e66;
}

.booking-kicker i {
  color: var(--accent-red);
  margin-right: 6px;
}

.booking-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: #141b28;
}

.booking-lead {
  margin: 0 auto;
  max-width: 620px;
  font-size: 18px;
  color: #3a485d;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.booking-summary-card {
  position: sticky;
  top: 110px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 23, 33, 0.1);
  box-shadow: 0 16px 36px rgba(17, 19, 26, 0.1);
}

.booking-summary-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #151d2a;
}

.booking-summary-list {
  margin: 0 0 16px;
  padding: 0;
}

.booking-summary-row {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 23, 33, 0.08);
}

.booking-summary-row:last-child {
  border-bottom: 0;
}

.booking-summary-row dt {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6b82;
}

.booking-summary-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1a2435;
  line-height: 1.35;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 0;
  border-top: 2px solid rgba(225, 14, 34, 0.2);
}

.booking-summary-total span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b5a70;
}

.booking-summary-total strong {
  font-size: 26px;
  color: var(--accent-red);
}

.booking-summary-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #5a6b82;
  line-height: 1.4;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-preselect-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(205, 0, 18, 0.22);
  background: linear-gradient(180deg, rgba(205, 0, 18, 0.08) 0%, rgba(205, 0, 18, 0.03) 100%);
}

.booking-preselect-banner[hidden] {
  display: none !important;
}

.booking-preselect-banner i {
  color: var(--accent-red);
  font-size: 20px;
}

.booking-preselect-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #28374c;
  min-width: 200px;
}

.booking-preselect-clear {
  border: 0;
  background: transparent;
  color: var(--accent-red);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
}

.booking-package-card.is-preselected .booking-package-inner,
.booking-package-card.is-preselected .booking-package-inner--row {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(205, 0, 18, 0.16);
}

.booking-wizard-wrap {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 23, 33, 0.1);
  box-shadow: 0 20px 44px rgba(17, 19, 26, 0.1);
}

.booking-progress {
  margin-bottom: 24px;
}

.booking-steps {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}

.booking-step {
  flex: 1 1 auto;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.booking-step.is-done {
  opacity: 0.75;
  cursor: pointer;
}

.booking-step.is-done:hover {
  opacity: 1;
}

.booking-step.is-active {
  opacity: 1;
}

.booking-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  background: #eef0f4;
  color: #3a485d;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.booking-step.is-active .booking-step-num {
  background: #11131a;
  color: #fff;
  box-shadow: 0 8px 16px rgba(17, 19, 26, 0.25);
}

.booking-step.is-done .booking-step-num {
  background: rgba(225, 14, 34, 0.12);
  color: var(--accent-red);
  border-color: rgba(225, 14, 34, 0.35);
}

.booking-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b5a70;
  text-align: center;
}

.booking-progress-bar {
  height: 4px;
  border-radius: 999px;
  background: #e8eaef;
  overflow: hidden;
}

.booking-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f13b4a 0%, #cd0012 100%);
  transition: width 0.35s ease;
}

.booking-panel {
  display: none;
  animation: bookingFadeIn 0.35s ease;
}

.booking-panel.is-active {
  display: block;
}

@keyframes bookingFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-panel-head {
  margin-bottom: 20px;
}

.booking-panel-head h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #151d2a;
}

.booking-panel-head p {
  margin: 0;
  font-size: 16px;
  color: #4b5a70;
}

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

.booking-package-card {
  position: relative;
  cursor: pointer;
}

.booking-package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-package-inner {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 18px 16px;
  border-radius: 16px;
  border: 2px solid rgba(18, 23, 33, 0.12);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-package-card:hover .booking-package-inner {
  border-color: rgba(225, 14, 34, 0.35);
  transform: translateY(-2px);
}

.booking-package-card input:checked + .booking-package-inner,
.booking-package-card input:focus-visible + .booking-package-inner,
.booking-package-card:has(input:checked) .booking-package-inner,
.booking-package-card:has(input:focus-visible) .booking-package-inner {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.14);
  background: #fff;
}

.booking-package-featured .booking-package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  box-shadow: 0 8px 16px rgba(205, 0, 18, 0.3);
}

.booking-package-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(225, 14, 34, 0.1);
  color: var(--accent-red);
  font-size: 18px;
}

.booking-package-name {
  font-size: 16px;
  font-weight: 800;
  color: #151d2a;
  line-height: 1.2;
}

.booking-package-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-red);
}

.booking-package-price span {
  font-size: 14px;
  font-weight: 600;
  color: #5a6b82;
}

.booking-package-desc {
  font-size: 13px;
  color: #4b5a70;
  line-height: 1.35;
}

.booking-shake {
  animation: bookingShake 0.4s ease;
}

@keyframes bookingShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.booking-service-heading {
  margin: 28px 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.booking-service-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.booking-service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 2px solid rgba(18, 23, 33, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #28374c;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.booking-service-tab:hover {
  border-color: rgba(205, 0, 18, 0.25);
}

.booking-service-tab.is-active {
  border-color: var(--accent-red);
  background: linear-gradient(180deg, rgba(205, 0, 18, 0.06) 0%, rgba(205, 0, 18, 0.02) 100%);
  color: #151d2a;
  box-shadow: 0 8px 24px rgba(205, 0, 18, 0.08);
}

.booking-service-tab i {
  color: var(--accent-red);
}

.booking-tab-panel {
  display: none;
}

.booking-tab-panel.is-active {
  display: block;
}

.booking-tab-intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #5a6b82;
}

.booking-extras-empty {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(18, 23, 33, 0.04);
  font-size: 14px;
  color: #5a6b82;
}

.booking-summary-pricing-row {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px dashed rgba(18, 23, 33, 0.12);
}

.booking-summary-pricing-row dt {
  color: #5a6b82;
}

.booking-summary-pricing-row dd {
  font-weight: 700;
}

.booking-service-heading:first-of-type {
  margin-top: 0;
}

.booking-service-sub {
  margin: -4px 0 12px;
  font-size: 14px;
  color: var(--text-muted, #5a6b82);
}

.booking-detail-packages {
  display: grid;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.booking-detail-category {
  display: grid;
  gap: 10px;
}

.booking-detail-category-label {
  margin: 0;
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a6b82;
  border-bottom: 1px solid rgba(18, 23, 33, 0.08);
}

.booking-detail-list {
  display: grid;
  gap: 10px;
}

.booking-package-card--detail {
  display: block;
}

.booking-package-inner--row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 18px;
  min-height: 0;
}

.booking-package-card--detail .booking-package-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 20px;
}

.booking-package-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.booking-package-card--detail .booking-package-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.booking-package-card--detail .booking-package-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #5a6b82;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.booking-package-price-col {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
  flex-shrink: 0;
  padding-left: 8px;
  border-left: 1px solid rgba(18, 23, 33, 0.08);
}

.booking-package-card--detail .booking-package-price {
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.booking-package-price-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a6b82;
  white-space: nowrap;
}

.booking-package-card--detail:has(input:checked) .booking-package-inner--row {
  background: linear-gradient(180deg, #fff 0%, #fff9f9 100%);
}

.booking-package-card--detail:hover .booking-package-inner--row {
  transform: none;
  border-color: rgba(225, 14, 34, 0.35);
  box-shadow: 0 4px 14px rgba(17, 19, 26, 0.06);
}

.booking-addon-group {
  margin-bottom: 22px;
}

.booking-addon-group-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.booking-pricing-disclaimer {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #5a4a12;
  background: #fff8e6;
  border: 1px solid rgba(201, 154, 54, 0.35);
}

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

.booking-extra-card {
  cursor: pointer;
}

.booking-extra-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-extra-inner {
  display: grid;
  gap: 4px;
  padding: 16px;
  height: 100%;
  border-radius: 14px;
  border: 2px solid rgba(18, 23, 33, 0.1);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-extra-inner i {
  font-size: 20px;
  color: var(--accent-red);
}

.booking-extra-inner strong {
  font-size: 15px;
  color: #151d2a;
}

.booking-extra-inner span {
  font-size: 13px;
  color: #5a6b82;
}

.booking-extra-inner em {
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-red);
  margin-top: 4px;
}

.booking-extra-card input:checked + .booking-extra-inner,
.booking-extra-card:has(input:checked) .booking-extra-inner {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.12);
  background: #fff;
}

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

.booking-field {
  display: grid;
  gap: 6px;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3b4b62;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(19, 24, 36, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #162132;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(225, 14, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.12);
}

.booking-phone-us {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(19, 24, 36, 0.16);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-phone-us:focus-within {
  border-color: rgba(225, 14, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.12);
}

.booking-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2435;
  background: #f0f2f6;
  border-right: 1px solid rgba(19, 24, 36, 0.12);
  flex-shrink: 0;
}

.booking-phone-prefix .fa-flag-usa {
  color: #3c4b8f;
  font-size: 16px;
}

.booking-phone-us input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.booking-phone-hint {
  margin-top: 6px;
}

.booking-phone-us.booking-field-error-wrap,
.booking-field-error-wrap .booking-phone-us {
  border-color: #e10e22 !important;
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.18) !important;
}

.booking-field-error {
  border-color: #e10e22 !important;
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.18) !important;
}

.booking-field-hint {
  margin: 14px 0 0;
  font-size: 14px;
  color: #4b5a70;
}

.booking-field-hint i {
  color: var(--accent-red);
  margin-right: 6px;
}

.booking-date-field .booking-date-input-wrap {
  position: relative;
}

.booking-date-field .booking-date-display,
.booking-date-field .booking-date-input-wrap > input.form-control,
.booking-date-field .booking-date-input-wrap > input[type="text"] {
  width: 100%;
  cursor: pointer;
  padding-right: 44px;
  background: #fff;
}

.booking-date-trigger {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent-red);
  pointer-events: none;
}

.flatpickr-booking.flatpickr-calendar {
  width: min(100%, 320px);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(18, 23, 33, 0.12);
  box-shadow: 0 22px 48px rgba(17, 19, 26, 0.16);
  font-family: "Barlow", sans-serif;
}

.flatpickr-booking .flatpickr-months {
  padding: 4px 4px 8px;
}

.flatpickr-booking .flatpickr-current-month {
  font-size: 16px;
  font-weight: 800;
  color: #151d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34px;
  padding-top: 0;
}

.flatpickr-booking .flatpickr-current-month .cur-month,
.flatpickr-booking .flatpickr-current-month .cur-year,
.flatpickr-booking .flatpickr-current-month span.cur-month,
.flatpickr-booking .flatpickr-current-month span.cur-year {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #151d2a;
}

.flatpickr-booking .flatpickr-monthDropdown-months,
.flatpickr-booking .numInputWrapper {
  display: none !important;
}

.flatpickr-booking .flatpickr-weekdays {
  margin-top: 4px;
}

.flatpickr-booking span.flatpickr-weekday {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6b82;
}

.flatpickr-booking .flatpickr-day {
  border-radius: 10px;
  font-weight: 600;
  color: #151d2a;
  max-width: 38px;
  height: 38px;
  line-height: 38px;
}

.flatpickr-booking .flatpickr-day.today {
  border-color: rgba(205, 0, 18, 0.35);
  color: var(--accent-red);
}

.flatpickr-booking .flatpickr-day.selected,
.flatpickr-booking .flatpickr-day.selected:hover {
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  border-color: #cd0012;
  color: #fff;
}

.flatpickr-booking .flatpickr-day:hover {
  background: rgba(205, 0, 18, 0.08);
  border-color: transparent;
}

.flatpickr-booking .flatpickr-day.flatpickr-disabled,
.flatpickr-booking .flatpickr-day.prevMonthDay,
.flatpickr-booking .flatpickr-day.nextMonthDay {
  color: #b0bac8;
}

.flatpickr-booking .flatpickr-prev-month,
.flatpickr-booking .flatpickr-next-month {
  top: 12px;
  padding: 6px;
  border-radius: 8px;
  fill: var(--accent-red);
}

.flatpickr-booking .flatpickr-prev-month:hover,
.flatpickr-booking .flatpickr-next-month:hover {
  background: rgba(205, 0, 18, 0.08);
}

body.dark-mode .booking-date-field .booking-date-display,
body.dark-mode .booking-date-field .booking-date-input-wrap > input[type="text"] {
  background: #1a2230;
  color: #eef1f6;
}

body.dark-mode .flatpickr-booking.flatpickr-calendar {
  background: #1a2230;
  border-color: rgba(255, 255, 255, 0.1);
  color-scheme: dark;
}

body.dark-mode .flatpickr-booking .flatpickr-day {
  color: #eef1f6;
}

body.dark-mode .flatpickr-booking .flatpickr-current-month,
body.dark-mode .flatpickr-booking .flatpickr-current-month .cur-month,
body.dark-mode .flatpickr-booking .flatpickr-current-month .cur-year {
  color: #eef1f6;
}

body.dark-mode .flatpickr-booking .flatpickr-monthDropdown-months {
  color: #eef1f6;
}

body.dark-mode .flatpickr-booking .flatpickr-monthDropdown-months {
  background: #243044;
  color: #eef1f6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 2px 6px;
}

body.dark-mode .flatpickr-booking .flatpickr-monthDropdown-months option {
  background: #1a2230;
  color: #eef1f6;
}

body.dark-mode .flatpickr-booking .numInputWrapper input {
  background: #243044;
  color: #eef1f6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

body.dark-mode .flatpickr-booking span.flatpickr-weekday {
  color: #9fb0c8;
}

body.dark-mode .flatpickr-booking .flatpickr-day.prevMonthDay,
body.dark-mode .flatpickr-booking .flatpickr-day.nextMonthDay,
body.dark-mode .flatpickr-booking .flatpickr-day.flatpickr-disabled {
  color: #5a6b82;
}

body.dark-mode .flatpickr-booking .flatpickr-prev-month,
body.dark-mode .flatpickr-booking .flatpickr-next-month {
  fill: #ff8a94;
}

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #28374c;
  cursor: pointer;
}

.booking-check input {
  margin-top: 3px;
  accent-color: var(--accent-red);
}

.booking-check a {
  color: var(--accent-red);
  font-weight: 700;
}

.booking-terms {
  margin-top: 16px;
}

.booking-review-card {
  padding: 18px;
  border-radius: 14px;
  background: #f6f7f9;
  border: 1px solid rgba(18, 23, 33, 0.08);
  margin-bottom: 16px;
}

.booking-review-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.booking-review-list > div {
  display: grid;
  gap: 4px;
}

.booking-review-list dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6b82;
}

.booking-review-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1a2435;
  line-height: 1.4;
}

.booking-review-total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid rgba(225, 14, 34, 0.2);
}

.booking-review-total dd {
  font-size: 22px;
  color: var(--accent-red);
}

.booking-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 23, 33, 0.08);
}

.booking-nav #bookingNext[hidden],
.booking-nav #bookingSubmit[hidden] {
  display: none !important;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #f13b4a 0%, #cd0012 100%);
  box-shadow: 0 12px 24px rgba(205, 0, 18, 0.3);
}

.booking-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(205, 0, 18, 0.36);
}

.booking-btn-primary:disabled,
.booking-btn-primary.is-locked:disabled {
  opacity: 1;
  cursor: not-allowed;
  transform: none;
  color: #eef1f6 !important;
  background: linear-gradient(180deg, #8e98a8 0%, #6b7585 100%) !important;
  box-shadow: 0 6px 14px rgba(55, 65, 80, 0.25) !important;
}

.booking-btn-primary:disabled:hover,
.booking-btn-primary.is-locked:disabled:hover {
  transform: none;
  box-shadow: 0 6px 14px rgba(55, 65, 80, 0.25) !important;
}

.booking-btn-primary.is-locked:disabled i {
  margin-left: 2px;
}

.booking-btn-ghost {
  color: #28374c;
  background: #fff;
  border: 1px solid rgba(18, 23, 33, 0.16);
}

.booking-btn-ghost:hover {
  background: #f4f5f7;
}

.booking-btn-outline {
  color: var(--accent-red);
  background: #fff;
  border: 2px solid rgba(205, 0, 18, 0.35);
}

.booking-btn-outline:hover {
  background: rgba(205, 0, 18, 0.06);
  border-color: var(--accent-red);
}

.booking-btn-outline:disabled {
  opacity: 0.65;
  cursor: wait;
}

.booking-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
}

.booking-success-actions .booking-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

/* Booking PDF mount - styles live inline in booking-print.js */
.booking-paper-mount {
  position: fixed;
  left: -12000px;
  top: 0;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  background: #fff;
}

.booking-success {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.booking-success-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 23, 33, 0.1);
  box-shadow: 0 24px 48px rgba(17, 19, 26, 0.12);
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  color: #fff;
  background: linear-gradient(180deg, #2ecc71 0%, #1fa855 100%);
  box-shadow: 0 12px 24px rgba(31, 168, 85, 0.35);
}

.booking-success-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #151d2a;
}

.booking-success-ref {
  margin: 0 0 12px;
  font-size: 16px;
  color: #4b5a70;
}

.booking-success-ref strong {
  color: var(--accent-red);
  letter-spacing: 0.04em;
}

.booking-success-message,
#bookingSuccessMessage {
  margin: 0 auto 20px;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5a70;
  text-align: center;
}

.booking-success-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #5a4a12;
  background: #fff8e6;
  border: 1px solid rgba(201, 154, 54, 0.35);
}

/* Booking wizard - dark mode (readable text on all steps) */
body.dark-mode .booking-hero h1,
body.dark-mode .booking-summary-card h2,
body.dark-mode .booking-panel-head h2,
body.dark-mode .booking-package-name,
body.dark-mode .booking-extra-inner strong,
body.dark-mode .booking-success-card h2 {
  color: #f2f4f8;
}

body.dark-mode .booking-kicker,
body.dark-mode .booking-lead,
body.dark-mode .booking-panel-head p,
body.dark-mode .booking-summary-note,
body.dark-mode .booking-field span,
body.dark-mode .booking-summary-row dt,
body.dark-mode .booking-step-label,
body.dark-mode .booking-summary-total span,
body.dark-mode .booking-field-hint,
body.dark-mode .booking-check span,
body.dark-mode .booking-review-list dt,
body.dark-mode .booking-success-ref,
body.dark-mode .booking-success-card p {
  color: #b8c8de;
}

body.dark-mode .booking-step.is-active .booking-step-label {
  color: #f2f4f8;
}

body.dark-mode .booking-step.is-done .booking-step-label {
  color: #d2ddf0;
}

body.dark-mode .booking-package-desc,
body.dark-mode .booking-extra-inner span,
body.dark-mode .booking-package-price span {
  color: #b8c8de;
}

body.dark-mode .booking-extra-inner em {
  color: #ff7a86;
}

body.dark-mode .booking-summary-row dd,
body.dark-mode .booking-review-list dd,
body.dark-mode .booking-summary-total strong {
  color: #f2f4f8;
}

body.dark-mode .booking-summary-total {
  border-top-color: rgba(255, 120, 130, 0.35);
}

body.dark-mode .booking-summary-card,
body.dark-mode .booking-wizard-wrap,
body.dark-mode .booking-success-card {
  background: #1a1f2a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .booking-preselect-banner {
  background: linear-gradient(180deg, rgba(205, 0, 18, 0.16) 0%, rgba(205, 0, 18, 0.06) 100%);
  border-color: rgba(255, 120, 130, 0.28);
}

body.dark-mode .booking-preselect-banner p {
  color: #d8e2f0;
}

.booking-tab-intro a {
  color: var(--accent-red);
  font-weight: 700;
  text-decoration: underline;
}

body.dark-mode .booking-field input,
body.dark-mode .booking-field select,
body.dark-mode .booking-field textarea {
  color: #e8edf5;
  background: #121722;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .booking-field input::placeholder,
body.dark-mode .booking-field textarea::placeholder {
  color: #7d92ad;
}

body.dark-mode .booking-phone-us {
  background: #121722;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .booking-phone-prefix {
  color: #e8edf5;
  background: #1a2030;
  border-right-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .booking-phone-us input {
  color: #e8edf5;
}

body.dark-mode .booking-package-inner,
body.dark-mode .booking-extra-inner,
body.dark-mode .booking-review-card {
  background: #121722;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-mode .booking-service-tab {
  background: #121722;
  border-color: rgba(255, 255, 255, 0.12);
  color: #d8e2f0;
}

body.dark-mode .booking-service-tab.is-active {
  background: #1f2838;
  color: #f2f4f8;
}

body.dark-mode .booking-tab-intro,
body.dark-mode .booking-extras-empty {
  color: #9fb0c8;
}

body.dark-mode .booking-extras-empty {
  background: rgba(255, 255, 255, 0.04);
}

body.dark-mode .booking-summary-pricing-row {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .booking-progress-bar {
  background: #2a3140;
}

body.dark-mode .booking-step {
  opacity: 0.65;
}

body.dark-mode .booking-step.is-active,
body.dark-mode .booking-step.is-done {
  opacity: 1;
}

body.dark-mode .booking-package-card input:checked + .booking-package-inner,
body.dark-mode .booking-package-card input:focus-visible + .booking-package-inner,
body.dark-mode .booking-package-card:has(input:checked) .booking-package-inner,
body.dark-mode .booking-package-card:has(input:focus-visible) .booking-package-inner {
  background: #2a3448;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.28);
}

body.dark-mode .booking-package-card:has(input:checked) .booking-package-inner .booking-package-name,
body.dark-mode .booking-package-card:has(input:checked) .booking-package-inner .booking-package-desc,
body.dark-mode .booking-package-card:has(input:checked) .booking-package-inner .booking-package-price span {
  color: #f2f4f8;
}

body.dark-mode .booking-package-card:has(input:checked) .booking-package-inner .booking-package-icon {
  background: rgba(225, 14, 34, 0.28);
  color: #ff8a94;
}

body.dark-mode .booking-extra-card input:checked + .booking-extra-inner,
body.dark-mode .booking-extra-card input:focus-visible + .booking-extra-inner,
body.dark-mode .booking-extra-card:has(input:checked) .booking-extra-inner,
body.dark-mode .booking-extra-card:has(input:focus-visible) .booking-extra-inner {
  background: #2a3448;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(225, 14, 34, 0.28);
}

body.dark-mode .booking-extra-card:has(input:checked) .booking-extra-inner strong,
body.dark-mode .booking-extra-card:has(input:checked) .booking-extra-inner span {
  color: #f2f4f8;
}

body.dark-mode .booking-step-num {
  background: #2a3140;
  color: #d2ddf0;
}

body.dark-mode .booking-step.is-active .booking-step-num {
  background: #f2f4f8;
  color: #11131a;
}

body.dark-mode .booking-step.is-done .booking-step-num {
  background: rgba(225, 14, 34, 0.22);
  color: #ff8a94;
  border-color: rgba(255, 120, 130, 0.45);
}

body.dark-mode .booking-check a {
  color: #ff8a94;
}

body.dark-mode .booking-field-hint i {
  color: #ff7a86;
}

body.dark-mode .booking-nav {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .booking-btn-ghost {
  background: #121722;
  color: #e8edf5;
  border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .booking-btn-ghost:hover {
  background: #252d3d;
}

@media (max-width: 980px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    order: 2;
  }

  .booking-summary-card {
    position: static;
  }

  .booking-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .booking-main {
    padding: 18px 14px 32px;
  }

  .booking-wizard-wrap {
    padding: 16px;
  }

  .booking-extras-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-package-inner--row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
  }

  .booking-package-price-col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: baseline;
    justify-items: start;
    justify-content: space-between;
    text-align: left;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(18, 23, 33, 0.08);
    display: flex;
    gap: 8px;
  }

  .booking-package-card--detail .booking-package-price {
    font-size: 20px;
  }

  .booking-step-label {
    font-size: 10px;
  }

  .booking-nav {
    flex-direction: column-reverse;
  }

  .booking-nav .booking-btn {
    width: 100%;
    justify-content: center;
  }
}
