:root {
  --blue: #3d61e8;
  --aqua: #69c3ce;
  --pale-aqua: #8fc7df;
  --yellow: #f5ef2c;
  --red-line: #e3202b;
  --green: #20c978;
  --ink: #132033;
  --muted: #64748b;
  --line: #dbe8f2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 40, 70, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7fcff;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 44px), 1760px);
  min-height: 110px;
  align-items: center;
  gap: 28px;
  padding: 18px 62px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.brand {
  flex: 0 0 auto;
  color: var(--pale-aqua);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
}

.brand-dot {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
}

.global-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.6vw, 72px);
}

.global-nav a {
  color: #111827;
  font-size: clamp(0.92rem, 1.1vw, 1.2rem);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.2vw, 1.22rem);
  font-weight: 900;
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 46%, #68c7cf 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 24px rgba(41, 69, 200, 0.25);
  text-decoration: none;
  white-space: nowrap;
}

.header-cta span,
.hero-cta span {
  margin-right: 10px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./assets/car-wash-fv-dark.webp");
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.78);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18) 52%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
}

.hero-inner {
  display: grid;
  width: min(100%, 1760px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 205px 8vw 86px;
  align-content: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 54px;
  margin: 0 0 34px;
  padding: 0 28px;
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.85rem);
  font-weight: 700;
  background: var(--aqua);
  border-radius: 8px;
}

.eyebrow {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title {
  display: grid;
  gap: 0;
  max-width: 1360px;
  margin: 0 0 42px;
  font-family: "Zen Kurenaido", "Noto Sans JP", sans-serif;
  font-size: clamp(3.4rem, 7.4vw, 8.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.75),
    0 4px 8px rgba(0, 0, 0, 0.32);
}

.title-line {
  position: relative;
  width: fit-content;
  z-index: 1;
}

.title-line::after {
  position: absolute;
  left: -0.08em;
  z-index: -1;
  width: 108%;
  height: 0.105em;
  content: "";
  background:
    radial-gradient(ellipse at 9% 42%, transparent 0 10%, var(--red-line) 11% 44%, transparent 45%),
    radial-gradient(ellipse at 31% 48%, transparent 0 6%, var(--red-line) 7% 46%, transparent 47%),
    radial-gradient(ellipse at 64% 52%, transparent 0 8%, var(--red-line) 9% 45%, transparent 46%),
    radial-gradient(ellipse at 91% 40%, transparent 0 10%, var(--red-line) 11% 43%, transparent 44%),
    linear-gradient(92deg, transparent 0%, var(--red-line) 4%, var(--red-line) 93%, transparent 100%);
  border-radius: 999px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.18));
  opacity: 0.96;
  transform: rotate(-7deg) skewX(-10deg);
  transform-origin: left center;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 6%, #000 93%, transparent 100%),
    repeating-linear-gradient(104deg, #000 0 8px, transparent 8px 11px, #000 11px 25px);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 6%, #000 93%, transparent 100%),
    repeating-linear-gradient(104deg, #000 0 8px, transparent 8px 11px, #000 11px 25px);
  -webkit-mask-composite: source-in;
}

.line-one {
  transform: rotate(-0.5deg);
}

.line-one::after {
  bottom: -0.01em;
}

.line-two {
  margin-left: clamp(24px, 8vw, 150px);
  transform: rotate(-1.2deg);
}

.line-two::after {
  bottom: -0.03em;
  transform: rotate(-7deg) skewX(-10deg);
}

.hero-copy {
  margin: 0 0 60px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  display: inline-flex;
  width: min(100%, 820px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: #496be8;
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 64px 0;
}

.section-kicker {
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: #064f8f;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(245, 239, 44, 0.92);
  border-radius: 999px;
  clip-path: none;
}

.section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 7vw, 2.75rem);
  line-height: 1.2;
  font-weight: 900;
}

.worries,
.pricing {
  background: var(--white);
}

.worry-list,
.benefit-grid {
  display: grid;
  gap: 12px;
}

.worry-item,
.benefit-card,
.price-box,
.cta-panel,
.faq-item,
.store-info,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.06);
}

.worry-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
}

.worry-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.worry-item p,
.benefit-card p,
.price-note,
.cta-copy,
.faq-answer p,
.store-lead,
.store-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.benefits,
.faq,
.single-menu {
  background: #f7fcff;
}

