/* Vanaspati Ayurveda — landing styles */

:root {
  --cream: #F5F0E3;
  --cream-2: #EAE3CF;
  --cream-3: #DAD0B3;
  --ink: #14261A;
  --ink-soft: #2F4534;
  --muted: #5D6E5E;
  --ink-2: #2F4534;
  --ink-3: #6E7F6F;
  --rule: rgba(25,54,34,0.14);
  --accent: #1B4024;           /* deep logo forest, for brand authority */
  --accent-soft: #2F6A3B;      /* mid-tone, for hover and illustrations */
  --accent-lime: #82B446;      /* the logo's lime "ved" green */
  --accent-lime-soft: #B7D687; /* tinted lime for subtle washes */
  --accent-tint: rgba(27,64,36,0.08);
  --turmeric: #C9A15B;
  --turmeric-soft: #E5CF97;
  --rust: #B85C38;
  --radius: 4px;
  --space-scale: 1;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --white: #fff;
  --black: #000;
}

* { box-sizing: border-box; }

html, body, #root { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.app { overflow-x: hidden; }

/* ── Typography ───────────────────────────────────────────────────────────

.accent-lime { color: var(--accent-lime); }─ */

h1, h2, h3, h4, .section__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.display {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(44px, 6.2vw, 86px);
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1.08;
  margin: 0 0 calc(56px * var(--space-scale)) 0;
  padding-bottom: 0.2em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--turmeric);
  display: inline-block;
  padding-bottom: 0.1em;
  line-height: inherit;
}

.section__title {
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: -0.02em;
  color: var(--accent);
  max-width: 22ch;
}

.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 calc(28px * var(--space-scale)) 0;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-lime);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {  
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); }
.btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(31,61,43,0.18);
}
.btn--ghost:hover { background: var(--accent-tint); border-color: var(--accent); }
.btn--cream {
  background: var(--cream);
  color: var(--accent);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--cream-2); border-color: var(--cream-2); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--pad);
  transition: all .25s ease;
}
.nav--scrolled {
  background: #fff;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 10px var(--pad);
  border-bottom: 1px solid rgba(31,61,43,0.08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-img {
  border-radius: 6px;
}
.logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-lime);
  font-size: 19px;
}
.logo--footer { color: var(--cream); font-size: 26px; }
.logo--footer em { color: var(--accent-lime); }

.nav__links {
  display: flex;
  gap: 28px;
  justify-self: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a { transition: color .2s; text-transform: uppercase; }
.nav__links a:hover { color: var(--accent); }

@media (max-width: 820px) {
  .nav__inner { grid-template-columns: auto auto; }
  .nav__links { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(100px * var(--space-scale)) var(--pad) calc(100px * var(--space-scale));
  position: relative;
}
.hero--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero--centered { text-align: center; max-width: 1000px; }
.hero--centered .lede,
.hero--centered .eyebrow { margin-left: auto; margin-right: auto; }
.hero--centered .hero__cta { justify-content: center; }
.hero--centered .hero__stats { justify-content: center; }
.hero--centered .eyebrow { display: inline-flex; }

.hero__bg-leaf {
  position: absolute;
  top: 60px; right: -80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.hero--centered .hero__bg-leaf {
  top: 100px; right: 50%; transform: translateX(50%);
}
.hero__text > * { position: relative; z-index: 1; }

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: calc(36px * var(--space-scale));
}

.hero__stats {
  display: flex;
  gap: clamp(24px, 1.8vw, 48px);
  margin-top: calc(56px * var(--space-scale));
  padding-top: 28px;
  border-top: 1px solid rgba(31,61,43,0.14);
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats b {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.hero__stats span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 500px;
}
.hero__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
}
.hero__leaf-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  opacity: 0.85;
  pointer-events: none;
}
.hero__card {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 260px;
  background: var(--accent-lime);
  border: 1px solid rgba(31,61,43,0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 20px 40px -12px rgba(31,61,43,0.18);
  z-index: 2;
}
.hero__card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  font-weight: 500;
}
.hero__card-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
}
.hero__card-list li { display: flex; gap: 12px; align-items: baseline; border-bottom: 1px solid; }
.hero__card-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  min-width: 44px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 880px) {
  .hero--split { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; }
  .hero__card { right: 12px; bottom: -20px; }
}

