:root {
  --ink: #172117;
  --muted: #58675b;
  --teal: #2f7f3d;
  --teal-dark: #1f5f2f;
  --teal-soft: #e4f3e4;
  --mint: #f4fbf4;
  --warm: #fff8f1;
  --coral: #b70408;
  --line: #dce8dc;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 33, 23, 0.13);
  --radius: 8px;
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  overscroll-behavior-y: none;
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(183, 4, 8, 0.28);
  outline-offset: 4px;
}

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

svg {
  display: block;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(var(--max), calc(100% - 24px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(23, 33, 23, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(31, 95, 47, 0.14));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--teal-dark);
}

.button {
  padding: 13px 18px;
}

.whatsapp-icon {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.08em;
  line-height: 1;
}

.header-action .whatsapp-icon {
  font-size: 1em;
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(31, 95, 47, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
}

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 47, 0.22);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 64px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-raphaela.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.18) 46%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(180deg, rgba(244, 251, 244, 0.04) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: max(calc((100vw - var(--max)) / 2), 20px);
}

.hero-logo {
  width: min(260px, 68vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 12px 22px rgba(31, 95, 47, 0.12));
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: #2b3d2d;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-note {
  max-width: 560px;
  margin-bottom: 26px;
  color: #465746;
  font-size: 0.95rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(31, 95, 47, 0.2);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-band {
  position: relative;
  padding: 46px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(183, 4, 8, 0.045) 0%, rgba(183, 4, 8, 0) 30%),
    linear-gradient(235deg, rgba(31, 95, 47, 0.09) 0%, rgba(31, 95, 47, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f5fbf4 100%);
}

.proof-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 95, 47, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 95, 47, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  opacity: 0.58;
  pointer-events: none;
}

.trust-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(31, 95, 47, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 24px 80px rgba(23, 33, 23, 0.1);
  backdrop-filter: blur(18px);
}

.trust-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 10px;
}

.trust-intro h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.6rem, 2.25vw, 2.35rem);
  line-height: 1.05;
}

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

.proof-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(31, 95, 47, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 244, 0.82));
  box-shadow: 0 14px 42px rgba(23, 33, 23, 0.06);
}

.proof-icon,
.focus-icon,
.step-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.proof-icon svg,
.focus-icon svg,
.step-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(31, 95, 47, 0.1);
}

.proof-grid article > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 1.05rem;
  line-height: 1.18;
}

.proof-grid article > span:not(.proof-icon) {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.split-grid,
.location-grid,
.faq-grid {
  display: grid;
  gap: 56px;
  align-items: start;
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.consult-grid {
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-copy {
  position: sticky;
  top: 112px;
}

h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.assist-note {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  background: var(--mint);
}

.assist-note strong,
.assist-note span {
  display: block;
}

.assist-note strong {
  color: var(--teal-dark);
}

.assist-note span {
  color: var(--muted);
}

.lead-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card h3 {
  max-width: 440px;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.04;
}

.lead-card p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 24px;
  color: #314541;
  font-weight: 750;
}

.mini-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.evaluation-section {
  background: #f8fbf9;
}

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

.focus-list article,
.steps article,
.contact-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.focus-list article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 244, 0.88));
  box-shadow: 0 18px 50px rgba(23, 33, 23, 0.055);
}

.focus-list article::after {
  content: attr(data-index);
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(31, 95, 47, 0.07);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.focus-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--coral);
  background: rgba(183, 4, 8, 0.07);
  box-shadow: inset 0 0 0 1px rgba(183, 4, 8, 0.1);
}

.focus-list h3,
.focus-list p {
  position: relative;
  z-index: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.focus-list p,
.steps p,
.contact-panel p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.warm-section {
  background: var(--warm);
}

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

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 95, 47, 0.18), rgba(183, 4, 8, 0.2), rgba(31, 95, 47, 0.18));
  pointer-events: none;
}

.steps article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.86));
  box-shadow: 0 18px 50px rgba(23, 33, 23, 0.06);
}

.step-icon {
  display: inline-grid;
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow:
    0 16px 28px rgba(31, 95, 47, 0.18),
    0 0 0 8px var(--warm);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-label {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-section {
  background: var(--white);
}

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

.pillars div {
  min-height: 86px;
  display: grid;
  align-items: center;
  padding: 20px 22px;
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 850;
}

.doctor-section {
  background: var(--mint);
}

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.doctor-card {
  padding: 32px;
  border: 1px solid rgba(31, 95, 47, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 58px rgba(23, 33, 23, 0.1);
}

.doctor-photo {
  display: block;
  width: 100%;
  height: clamp(380px, 44vw, 520px);
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center 12%;
}

.doctor-mark {
  display: inline-grid;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.doctor-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1.04;
}

.doctor-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.credential-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.credential-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.credential-list dt {
  color: var(--muted);
  font-weight: 800;
}

.credential-list dd {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: right;
}

.section-cta {
  margin-top: 22px;
}

.location-section {
  background: #f8fbf9;
}

.location-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
}

address {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.08rem;
}

.schedule {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.schedule strong,
.schedule span {
  display: block;
}

.schedule span {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.full-width {
  width: 100%;
}

.phone-link,
.route-link {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  text-align: center;
  font-weight: 900;
}

.route-link {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

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

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

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

.faq-list summary::marker {
  color: var(--coral);
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button-primary {
  color: var(--teal-dark);
  background: var(--white);
}

.site-footer {
  padding: 34px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #142114;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

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

.footer-grid strong,
.footer-grid a {
  color: var(--white);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.footer-social-icon {
  display: inline-block;
  font-size: 1.08rem;
  line-height: 1;
}

.footer-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  .site-header {
    top: 10px;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .trust-shell {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .split-grid,
  .split-grid.reverse,
  .location-grid,
  .doctor-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .location-grid {
    gap: 34px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 9px 10px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 98px 0 44px;
  }

  .hero-media {
    background-image: url("/assets/hero-raphaela-mobile.webp");
    background-position: 18% top;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.98) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    margin: 0 auto;
  }

  .hero .eyebrow {
    max-width: 30ch;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-logo {
    width: min(210px, 58vw);
    margin-bottom: 14px;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.18rem, 9.4vw, 2.95rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 1.02rem;
  }

  .hero-note {
    max-width: 34ch;
    font-size: 0.92rem;
  }

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

  .button {
    min-height: 48px;
  }

  .proof-band {
    padding: 72px 0 56px;
  }

  .trust-shell {
    padding: 24px;
  }

  .proof-grid,
  .focus-list,
  .steps,
  .pillars {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: auto;
    padding: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .focus-list article,
  .steps article,
  .lead-card,
  .doctor-card {
    min-height: auto;
    padding: 22px;
  }

  .doctor-photo {
    height: min(316px, calc(100vw - 74px));
    aspect-ratio: auto;
    object-position: center 12%;
  }

  .focus-icon,
  .step-icon {
    margin-bottom: 18px;
  }

  .step-label {
    margin-bottom: 18px;
  }

  .final-cta {
    padding: 64px 0 88px;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--teal-dark);
    box-shadow: 0 18px 44px rgba(31, 95, 47, 0.32);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
