:root {
  --ink: #102c34;
  --muted: #61767c;
  --paper: #f7fbfa;
  --white: #ffffff;
  --mint: #cdeee8;
  --teal: #087f75;
  --teal-dark: #075f59;
  --coral: #ff8d72;
  --coral-strong: #f06f55;
  --line: rgba(16, 44, 52, 0.12);
  --shadow: 0 24px 58px rgba(23, 77, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.section,
.hero {
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(13, 58, 64, 0.13);
  backdrop-filter: blur(18px);
}

.compact-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.brand,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: clamp(34px, 4vw, 56px);
  height: clamp(34px, 4vw, 56px);
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.button {
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
}

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

.button.is-loading,
.button.loading {
  gap: 10px;
  pointer-events: none;
  opacity: 0.72;
}

.button.is-loading::before,
.button.loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 720ms linear infinite;
}

.primary {
  background: var(--coral-strong);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(240, 111, 85, 0.34);
}

.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(16, 44, 52, 0.16);
}

.secondary.dark {
  background: rgba(16, 44, 52, 0.08);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 118px 0 64px;
}

.conversion-hero {
  min-height: auto;
  background:
    linear-gradient(115deg, rgba(205, 238, 232, 0.52) 0%, rgba(247, 251, 250, 0) 44%),
    var(--paper);
}

.hero-shell {
  display: grid;
  width: min(1240px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
}

.hero-media {
  position: relative;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 52, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 610px;
  height: clamp(610px, 72svh, 720px);
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 44, 52, 0.4) 0%, rgba(16, 44, 52, 0.58) 100%),
    linear-gradient(115deg, rgba(16, 44, 52, 0.4) 0%, rgba(16, 44, 52, 0.68) 74%);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 760px;
  padding: 0 0 12px;
}

.hero-content::after {
  display: none;
}

.eyebrow,
.form-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 4vw, 3.85rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 660px;
  color: #3c5960;
  font-size: 1.08rem;
}

.benefit-list {
  display: grid;
  max-width: 680px;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 0.24em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(8, 127, 117, 0.12);
}

.hero-actions {
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 10px;
}

