:root {
  --page-bg: #eef3f8;
  --text: #101827;
  --muted: #526176;
  --blue: #0878ff;
  --cyan: #00bfdc;
  --panel: #ffffff;
  --content-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; }
.skip-link {
  position: fixed;
  left: -9999px;
  top: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: .5rem;
}
.skip-link:focus { left: .75rem; }

.hero-section,
.content-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.hero-section { position: relative; background: #000; }

/* Every finished promotional image is shown in its complete original composition. */
.full-screen-image {
  width: 100vw;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.hero-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hotspot { position: absolute; display: block; pointer-events: auto; }
.hotspot.how { left: 19.3%; top: 1.8%; width: 11.7%; height: 8%; }
.hotspot.benefits { left: 32.3%; top: 1.8%; width: 12.7%; height: 8%; }
.hotspot.safety { left: 45.6%; top: 1.8%; width: 9%; height: 8%; }
.hotspot.location { left: 54.8%; top: 1.8%; width: 9%; height: 8%; }
.hotspot.routine { left: 64.7%; top: 1.8%; width: 10.6%; height: 8%; }
.hotspot.prices { left: 75.1%; top: 1.8%; width: 5.2%; height: 8%; }
.hotspot.top-cta { left: 80.6%; top: 1%; width: 18.6%; height: 9.5%; }
.hotspot.main-cta { left: 2.8%; top: 68.2%; width: 31.2%; height: 10.3%; }

.section-heading,
.text-panel {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}
.section-heading {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1.25rem, 2vw, 2rem);
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.section-heading.accent h2 { color: #d52c26; }

.text-panel {
  margin-top: 0;
  margin-bottom: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--panel);
  box-shadow: 0 16px 45px rgba(13, 30, 54, .10);
  border-radius: 0 0 24px 24px;
}
.text-panel h2 {
  margin: 0 0 1.35rem;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.12;
}
.text-panel h3 {
  margin: 0 0 1.2rem;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.2;
}
.text-panel h4 {
  margin: 2rem 0 .8rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}
.text-panel p,
.text-panel li {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}
.text-panel p { margin: 0 0 1.2rem; }
.text-panel p:last-child { margin-bottom: 0; }
.text-panel ul { margin: 1rem 0 1.5rem; padding-left: 1.5rem; }
.text-panel strong { color: #071321; }

.site-footer {
  padding: 2rem 1rem;
  background: #02050a;
  color: #fff;
  text-align: center;
  font-size: .95rem;
}

@media (max-width: 760px) {
  .section-heading,
  .text-panel { width: min(calc(100% - 1rem), var(--content-width)); }
  .section-heading { padding-top: 1.75rem; }
  .text-panel {
    padding: 1.25rem;
    margin-bottom: 3rem;
    border-radius: 0 0 14px 14px;
  }
  .text-panel p,
  .text-panel li { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