/* ── Placeholders ────────────────────────────────────────────────────────── */

.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-2) 0 12px,
      var(--cream-3) 12px 13px
    );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 18px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.placeholder span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  background: var(--cream);
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid rgba(31,61,43,0.12);
}

.placeholder--hero { min-height: 100%; padding: 0; }
.placeholder--doctor { aspect-ratio: 4/5; padding: 0; }
.placeholder--tx { aspect-ratio: 4/3; }

.hero-portrait,
.doctor-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Marquee ─────────────────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(31,61,43,0.1);
  border-bottom: 1px solid rgba(31,61,43,0.1);
  background: var(--cream);
  margin-top: 60px;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee__sep {
  color: var(--turmeric);
  font-size: 10px;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ── Sections ────────────────────────────────────────────────────────────── */

.section {
  /*max-width: var(--max);*/
  margin: 0 auto;
  padding: calc(80px * var(--space-scale)) var(--pad);
}
.section__head {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  margin-bottom: calc(60px * var(--space-scale));
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(31,61,43,0.12);
}
.section__num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent-lime);
  letter-spacing: 0.04em;
  padding-top: 8px;
}

/* ── Philosophy ──────────────────────────────────────────────────────────── */

.philosophy__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.philosophy__lead p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.25;
  color: var(--accent);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.philosophy__lead p em { color: var(--accent-lime); font-style: italic; }
.philosophy__sub {
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--ink-soft) !important;
  letter-spacing: 0 !important;
  max-width: 48ch;
}
.philosophy__sub b { color: var(--accent); font-weight: 600; }

.doshas {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(31,61,43,0.14);
  border-bottom: 1px solid rgba(31,61,43,0.14);
  background: var(--white);
}
.dosha {
  background: var(--accent-lime);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: center;
}
.dosha svg { grid-row: 1 / 3; color: var(--white); }
.dosha h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--white);
  margin: 0;
}
.dosha__el {
  grid-column: 3;
  grid-row: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
}
.dosha p {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0;
  color: var(--black);
  font-size: 14px;
}

@media (max-width: 820px) {
  .philosophy__grid { grid-template-columns: 1fr; }
}

/* ── Treatments ──────────────────────────────────────────────────────────── */

.treatments__filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
  font-weight: 500;
}
.chip {
  padding: 8px 16px;
  border: 1px solid rgba(31,61,43,0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip--on {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}

.treatments__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.treatments__list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid rgba(31,61,43,0.14);
}
.tx {
  border-bottom: 1px solid rgba(31,61,43,0.14);
  padding: 20px 4px;
  cursor: pointer;
  transition: padding .2s, background .2s;
}
.tx:hover { padding-left: 12px; background: var(--accent-tint); }
.tx--on {
  background: var(--accent-tint);
  padding-left: 12px;
}
.tx__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.tx__sanskrit {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
}
.tx--on .tx__sanskrit { font-style: normal; }
.tx__arrow {
  color: var(--turmeric);
  font-size: 16px;
  opacity: 0;
  transition: opacity .2s;
}
.tx--on .tx__arrow { opacity: 1; }
.tx__en {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.tx__meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.treatments__detail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detail__frame {
  border-radius: var(--radius);
  overflow: hidden;
}
.detail__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turmeric);
  font-weight: 600;
  margin-bottom: 14px;
}
.detail__title {
  font-size: clamp(36px, 3.4vw, 52px);
  color: var(--accent);
  margin: 0 0 4px;
}
.detail__en {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}
.detail__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  text-wrap: pretty;
  margin: 0 0 24px;
}
.detail__doshas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 0;
  border-top: 1px solid rgba(31,61,43,0.1);
  border-bottom: 1px solid rgba(31,61,43,0.1);
}
.detail__doshas span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.detail__doshas em {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--accent);
  font-style: italic;
}
.detail__doshas em:not(:last-child):after {
  content: " ·";
  color: var(--turmeric);
  margin-left: 6px;
}

@media (max-width: 880px) {
  .treatments__layout { grid-template-columns: 1fr; }
  .treatments__detail { position: static; }
}

/* ── Conditions ──────────────────────────────────────────────────────────── */