.machine-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 32, 51, 0.92), rgba(6, 79, 143, 0.82)),
    url("./assets/car-wash-fv-dark.webp");
  background-position: center;
  background-size: cover;
}

.machine-section .section-kicker {
  color: #064f8f;
  background: var(--yellow);
}

.machine-section h2 {
  max-width: 900px;
  color: var(--white);
}

.machine-lead,
.single-menu-lead {
  max-width: 820px;
  margin: -8px 0 26px;
  font-weight: 800;
  line-height: 1.8;
}

.machine-lead {
  color: rgba(255, 255, 255, 0.86);
}

.single-menu-lead {
  color: var(--muted);
}

.machine-grid {
  display: grid;
  gap: 12px;
}

.machine-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.machine-card::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  content: "";
  background: radial-gradient(circle, rgba(245, 239, 44, 0.34), transparent 64%);
}

.machine-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 12px;
  color: #064f8f;
  font-size: 0.76rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
}

.machine-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.18rem;
}

.machine-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.8;
}

.feature-showcase {
  display: grid;
  gap: 14px;
}

.feature-tabs {
  display: grid;
  gap: 10px;
}

.feature-tab {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  color: var(--white);
  font-weight: 900;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.feature-tab span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #064f8f;
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
}

.feature-tab.is-active {
  color: #08233a;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(245, 239, 44, 0.9);
  transform: translateY(-2px);
}

.feature-tab-premium {
  border-color: rgba(245, 239, 44, 0.64);
}

.feature-tab-premium::after {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  color: #08233a;
  font-size: 0.68rem;
  font-weight: 900;
  content: "松橋店おすすめ";
  background: var(--yellow);
  border-radius: 999px;
}

.feature-detail {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 255, 0.94)),
    radial-gradient(circle at 90% 20%, rgba(245, 239, 44, 0.35), transparent 34%);
  border: 1px solid rgba(245, 239, 44, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 20, 40, 0.22);
}

.feature-detail::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(105, 195, 206, 0.34), transparent 64%);
}

.feature-detail-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 12px;
  color: #064f8f;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
}

.feature-push {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 14px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 48%, #68c7cf 100%);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(41, 69, 200, 0.18);
}

.feature-push[hidden] {
  display: none;
}

.feature-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 18px;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  border: 1px solid rgba(6, 79, 143, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(18, 49, 77, 0.12);
}

.feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-detail h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 5vw, 2.5rem);
  line-height: 1.2;
}

.feature-detail p[data-feature-copy] {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #34445f;
  font-weight: 800;
  line-height: 1.85;
}

.feature-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #132033;
  font-weight: 900;
  line-height: 1.55;
}

.feature-points li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 0.8rem;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.feature-video-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: min(100%, 360px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 48%, #68c7cf 100%);
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(41, 69, 200, 0.24);
}

.feature-video-link[hidden] {
  display: none;
}

.washer-specs {
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

.washer-specs-lead {
  max-width: 820px;
  margin: -8px 0 26px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.washer-specs-grid {
  display: grid;
  gap: 12px;
}

.washer-spec-card {
  position: relative;
  overflow: hidden;
  padding: 0 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.06);
}

.washer-spec-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(105, 195, 206, 0.22), transparent 64%);
}

.washer-spec-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 -22px 18px;
  aspect-ratio: 16 / 9;
  background: #dbe8f2;
}

.washer-spec-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.washer-spec-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: #064f8f;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 50%;
}

.washer-spec-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 900;
}

.washer-spec-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.machine-card-video {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.machine-card-video.is-open {
  border-color: rgba(245, 239, 44, 0.82);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.machine-card-content {
  display: grid;
  gap: 16px;
}

.video-reveal-button,
.machine-video-panel a {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
}

.video-reveal-button {
  color: #064f8f;
  background: var(--yellow);
  border: 0;
  box-shadow: 0 12px 24px rgba(245, 239, 44, 0.18);
}

.machine-video-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(245, 239, 44, 0.42);
  border-radius: var(--radius);
}

.machine-video-panel[hidden] {
  display: none;
}

.machine-video-panel p {
  color: var(--white);
  font-weight: 900;
}

.machine-video-panel a {
  color: var(--white);
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 48%, #68c7cf 100%);
  box-shadow: 0 14px 26px rgba(41, 69, 200, 0.24);
}

.menu-layout {
  display: grid;
  gap: 14px;
}

.course-list {
  display: grid;
  gap: 12px;
}

.course-card,
.option-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.06);
}

