:root {
  --teal-900: #083f3a;
  --teal-800: #0f5f58;
  --teal-700: #0f766e;
  --teal-100: #d8f3ee;
  --teal-50: #effaf7;
  --sage: #8fb8a3;
  --cream: #fffaf1;
  --gold: #c79645;
  --ink: #142321;
  --muted: #5f706d;
  --white: #ffffff;
  --line: rgba(20, 35, 33, 0.12);
  --shadow: 0 24px 70px rgba(8, 63, 58, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal-900);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 99;
}

.skip-link:focus {
  top: 1rem;
}

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

.section-padding {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 10px 30px rgba(15, 118, 110, .25);
}

.brand-mark.large {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  font-size: 1.3rem;
}

.brand strong {
  display: block;
  font-size: .98rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: .94rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--teal-900);
}

.nav-links a:hover {
  color: var(--teal-700);
}

.nav-cta {
  background: var(--teal-700);
  color: var(--white) !important;
  padding: .78rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 118, 110, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal-900);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 58vw;
  height: 58vw;
  min-width: 520px;
  min-height: 520px;
  background: radial-gradient(circle, rgba(216,243,238,.95), rgba(255,250,241,0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 14px;
}

h1, h2, h3 {
  color: var(--teal-900);
  line-height: 1.08;
  margin-top: 0;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  letter-spacing: -.055em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

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

p {
  margin-top: 0;
}

.hero-text,
.section-heading p,
.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(15, 118, 110, .24);
}

.btn-primary:hover {
  background: var(--teal-800);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-900);
  border: 1px solid var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--teal-900);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .48rem .72rem;
  color: var(--teal-900);
  font-weight: 700;
  font-size: .88rem;
}

.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(199,150,69,.24), rgba(199,150,69,0) 70%);
}

.doctor-photo {
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(15,118,110,.24), rgba(199,150,69,.18)),
    radial-gradient(circle at 65% 30%, #ffffff, transparent 22%),
    linear-gradient(135deg, var(--teal-50), var(--teal-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--teal-900);
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.hero-card p,
.info-card p,
.feature-panel p,
.step p,
.faq-list p,
.about-card p,
.consultation-grid p,
.footer-note {
  color: var(--muted);
}

.hero-card ul,
.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}

.hero-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
}

.notice-bar {
  background: var(--teal-900);
  color: var(--white);
  padding: 18px 0;
}

.notice-bar strong {
  color: #f9d08a;
}

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

.card-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.feature-panel,
.consult-form,
.about-card,
.faq-list details,
.thank-you-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(8, 63, 58, .08);
}

.info-card {
  padding: 30px;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.soft-section {
  background: linear-gradient(180deg, rgba(216,243,238,.45), rgba(255,250,241,1));
}

.split-grid,
.consultation-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.step > span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step h3,
.step p {
  margin-bottom: 4px;
}

.feature-panel {
  padding: 34px;
  position: sticky;
  top: 110px;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px;
  align-items: center;
}

.about-accent {
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 36%, #fff, transparent 19%),
    linear-gradient(135deg, var(--teal-700), var(--sage));
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.35);
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.stats-grid > div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stats-grid span {
  color: var(--muted);
}

.consultation-section {
  background: var(--teal-50);
}

.contact-box {
  margin-top: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box a,
.site-footer a {
  color: var(--teal-800);
}


.qr-contact-card {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
}

.qr-contact-card img {
  width: 150px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 63, 58, .10);
}

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

.qr-contact-card p {
  margin-bottom: 0;
}

.consult-form {
  padding: 30px;
}

.hidden {
  display: none;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label,
.consent {
  display: block;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 33, .18);
  background: #fffdf8;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}

.two-cols {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 14px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 22px;
  font-weight: 600;
  color: var(--muted);
}

.consent input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--teal-700);
}

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

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

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

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  padding-top: 0;
}

.final-cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  color: var(--white);
  border-radius: 34px;
  padding: 58px 32px;
  box-shadow: var(--shadow);
}

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

.final-cta-card p {
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 52px 0 24px;
  background: #f8f0e2;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}

.footer-note {
  max-width: 560px;
  margin-top: 18px;
}

.site-footer h3 {
  margin-bottom: 12px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, var(--teal-100), transparent 38%),
    var(--cream);
}

.thank-you-wrap {
  width: min(720px, calc(100% - 40px));
  padding: 60px 0;
}

.thank-you-card {
  text-align: center;
  padding: 56px 34px;
}

.thank-you-card h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.small-note {
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 900px) {
  .section-padding {
    padding: 70px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

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

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

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero-grid,
  .split-grid,
  .consultation-grid,
  .about-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid > div:last-child {
    border-bottom: 0;
  }

  .feature-panel {
    position: static;
  }

  .about-card {
    padding: 36px;
  }

  .about-accent {
    width: 180px;
    height: 180px;
  }
}

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

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card,
  .consult-form,
  .info-card,
  .about-card,
  .feature-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .doctor-photo {
    min-height: 240px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

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

  .qr-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-contact-card img {
    width: min(100%, 260px);
    margin: 0 auto;
  }

}