.cta-note {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.inline-guide-link {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.guide-button {
  max-width: 520px;
  min-height: 52px;
  padding: 0 20px;
  color: var(--teal-dark);
  text-align: center;
  white-space: normal;
}

.support-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-row {
  display: flex;
  max-width: 650px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(8, 127, 117, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0 14px;
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div,
.authority-strip div,
.appointment-card,
.service-card,
.doctor-card,
blockquote {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 127, 117, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  box-shadow: 0 18px 48px rgba(23, 77, 86, 0.08);
  transform: translateY(-22px);
}

.authority-strip.section {
  padding: 0;
}

.authority-strip div {
  min-height: 118px;
  padding: 24px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.authority-strip div + div {
  border-left: 1px solid rgba(16, 44, 52, 0.1);
}

.metric-icon {
  display: block;
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.authority-strip .metric-icon {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 0;
  color: var(--teal-dark);
}

.metric-symbol {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(8, 127, 117, 0.12);
  color: var(--teal-dark);
  font-size: 0.78rem;
  line-height: 1;
}

.authority-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 0.95;
}

.authority-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.authority-strip .metric-symbol {
  display: inline-grid;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.78rem;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 700;
}

.appointment-card {
  position: absolute;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 3;
  width: min(405px, calc(100% - 32px));
  padding: 26px;
  border-color: rgba(16, 44, 52, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(13, 58, 64, 0.22);
  backdrop-filter: blur(16px);
}

.scarcity-badge {
  position: sticky;
  top: 1rem;
  z-index: 4;
  display: grid;
  width: fit-content;
  max-width: min(520px, 100%);
  gap: 2px;
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background: rgba(16, 44, 52, 0.76);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(13, 58, 64, 0.24);
  backdrop-filter: blur(14px);
}

.scarcity-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scarcity-badge strong {
  font-size: 0.94rem;
  line-height: 1.28;
}

.urgency-badge {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border-radius: 14px;
  background: rgba(255, 141, 114, 0.18);
  color: #7d2d1b;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.appointment-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.34rem;
  line-height: 1.2;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f7fbfa;
  color: var(--ink);
  font: inherit;
  padding: 0 15px;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 159, 145, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  padding: 0;
  transform: translateY(-22px);
}

.strip-item {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.strip-item span {
  color: var(--coral);
  font-weight: 800;
}

.strip-item strong {
  display: block;
  margin: 24px 0 8px;
  font-size: 1.16rem;
}

.strip-item p,
.section-heading p,
.experience-copy p,
.service-card p,
.doctor-card p,
blockquote p,
.contact p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.doctor-card:hover,
blockquote:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 159, 145, 0.25);
}

.service-card.featured {
  background: var(--ink);
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card a {
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-card.featured a {
  color: var(--mint);
}

.experience {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 54px;
  align-items: center;
}

.conversion-section {
  padding-top: 34px;
}

.experience-image {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.experience-image img {
  width: 100%;
  min-height: 0;
  height: auto;
  object-fit: cover;
  object-position: 50% center;
}

.experience-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.experience-copy li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.experience-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 141, 114, 0.16);
}

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

.team-showcase,
.doctor-grid,
.testimonial-grid {
  display: grid;
}

.team-showcase {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 16px;
}

.team-copy {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.team-copy .eyebrow {
  color: var(--mint);
}

.team-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.team-showcase img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.team-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.team-points span {
  display: block;
  border-top: 1px solid rgba(205, 238, 232, 0.2);
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.team-media {
  position: relative;
  min-width: 0;
}

.mini-testimonial {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(13, 58, 64, 0.16);
}

.mini-testimonial strong,
.mini-testimonial span {
  display: block;
}

.mini-testimonial strong {
  line-height: 1.3;
}

.mini-testimonial span {
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.doctor-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.doctor-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.doctor-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor-card p {
  margin-bottom: 0;
}

blockquote {
  min-height: 240px;
  margin: 0;
  padding: 28px;
  border-radius: 26px;
  transition: transform 220ms ease, border-color 220ms ease;
}

blockquote img {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(16, 44, 52, 0.08);
  object-fit: cover;
}

blockquote p {
  font-size: 1.05rem;
}

cite {
  display: block;
  margin-top: 24px;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 800;
}

cite span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

cite span + span {
  margin-top: 2px;
}

.guarantee,
.final-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: 30px;
}

.guarantee {
  grid-template-columns: 1fr auto;
  padding: 46px;
  background: var(--ink);
  color: var(--white);
}

.guarantee .eyebrow {
  color: var(--mint);
}

.guarantee p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(23, 77, 86, 0.08);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

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

summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

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

.final-cta {
  justify-items: center;
  padding: 58px 28px;
  background: var(--mint);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(7, 95, 89, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0 18px;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.final-cta > p:not(.eyebrow):not(.cta-note) {
  max-width: 640px;
  color: var(--muted);
}

.thanks-page,
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.thanks-page {
  width: min(1180px, calc(100% - 32px));
  padding-top: 128px;
}

.thanks-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(8, 127, 117, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(205, 238, 232, 0.78), rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: 0 24px 70px rgba(13, 58, 64, 0.12);
}

.thanks-copy {
  display: grid;
  align-content: center;
}

.thanks-copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
}

.thanks-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #3c5960;
  font-size: 1.05rem;
}

.next-step-card,
.value-card,
.thanks-note {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(23, 77, 86, 0.08);
}

.next-step-card {
  display: grid;
  align-content: center;
  padding: 30px;
  border-radius: 24px;
}

.next-step-card h2 {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  line-height: 1.18;
}

.next-step-card ol,
.value-card p {
  color: var(--muted);
}

.next-step-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  font-weight: 700;
}

.value-section {
  padding: 58px 0 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 238px;
  padding: 26px;
  border-radius: 22px;
}

.value-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(8, 127, 117, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 8px;
}

.thanks-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 22px;
}

.thanks-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-page {
  color: var(--ink);
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.legal-page p {
  max-width: 760px;
  color: var(--muted);
}

.legal-page .button {
  margin-top: 18px;
}

.guide-page ol {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin: 28px 0;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  padding: 42px;
  border-radius: 30px;
  background: var(--mint);
}

.contact h2 {
  max-width: 720px;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-footer a {
  color: var(--teal-dark);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: min(360px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.toast::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 4px;
  height: calc(100% - 32px);
  border-radius: 0 999px 999px 0;
  background: var(--mint);
}

.toast-success {
  background: #0d3a40;
}

.toast-error {
  background: #5c2419;
}

.toast-error::before {
  background: var(--coral);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  display: block;
  margin-bottom: 2px;
}

.toast span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

[data-reveal] {
  transform: translateY(4px);
  opacity: 0.9;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 300ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.intro-strip[data-reveal] {
  transform: translateY(-4px);
}

.intro-strip[data-reveal].is-visible {
  transform: translateY(-22px);
}

.authority-strip[data-reveal] {
  transform: translateY(-4px);
}

.authority-strip[data-reveal].is-visible {
  transform: translateY(-22px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.55rem, 6vw, 3.15rem);
    line-height: 1.02;
  }

  .hero-media img {
    min-height: 470px;
    height: 58svh;
    object-position: 62% center;
  }

  .appointment-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    margin: -116px 22px 0 auto;
  }

  .scarcity-badge {
    position: relative;
    top: auto;
    width: fit-content;
  }

  .hero-stats,
  .intro-strip,
  .authority-strip,
  .service-grid,
  .experience,
  .team-showcase,
  .doctor-grid,
  .testimonial-grid,
  .thanks-hero,
  .value-grid,
  .guarantee,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .authority-strip div + div {
    border-top: 1px solid rgba(16, 44, 52, 0.1);
    border-left: 0;
  }

  .service-card,
  .strip-item {
    min-height: auto;
  }

  .experience-image {
    min-height: auto;
  }

  .experience-image img,
  .team-showcase img,
  .team-copy {
    min-height: 420px;
  }

  .experience-image img {
    min-height: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .thanks-page {
    padding-top: 112px;
  }

  .thanks-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .guarantee {
    padding: 32px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    border-radius: 22px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .hero {
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.05rem, 8.2vw, 2.34rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .thanks-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-media {
    border-radius: 24px;
  }

  .hero-media img {
    min-height: 340px;
    height: 390px;
    object-position: 64% center;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-actions .secondary {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .trust-row span {
    justify-content: center;
    padding: 0 10px;
    text-align: center;
  }

  .hero-actions .button,
  .contact-actions .button,
  .thanks-actions .button,
  .section-cta,
  .guarantee .button,
  .final-cta .button {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .header-cta::after {
    content: "WhatsApp";
    font-size: 0.78rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .appointment-card,
  .contact,
  .next-step-card,
  .value-card,
  .thanks-hero,
  .thanks-note,
  .guarantee {
    padding: 22px;
    border-radius: 24px;
  }

  .appointment-card {
    max-width: none;
    margin: 14px 0 0;
  }

  .scarcity-badge {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin: 18px 0 0;
  }

  .appointment-card,
  blockquote,
  .service-card,
  .doctor-card {
    box-shadow: 0 12px 28px rgba(23, 77, 86, 0.08);
  }

  .section {
    padding: 48px 0;
  }

  .team-copy {
    padding: 28px;
  }

  .experience-image img,
  .team-showcase img {
    min-height: 320px;
  }

  .experience-image img {
    min-height: 0;
  }

  .mini-testimonial {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -44px 14px 0;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .doctor-card {
    min-height: auto;
  }

  .doctor-card span {
    margin-bottom: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }

  body::before {
    display: none;
  }
}