.conditions__grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(31,61,43,0.14);
  border-left: 1px solid rgba(31,61,43,0.14);
}
.cond {
  padding: 32px 24px;
  border-right: 1px solid rgba(31,61,43,0.14);
  border-bottom: 1px solid rgba(31,61,43,0.14);
  display: flex;
  gap: 16px;
  align-items: baseline;
  transition: background .2s;
}
.cond:hover { background: var(--accent-tint); }
.cond__n {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--accent-lime);
  font-variant-numeric: tabular-nums;
}
.cond__t {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── Clinic gallery ──────────────────────────────────────────────────────── */

.clinic__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.clinic__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 2;
  background: var(--cream-2);
}
.clinic__tile--wide { grid-column: span 3; grid-row: span 2; }
.clinic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.clinic__tile:hover img { transform: scale(1.04); }
.clinic__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(18,27,20,0.82), rgba(18,27,20,0) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.clinic__caption b {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.clinic__caption span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime-soft);
}

@media (max-width: 880px) {
  .clinic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .clinic__tile { grid-column: span 1; }
  .clinic__tile--wide { grid-column: span 2; grid-row: span 1; }
}

/* ── Results / case studies ───────────────────────────────────────────────── */

.results__intro {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.results__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.results__feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  min-height: 560px;
  aspect-ratio: auto;
}
.results__feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.results__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px 26px;
  background: linear-gradient(to top,
    rgba(14, 22, 16, 0.95) 0%,
    rgba(14, 22, 16, 0.78) 55%,
    rgba(14, 22, 16, 0) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.results__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
}
.results__overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}
.results__overlay dl {
  display: flex;
  gap: 28px;
  margin: 4px 0 6px;
}
.results__overlay dl > div { display: flex; flex-direction: column; gap: 2px; }
.results__overlay dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.55);
}
.results__overlay dd {
  margin: 0;
  font-size: 15px;
  color: var(--cream);
}
.results__overlay p {
  max-width: 58ch;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(245, 240, 226, 0.82);
}
.results__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.results__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 8px;
  min-height: 104px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.results__cond { max-width: 26ch; }
.results__row:hover { background: var(--cream-2); }
.results__row.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.results__row.is-active .results__num,
.results__row.is-active .results__sub { color: var(--turmeric-soft); }
.results__thumb {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.results__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.results__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: baseline;
}
.results__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  grid-row: span 2;
  align-self: center;
}
.results__cond {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.results__sub {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.results__disclaimer {
  max-width: 760px;
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-3);
  font-style: italic;
}

@media (max-width: 880px) {
  .results__layout { grid-template-columns: 1fr; }
  .results__feature { min-height: 460px; }
  .results__overlay { padding: 20px 20px 18px; }
}

/* ── Doctor ──────────────────────────────────────────────────────────────── */

.doctor {
  background: var(--accent);
  max-width: none;
  color: var(--cream);
}
.doctor__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.doctor .section__head {
  border-bottom-color: rgba(246,241,231,0.2);
}
.doctor .section__title { color: var(--cream); }
.doctor .section__num { color: var(--turmeric-soft); }

.doctor__visual {
  position: relative;
}
.doctor__visual .placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(246,241,231,0.08) 0 12px,
      rgba(246,241,231,0.14) 12px 13px
    );
  color: var(--cream);
}
.doctor__visual .placeholder span {
  background: var(--accent);
  color: var(--cream);
  border-color: rgba(246,241,231,0.2);
}
.doctor__mark {
  position: absolute;
  top: -30px; right: -30px;
  color: var(--turmeric) !important;
  opacity: 0.5;
}
.doctor__mark svg { color: var(--turmeric) !important; }

.doctor__lede {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 44ch;
  margin: 0 0 36px;
}