.course-card {
  padding: 18px;
}

.course-card.featured {
  border-color: rgba(32, 201, 120, 0.42);
  background: linear-gradient(180deg, #ecfff6, #ffffff);
}

.course-card p {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 10px;
  color: #064f8f;
  font-size: 0.72rem;
  font-weight: 900;
  background: #e8f7ff;
  border-radius: 999px;
}

.course-card.featured p {
  color: #064f8f;
  background: var(--yellow);
}

.course-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 900;
}

.course-card strong {
  display: block;
  margin-bottom: 10px;
  color: #064f8f;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 900;
}

.course-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.option-panel {
  padding: 20px;
}

.option-panel h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.option-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: start;
  color: #34445f;
  font-weight: 900;
  line-height: 1.55;
}

.option-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.option-list strong {
  color: #064f8f;
  font-weight: 900;
  white-space: nowrap;
}

.plan-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(61, 97, 232, 0.92), rgba(105, 195, 206, 0.88)),
    url("./assets/car-wash-hero.webp");
  background-position: center;
  background-size: cover;
}

.plan-section .section-kicker {
  color: #064f8f;
  background: rgba(255, 255, 255, 0.9);
}

.plan-section h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.plans-lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  line-height: 1.8;
}

.plans-grid {
  display: grid;
  gap: 14px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px 20px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 40, 70, 0.18);
}

.plan-card.recommended {
  border-color: rgba(245, 239, 44, 0.9);
  box-shadow: 0 22px 52px rgba(0, 40, 70, 0.24);
}

.plan-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: #064f8f;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.plan-card h3 {
  margin-bottom: 26px;
  font-size: 1.12rem;
  font-weight: 900;
}

.plan-price {
  margin: 0 0 24px;
  color: #101a2c;
  font-size: clamp(2.35rem, 8vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  margin-left: 3px;
  color: #40506b;
  font-size: 1rem;
}

.plan-features {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: #34445f;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.plan-features li::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.plan-features .included::before {
  color: var(--green);
  content: "✓";
}

.plan-features .excluded::before {
  color: #ff3448;
  content: "×";
}

.plan-button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  background: #eef6ff;
  border: 0;
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease;
}

.plan-button:hover {
  background: #e1efff;
  transform: translateY(-2px);
}

.benefit-card {
  padding: 22px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  color: #064f8f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), #fff8ac);
  border-radius: 50%;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.price-compare {
  display: grid;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 20px;
}

.price-box {
  padding: 20px;
}

.price-box.subscription {
  border-color: rgba(32, 201, 120, 0.45);
  background: linear-gradient(180deg, #ecfff6, #ffffff);
}

.price-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: #064f8f;
  border-radius: 999px;
}

.subscription .price-label {
  background: var(--green);
}

.price-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

.price-box strong span {
  font-size: 0.92rem;
}

.price-box p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.versus {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  justify-self: center;
  color: var(--white);
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.savings-table {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  align-items: center;
  min-height: 56px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

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

.table-row span {
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.table-head {
  color: #064f8f;
  background: #e8f7ff;
}

.table-row.highlight {
  background: #fff9d7;
}

.table-row.highlight span:last-child {
  color: #00864f;
}

.price-note {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-intro {
  max-width: 820px;
  margin: -8px 0 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.plan-sim-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.sim-card {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.06);
}

.sim-card.recommended {
  border-color: rgba(32, 201, 120, 0.42);
  background: linear-gradient(180deg, #ecfff6, #ffffff);
}

.sim-plan {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: #064f8f;
  border-radius: 999px;
}

.sim-card.recommended .sim-plan {
  color: #064f8f;
  background: var(--yellow);
}

.sim-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
}

.sim-card strong span {
  margin-left: 3px;
  font-size: 0.9rem;
}

.sim-card p:last-child {
  margin: 0;
  color: #00864f;
  font-weight: 900;
  line-height: 1.55;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr 1.1fr 1.1fr 1.18fr;
  min-width: 760px;
  border-bottom: 1px solid var(--line);
}

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

.comparison-row span {
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.comparison-head {
  color: #064f8f;
  background: #e8f7ff;
}

.comparison-row.highlight {
  background: #fff9d7;
}

.comparison-row .save {
  color: #00864f;
}

.comparison-row .loss {
  color: #d12e40;
}

.app-guide {
  background: #f7fcff;
}

.app-guide-lead {
  max-width: 780px;
  margin: -8px 0 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.guide-simple-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.guide-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.06);
}

.guide-card::after {
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  content: "";
  background: radial-gradient(circle, rgba(105, 195, 206, 0.2), transparent 64%);
}

.guide-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: #064f8f;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 50%;
}

.guide-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 900;
}

.guide-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.75;
}

.guide-card-accent {
  border-color: rgba(32, 201, 120, 0.42);
  background: linear-gradient(180deg, #ecfff6, #ffffff);
}

.guide-app-link {
  display: inline-flex;
  width: min(100%, 360px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 48%, #68c7cf 100%);
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(41, 69, 200, 0.24);
}

.cta-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 135, 255, 0.95), rgba(32, 201, 120, 0.9)),
    url("./assets/car-wash-hero.webp");
  background-position: center;
  background-size: cover;
}

.cta-inner {
  display: grid;
  gap: 24px;
}

.cta-section .section-kicker {
  color: var(--ink);
}

.cta-section h2,
.cta-copy {
  color: var(--white);
}

.cta-panel {
  padding: 18px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 0 20px;
  color: #08233a;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--yellow), #fff06a);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 194, 25, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-btn.wide {
  width: 100%;
}

.micro-copy {
  margin: 0;
  color: #064f8f;
  font-size: 0.86rem;
  font-weight: 800;
}

.badges {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  color: #064f8f;
  font-size: 0.9rem;
  font-weight: 900;
  background: #e8f7ff;
  border-radius: 999px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 0;
}

.faq-question span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
}

