:root {
  color-scheme: light;
  --ink: #152736;
  --muted: #5f7280;
  --line: #dbe8eb;
  --blue: #2d9ee0;
  --blue-dark: #116998;
  --mint: #6bcbbc;
  --mint-soft: #dff7f3;
  --pearl: #f7fbfb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 39, 54, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 18px;
  background: linear-gradient(90deg, var(--ink), #1f5666);
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
}

.top-bar-link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 232, 235, 0.85);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span span {
  color: var(--blue);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint-soft);
  color: var(--blue-dark);
  font-size: 0.75rem;
  border: 1px solid #bceae4;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #2c4050;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(45, 158, 224, 0.25);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 203, 188, 0.22), transparent 34%),
    linear-gradient(180deg, #f5fbfc 0%, #ffffff 100%);
}

.hero-grid,
.split-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-lede,
.section-intro p,
.split-grid p,
.final-grid p,
.guarantee-panel p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(21, 39, 54, 0.12);
}

.avatar-stack img + img {
  margin-left: -13px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.chip-list li {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.9rem;
  color: #2f5362;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.support-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-media,
.image-frame,
.final-grid img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pearl);
}

.hero-media img,
.image-frame img,
.final-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 232, 235, 0.9);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(21, 39, 54, 0.13);
}

.note-top {
  top: 18px;
}

.note-bottom {
  right: 18px;
  bottom: 18px;
  left: auto;
}

.overview {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.benefits,
.faq,
.comparison {
  background: var(--pearl);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.benefit-grid,
.price-grid,
.review-grid,
.routine-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.price-card,
.review-card,
.routine-card,
.guarantee-panel,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 39, 54, 0.06);
}

.benefit-card {
  padding: 26px;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-card p,
.routine-card p,
.price-card p,
.review-card p {
  margin-top: 12px;
  color: var(--muted);
}

.visual-story {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbfa 100%);
}

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

.routine-card {
  overflow: hidden;
}

.routine-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.routine-card span {
  display: inline-flex;
  margin: 20px 22px 10px;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.routine-card h3,
.routine-card p {
  margin-inline: 22px;
}

.routine-card p {
  margin-bottom: 24px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child,
tbody th {
  text-align: left;
}

thead th {
  background: #eaf8fb;
  color: var(--ink);
  font-size: 0.9rem;
}

tbody td:nth-child(2),
thead th:nth-child(2) {
  color: var(--blue-dark);
  font-weight: 900;
}

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

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 20px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--mint);
  box-shadow: 0 24px 60px rgba(45, 158, 224, 0.18);
  transform: translateY(-10px);
}

.value-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
}

.price-card h3 {
  min-height: 68px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}

.badge-row span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.price span {
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
}

.package-detail,
.total {
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.trust-grid div {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.review-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 22px;
}

.review-card img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.review-score {
  margin-top: 0;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.86rem;
}

.review-card span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-card-portrait {
  display: block;
  text-align: center;
  padding: 28px 24px;
}

.review-card-portrait img {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border: 4px solid var(--mint-soft);
  box-shadow: 0 10px 24px rgba(21, 39, 54, 0.12);
}

.review-card-portrait .review-score {
  margin: 0 0 10px;
  color: #e3a41a;
  letter-spacing: 0;
}

.guarantee {
  background: var(--white);
}

.guarantee-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px;
  background: linear-gradient(135deg, #f8ffff, #e8fbf8);
}

.guarantee-panel div {
  max-width: 720px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

details {
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(135deg, var(--ink), #214e60);
  color: var(--white);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  opacity: 0.84;
}

.site-footer {
  padding: 44px 0 96px;
  background: #101c27;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner p {
  max-width: 540px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--white);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-links button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 6px 0;
}

.legal-links button:hover,
.legal-links button:focus-visible {
  color: var(--white);
}

.sticky-offer {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
}

.sticky-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 12px 34px rgba(21, 39, 54, 0.2);
  font-weight: 950;
  text-decoration: none;
}

.modal-overlay,
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 20, 28, 0.62);
}

.modal-overlay[hidden],
.exit-overlay[hidden] {
  display: none;
}

.legal-modal,
.exit-panel {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.legal-modal {
  padding: 34px;
}

.legal-modal h2,
.exit-panel h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.modal-body {
  margin-top: 18px;
  color: var(--muted);
}

.modal-body p + p {
  margin-top: 14px;
}

.modal-close,
.exit-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
}

.exit-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.exit-image {
  position: relative;
  min-height: 100%;
  background: var(--mint-soft);
}

.exit-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.exit-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(21, 39, 54, 0.16);
}

.exit-copy {
  padding: 38px;
  align-self: center;
}

.exit-copy > p {
  margin-top: 16px;
  color: var(--muted);
}

.exit-mini-reviews {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.exit-mini-reviews article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pearl);
}

.exit-mini-reviews img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.exit-mini-reviews p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.exit-panel .button {
  margin-top: 24px;
  width: 100%;
}

@media (max-width: 920px) {
  .section-pad {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .sticky-offer {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .split-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .price-grid,
  .routine-grid,
  .review-grid,
  .review-grid-three,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .guarantee-panel,
  .footer-inner,
  .exit-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-inner,
  .legal-links {
    justify-content: flex-start;
  }

  .exit-image img {
    min-height: 220px;
    aspect-ratio: 1.4;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .top-bar {
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 13vw, 3.1rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .rating-row {
    align-items: flex-start;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .legal-modal,
  .exit-copy,
  .guarantee-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