.doctor__facts {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(246,241,231,0.2);
}
.doctor__facts > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,241,231,0.2);
}
.doctor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.doctor__col h4 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
  font-weight: 600;
  margin: 0 0 14px;
}
.doctor__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor__col li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(246,241,231,0.85);
  padding-left: 14px;
  position: relative;
}
.doctor__col li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--turmeric);
  font-size: 8px;
  top: 6px;
}
.doctor__col li b {
  color: var(--cream);
  font-weight: 600;
}
.doctor__visits {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(246,241,231,0.2);
}
.doctor__visits h4 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
  font-weight: 600;
  margin: 0 0 20px;
}
.visit-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(246,241,231,0.15);
}
.visit {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  background: var(--accent);
}
.visit__where {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.visit__where b {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
}
.visit__where span {
  font-size: 12px;
  color: rgba(246,241,231,0.65);
  letter-spacing: 0.02em;
}
.visit__when {
  font-size: 13px;
  color: var(--turmeric-soft);
  text-align: right;
  line-height: 1.4;
}
.doctor__note {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--turmeric);
  background: rgba(246,241,231,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.doctor__note em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .doctor__grid { grid-template-columns: 1fr; gap: 28px; }
  .visit { grid-template-columns: 1fr; gap: 6px; }
  .visit__when { text-align: left; }
}
.doctor__facts dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
  font-weight: 600;
  margin: 0;
}
.doctor__facts dd {
  margin: 0;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .doctor__inner { grid-template-columns: 1fr; }
  .doctor__facts > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Press & Publications ─────────────────────────────────────────────── */

.press__intro {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.press__articles {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.press-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -30px rgba(16, 30, 22, 0.35);
}
.press-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}
.press-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.press-card:hover .press-card__img img { transform: scale(1.03); }
.press-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-card__pub {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.press-card__pub > span { color: var(--ink-3); margin: 0 4px; }
.press-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.press-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.press__brochure {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.press__brochure-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 24px;
  flex-wrap: wrap;
}
.press__kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.press__note {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.press__strip {
  list-style: none;
  margin: 0;
  padding: 4px 0 12px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.press__strip::-webkit-scrollbar { height: 6px; }
.press__strip::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
.brochure-tile {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brochure-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease;
}
.brochure-tile:hover img { transform: scale(1.02); }
.brochure-tile__cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 980px) {
  .press__articles { grid-template-columns: 1fr; }
  .brochure-tile { flex-basis: 220px; }
}

/* ── Process ─────────────────────────────────────────────────────────────── */

.process__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(31,61,43,0.14);
}
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(31,61,43,0.14);
  position: relative;
}
.step:last-child { border-right: none; }
.step__n {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--turmeric);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-size: 32px;
  color: var(--accent);
  margin: 0 0 12px;
}
.step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 820px) {
  .step { padding: 32px 0; border-right: none; border-bottom: 1px solid rgba(31,61,43,0.14); }
  .step:last-child { border-bottom: none; }
}

/* ── Testimonials ────────────────────────────────────────────────────────── */