.faq-question span::before,
.faq-question span::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--white);
}

.faq-question span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 16px 18px;
}

.store {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.store-inner {
  display: grid;
  gap: 18px;
}

.store-info {
  padding: 22px;
}

.store-info h2 {
  margin-bottom: 14px;
}

.store-lead {
  margin-bottom: 18px;
  font-weight: 700;
}

.store-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.store-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.store-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.store-list dt {
  color: #064f8f;
  font-size: 0.82rem;
  font-weight: 900;
}

.store-list dd {
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  width: min(100%, 310px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(180deg, #2945c8 0%, #4f7de0 48%, #68c7cf 100%);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(41, 69, 200, 0.2);
}

.map-panel {
  overflow: hidden;
  min-height: 360px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
}

@media (min-width: 720px) {
  .section {
    padding: 86px 0;
  }

  .section-inner {
    padding-inline: 32px;
  }

  .worry-list,
  .benefit-grid,
  .cta-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .machine-grid,
  .course-list,
  .washer-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-simple-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-showcase {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: stretch;
  }

  .menu-layout {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .price-compare {
    grid-template-columns: 1fr auto 1fr;
  }

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

  .cta-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .store-inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }

  .badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 920px) {
  .plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

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

  .plan-sim-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .plan-card {
    padding: 28px 24px 24px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 82px;
    padding: 14px 26px;
  }

  .global-nav {
    display: none;
  }

  .header-cta {
    min-height: 52px;
    padding-inline: 22px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 14px;
    width: calc(100% - 24px);
    min-height: 68px;
    padding: 10px 14px 10px 20px;
    gap: 10px;
  }

  .brand-main {
    font-size: 1.2rem;
  }

  .brand-dot {
    font-size: 0.92rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero-bg {
    background-position: 56% center;
  }

  .hero-inner {
    padding: 128px 20px 54px;
    align-content: center;
  }

  .eyebrow {
    min-height: 42px;
    margin-bottom: 24px;
    padding: 0 22px;
    font-size: 1.1rem;
  }

  .hero-title {
    gap: 0;
    margin-bottom: 32px;
    font-size: clamp(2.55rem, 12vw, 4.25rem);
    line-height: 1.08;
  }

  .line-two {
    margin-left: 6vw;
  }

  .hero-copy {
    margin-bottom: 34px;
    font-size: 1.28rem;
  }

  .hero-cta {
    min-height: 64px;
    padding-inline: 20px;
    font-size: 1rem;
  }

  .table-row {
    grid-template-columns: 0.8fr 0.9fr 1fr;
    padding: 10px;
  }

  .table-row span {
    font-size: 0.78rem;
  }
}
