:root {
  --taupe: #7F675B;
  --aqua: #B0E0E6;
  --teal: #254951;
  --cream: #F5ECE0;
  --white: #ffffff;
  --ink: #203033;
  --muted: #647174;
  --line: rgba(37, 73, 81, 0.16);
  --shadow: 0 22px 60px rgba(37, 73, 81, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(245, 236, 224, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 180px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.nav a {
  padding: 8px 0;
}

.header-cta,
.button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary,
.floating-whatsapp {
  color: var(--cream);
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(37, 73, 81, 0.2);
}

.button.secondary {
  color: var(--teal);
  background: var(--aqua);
}

.header-cta:hover,
.button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 84px) 40px;
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 62%, var(--aqua) 62%, var(--aqua) 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--teal);
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #46575a;
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.hero-stats span {
  min-height: 92px;
  padding: 16px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.quick-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px clamp(18px, 5vw, 84px);
  color: var(--cream);
  background: var(--teal);
}

.quick-cta p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.quick-cta a {
  padding: 10px 16px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 6px;
  font-weight: 900;
}

.section,
.split-section,
.contact {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 84px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.service-card {
  min-height: 100%;
  padding: 12px 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(37, 73, 81, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 7px;
  background: var(--aqua);
}

.service-card h3 {
  margin-top: 16px;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.service-card.lipedema {
  background: var(--teal);
}

.service-card.lipedema h3,
.service-card.lipedema p {
  color: var(--cream);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process {
  background: var(--aqua);
}

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

.steps article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 73, 81, 0.14);
  border-radius: 8px;
}

.steps span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cream);
  background: var(--taupe);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: #405255;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  background: var(--teal);
}

.split-section.reverse h2,
.split-section.reverse p,
.split-section.reverse .check-list li {
  color: var(--cream);
}

.split-section.reverse .eyebrow {
  color: var(--aqua);
}

.split-section > img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-section p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  color: var(--teal);
  background: rgba(176, 224, 230, 0.38);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.compact {
  background: var(--cream);
}

.compact .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why {
  color: var(--cream);
  background: var(--taupe);
}

.why h2,
.why .eyebrow {
  color: var(--cream);
}

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

.why-grid article {
  min-height: 160px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.why-grid strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.why-grid span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
}

.faq {
  background: var(--cream);
}

details {
  max-width: 920px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  color: var(--teal);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  background: var(--teal);
}

.contact h2,
.contact .eyebrow {
  color: var(--cream);
}

.contact p {
  margin: 10px 0;
  font-size: 18px;
}

.contact a:not(.button) {
  color: var(--aqua);
  font-weight: 900;
}

.contact .button.primary {
  color: var(--teal);
  background: var(--aqua);
  box-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 84px);
  color: var(--teal);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 150px;
}

.footer span {
  font-weight: 800;
}

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

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

  .hero {
    background: var(--cream);
  }

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

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-actions,
  .quick-cta,
  .contact,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .quick-cta a,
  .contact .button {
    width: 100%;
  }

  .hero-stats,
  .steps,
  .service-grid,
  .why-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
    bottom: 12px;
  }

  .footer {
    padding-bottom: 82px;
  }
}