.testimonials {
  background: var(--cream-2);
  max-width: none;
}
.testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  position: relative;
}
.t-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--turmeric);
  height: 60px;
  margin-bottom: 20px;
}
.t-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.3;
  color: var(--accent);
  font-weight: 500;
  margin: 0 auto 40px;
  max-width: 34ch;
  text-wrap: balance;
  letter-spacing: -0.01em;
  font-style: italic;
}
.t-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.t-attr b {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
}
.t-attr span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-nav {
  display: inline-flex;
  gap: 10px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(31,61,43,0.2);
  padding: 0;
  transition: all .2s;
}
.t-dot--on { background: var(--accent); transform: scale(1.4); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq__list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid rgba(31,61,43,0.14);
}
.faq__item {
  border-bottom: 1px solid rgba(31,61,43,0.14);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 28px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: padding .2s;
}
.faq__q:hover { padding-left: 12px; }
.faq__q i {
  font-style: normal;
  font-size: 28px;
  color: var(--turmeric);
  font-weight: 300;
  line-height: 1;
  min-width: 24px;
  text-align: center;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__item--on .faq__a { max-height: 300px; }
.faq__a p {
  padding: 0 80px 28px 4px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 68ch;
  text-wrap: pretty;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  background: #121B14;
  color: var(--cream);
  padding: 100px var(--pad) 40px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246,241,231,0.15);
}
.footer__brand p {
  color: rgba(246,241,231,0.65);
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
  margin: 20px 0 28px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin: 0 0 14px;
}
.footer__cols p {
  color: rgba(246,241,231,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(246,241,231,0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

.footer__follow { display: flex; flex-direction: column; }
.follow-qr {
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
  width: fit-content;
  max-width: 180px;
}
.follow-qr img {
  display: block;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 6px;
}
.follow-qr__note {
  font-size: 12.5px !important;
  line-height: 1.5;
  color: rgba(246,241,231,0.7) !important;
  margin-top: 12px !important;
  max-width: 220px;
}
.follow-icons {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.follow-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(246,241,231,0.2);
  border-radius: 999px;
  color: rgba(246,241,231,0.8);
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.follow-icons a:hover {
  background: var(--turmeric);
  color: var(--ink);
  border-color: var(--turmeric);
}

/* ── Sticky book ─────────────────────────────────────────────────────────── */

.sticky-book {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 30px -8px rgba(31,61,43,0.4);
  transition: transform .2s;
}
.sticky-book:hover { transform: translateY(-2px); }
.sticky-book svg { color: var(--cream); }

/* ── Booking sheet ───────────────────────────────────────────────────────── */

.sheet {
  position: fixed;
  inset: 0;
  background: rgba(18,27,20,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sheet__panel {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: var(--cream);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  animation: slideUp .25s cubic-bezier(.2,.7,.3,1);
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sheet__head {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(31,61,43,0.1);
}
.sheet__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--accent);
}
.sheet__title svg { color: var(--accent); }
.sheet__x {
  width: 32px; height: 32px;
  border: 0; background: transparent;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 16px;
}
.sheet__x:hover { background: var(--accent-tint); color: var(--accent); }

.sheet__progress {
  display: flex;
  gap: 0;
  padding: 20px 24px 0;
}
.prog {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(31,61,43,0.12);
  transition: border-color .25s;
}
.prog b {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(31,61,43,0.12);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: all .25s;
}
.prog span { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.prog--on { border-color: var(--accent); }
.prog--on b { background: var(--accent); color: var(--cream); }
.prog--on span { color: var(--accent); font-weight: 500; }

.sheet__body {
  padding: 28px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(31,61,43,0.18);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .15s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
}

.radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radios--stack { flex-direction: column; }
.radio {
  padding: 10px 16px;
  border: 1px solid rgba(31,61,43,0.18);
  background: transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s;
}
.radio:hover { border-color: var(--accent); color: var(--accent); }
.radio--on {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.radio-card {
  padding: 16px 18px;
  border: 1px solid rgba(31,61,43,0.18);
  background: transparent;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: all .15s;
}
.radio-card b {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--accent);
  font-weight: 500;
}
.radio-card span {
  font-size: 13px;
  color: var(--muted);
}
.radio-card:hover { border-color: var(--accent); background: var(--accent-tint); }
.radio-card--on {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.sheet__summary {
  margin-top: 12px;
  padding: 18px;
  background: var(--cream-2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sheet__summary > div { display: flex; flex-direction: column; gap: 2px; }
.sheet__summary span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.sheet__summary b {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

.sheet__foot {
  padding: 18px 24px;
  border-top: 1px solid rgba(31,61,43,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
}

.sheet__done {
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.done__mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}
.sheet__done h3 {
  font-size: 36px;
  color: var(--accent);
  margin: 0;
}
.sheet__done p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0;
}
.sheet__done .done__sub {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  max-width: 36ch;
}
.sheet__done .btn { margin-top: 12px; }
.done__channels {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.done__channels .btn {
  margin-top: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.done__close { margin-top: 18px !important; }

@media (max-width: 720px) {
	.logo em, .logo span, .hero__card { display: none; }
}

.conditions { background: var(--cream);}
.clinic_name {color: var(--accent-lime);}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

/* Hover Effect */
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
    }
}

html {
  scroll-behavior: smooth;
}

.doctor__note {
    position: relative;
    background: #1f4d2e;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.doctor__note::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/en/4/41/Flag_of_India.svg') no-repeat center;
    background-size: cover;
    opacity: 0.15; /* control visibility */
    z-index: 0;
}

.doctor__note em {
    position: relative;
    z-index: 1;
}

.doctor__note {
    background: linear-gradient(
        to right,
        #FF9933,
        #FFFFFF,
        #138808
    );
    color: #000;
    padding: 20px;
    border-radius: 10px;
}
