:root {
  --bg: #f7f5f2;
  --ink: #1f2933;
  --muted: #687481;
  --panel: rgba(255, 255, 255, .78);
  --line: rgba(31, 41, 51, .12);
  --rose: #c07886;
  --wine: #7f3f50;
  --mint: #8ed7c6;
  --champagne: #f3e5d3;
  --shadow: 0 24px 80px rgba(60, 42, 48, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 8%, rgba(192, 120, 134, .22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(142, 215, 198, .2), transparent 28%),
    linear-gradient(180deg, #f8f5f1 0%, #f7f5f2 55%, #fff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 242, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small,
nav,
.hero-copy p,
.trust-row span,
.section-head p,
.treatment-grid p,
.comparison-copy p,
.split p,
.team-grid span,
.review-grid p,
.faq-list p,
.sales-callout p,
.footer {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  color: var(--wine);
}

.top-cta,
.primary,
.secondary,
.floating-cta,
.footer a,
.treatment-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(127, 63, 80, .26);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  font-weight: 900;
  cursor: pointer;
}

.primary,
.floating-cta,
.treatment-grid button {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--wine), var(--rose));
  box-shadow: 0 16px 36px rgba(127, 63, 80, .2);
}

.secondary {
  background: rgba(255, 255, 255, .48);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: 80vh;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.hero-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img,
.treatment-grid img,
.team-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy > p:not(.eyebrow),
.comparison-copy p,
.split p,
.sales-callout p {
  font-size: 19px;
  line-height: 1.7;
}

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

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

.trust-row span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.trust-row strong {
  display: block;
  color: var(--wine);
  font-size: 26px;
}

.section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: 30px;
}

.compact-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.treatment-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.treatment-grid article,
.review-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 40px rgba(60, 42, 48, .08);
}

.treatment-grid article {
  overflow: hidden;
}

.treatment-grid img {
  height: 260px;
}

.treatment-grid span,
.review-grid span {
  display: block;
  margin: 22px 22px 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.treatment-grid h3,
.treatment-grid p,
.treatment-grid button {
  margin-left: 22px;
  margin-right: 22px;
}

.treatment-grid p,
.review-grid p {
  line-height: 1.65;
}

.treatment-grid button {
  margin-bottom: 22px;
}

.results-section,
.testimonials,
.journey-section {
  background: rgba(255, 255, 255, .36);
}

.comparison,
.split,
.sales-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.comparison-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comparison-card img,
.after-layer img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.after-layer {
  position: absolute;
  inset: 0;
  width: 52%;
  overflow: hidden;
  border-right: 3px solid #fff;
}

#compareSlider {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(80%, 520px);
  accent-color: var(--wine);
}

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

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

.journey-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.journey-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
  font-weight: 900;
}

.journey-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.journey-grid p,
.technology-card p {
  color: var(--muted);
  line-height: 1.65;
}

.technology-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(243, 229, 211, .64)),
    radial-gradient(circle at 90% 0%, rgba(142, 215, 198, .26), transparent 34%);
  box-shadow: var(--shadow);
}

.technology-card h2 {
  max-width: 680px;
}

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

.feature-list span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  font-weight: 800;
}

.team-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.team-grid img {
  height: 330px;
}

.team-grid strong,
.team-grid span {
  display: block;
  margin: 18px 20px;
}

.team-grid strong {
  margin-bottom: 6px;
}

.team-grid span {
  margin-top: 0;
}

.review-grid article {
  min-height: 210px;
  padding: 24px;
}

.review-grid span {
  margin: 0 0 18px;
  color: #d59a31;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  line-height: 1.65;
}

.sales-callout {
  border-top: 1px solid var(--line);
  padding: clamp(46px, 7vw, 82px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(127, 63, 80, .1), rgba(142, 215, 198, .12));
}

.sales-callout > div {
  max-width: 760px;
}

.sales-callout h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.sales-callout .primary {
  justify-self: end;
  min-width: min(100%, 280px);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero,
  .comparison,
  .split,
  .sales-callout,
  .treatment-grid,
  .review-grid,
  .team-grid,
  .journey-grid,
  .technology-card,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .compact-head {
    display: block;
  }

  .sales-callout .primary {
    justify-self: start;
  }

  .hero-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: 40px;
  }
}
