/* =========================================================
   Dr. Shaifali Dadhich — drshaifali.com
   Brand: warm, trusted, editorial. Senior gynecologist + creator.
   Audience: Hindi-speaking women, 22 to 40, expecting / new moms.
   ========================================================= */

:root {
  /* Palette */
  --rose: #C8526A;          /* primary brand */
  --rose-deep: #A23A52;     /* hover / pressed */
  --rose-soft: #F7E3E6;     /* backgrounds */
  --plum: #2C1A2E;          /* primary text */
  --plum-soft: #5B4757;     /* secondary text */
  --cream: #FBF6F0;         /* dominant surface */
  --cream-warm: #F5EBDD;    /* secondary surface */
  --gold: #B98A4D;          /* accent */
  --gold-soft: #E9D7B8;     /* gold tint */
  --ink: #1A0F1C;           /* near-black */
  --line: #E8DDD4;          /* borders */
  --success: #1F7A4D;
  --white: #FFFFFF;

  /* Type — distinctive fonts per Anthropic frontend-aesthetics guide.
     Fraunces (variable display serif) + Bricolage Grotesque (modern sans) + JetBrains Mono (numeric). */
  --font-heading: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-hindi: "Noto Sans Devanagari", "Bricolage Grotesque", sans-serif;

  /* Layout */
  --max: 1180px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(44, 26, 46, 0.06), 0 0 0 1px rgba(44, 26, 46, 0.04);
  --shadow: 0 8px 24px -8px rgba(44, 26, 46, 0.18), 0 1px 3px rgba(44, 26, 46, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(44, 26, 46, 0.22);
}

/* ----- Page-load orchestration (cookbook: one well-orchestrated page-load with staggered reveals) ----- */
@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.rise { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade { animation: fade 0.8s ease-out both; }
.scale-in { animation: scaleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.30s; }
.delay-4 { animation-delay: 0.42s; }
.delay-5 { animation-delay: 0.55s; }
.delay-6 { animation-delay: 0.68s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--plum);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: "wdth" 100, "opsz" 16;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-deep); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
/* Editorial italic for emphasis inside headings (per cookbook: variable font axes) */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 500; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--plum-soft); }
.lead { font-size: 1.18rem; color: var(--plum); font-weight: 400; }
.hindi { font-family: var(--font-hindi); }
.num, .mono { font-family: var(--font-mono); font-feature-settings: "tnum"; letter-spacing: -0.01em; }

/* ----- Container ----- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ----- Inline icon ----- */
.ico-inline {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: -2px;
  color: currentColor;
  margin-right: 0.15rem;
}

/* ----- Top announcement bar ----- */
.announce {
  background: var(--ink);
  color: var(--cream-warm);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.02em;
}
.announce a {
  color: var(--gold-soft);
  font-weight: 500;
  border-bottom: 1px solid rgba(233, 215, 184, 0.4);
}
.announce a:hover { color: var(--white); border-color: var(--white); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  position: relative;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--rose-soft);
}
.brand-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--plum-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--rose);
  border-color: var(--rose);
}
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  border: none !important;
  font-weight: 500;
  transition: background 150ms ease-out;
}
.nav-cta:hover { background: var(--rose-deep) !important; color: var(--white) !important; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  color: var(--plum);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease-out, background 150ms ease-out, color 150ms ease-out;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--plum);
  background: var(--white);
  color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--plum); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }

/* ----- Hero ----- */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Atmospheric layered background (per cookbook: avoid flat colors). */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(200, 82, 106, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(185, 138, 77, 0.14), transparent 65%),
    radial-gradient(circle 30% at 50% 50%, rgba(247, 227, 230, 0.4), transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(2px);
}
/* Subtle grain (CSS only) for depth */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(44, 26, 46, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 0.74rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--rose); border-radius: 50%;
  display: inline-block;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--plum-soft);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}
.hero-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--plum-soft);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta .verified {
  width: 16px; height: 16px;
  background: var(--rose); color: var(--white);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 9px; font-weight: 700;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--cream-warm) 50%, #F2D5DC 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-portrait img { filter: contrast(1.02) saturate(1.05); }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 50%);
}
.hero-portrait .placeholder {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--rose);
  opacity: 0.3;
  font-weight: 700;
}
.hero-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem;
}
.hero-badge .num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--rose);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}
.hero-badge .lbl {
  font-size: 0.72rem;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ----- Trust bar ----- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: center;
}
.trust-row > div { padding: 0.25rem 0.5rem; }
.trust-row strong {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.trust-row span {
  font-size: 0.72rem;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ----- Sections ----- */
section.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-head {
  max-width: 38rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p {
  font-size: 1.05rem;
}

.bg-cream { background: var(--cream-warm); }
.bg-rose-soft {
  background: var(--rose-soft);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 255, 255, 0.5), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(185, 138, 77, 0.10), transparent 60%);
}
.bg-white { background: var(--white); }

/* ----- Offer cards ----- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.offer {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
  position: relative;
  overflow: hidden;
}
.offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-soft);
}
.offer-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.offer-tag.live { background: var(--rose-soft); color: var(--rose-deep); }
.offer-tag.free { background: #DCEFE5; color: var(--success); }
.offer-icon {
  width: 48px; height: 48px;
  background: var(--rose-soft);
  color: var(--rose);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.offer-icon svg { width: 24px; height: 24px; display: block; }

/* Soft illustration block in offer card. Pastel-tinted background; line-art SVG centered. */
.offer-illustration, .offer-photo {
  width: calc(100% + 3rem);
  margin: -1.75rem -1.5rem 1.25rem;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.offer-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ill-bg, linear-gradient(135deg, #FBE9C0, #F5D9C0));
  z-index: -2;
}
.offer-illustration::after {
  content: "";
  position: absolute;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(28px);
  z-index: -1;
}
.offer-illustration svg {
  width: 60%; height: 80%;
  filter: drop-shadow(0 4px 8px rgba(44, 26, 46, 0.06));
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.offer:hover .offer-illustration svg { transform: scale(1.05) rotate(-1deg); }
.offer-illustration.tint-peach    { --ill-bg: linear-gradient(135deg, #FCE5D4, #F5D9C0); }
.offer-illustration.tint-sage     { --ill-bg: linear-gradient(135deg, #DCEAE0, #C8DDD0); }
.offer-illustration.tint-blush    { --ill-bg: linear-gradient(135deg, #FCE2E5, #F5C6CC); }
.offer-illustration.tint-butter   { --ill-bg: linear-gradient(135deg, #FFF4D2, #FBE9C0); }
.offer-illustration.tint-lavender { --ill-bg: linear-gradient(135deg, #ECE4F4, #E0D6EE); }
.offer-illustration.tint-sky      { --ill-bg: linear-gradient(135deg, #E5EFF5, #D4E4F0); }
/* Hide redundant icon when an illustration or photo is present */
.offer:has(.offer-illustration) .offer-icon,
.offer:has(.offer-photo) .offer-icon { display: none; }
/* Hero / about portrait — soft illustration backdrop */
.portrait-illustration {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(150deg, var(--rose-soft), var(--cream-warm));
}
.portrait-illustration svg {
  width: 80%; height: 90%;
  filter: drop-shadow(0 6px 14px rgba(44, 26, 46, 0.08));
}
.offer-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 400ms ease-out;
}
.offer:hover .offer-photo img { transform: scale(1.04); }
.offer-photo.no-photo::after {
  content: attr(data-fallback);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--rose);
  opacity: 0.5;
}

/* Photo image with auto-fallback when src fails */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-soft), var(--cream-warm));
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-frame img[data-broken] { display: none; }
.offer h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.offer p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.offer-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.offer-price {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}
.offer-price .strike {
  text-decoration: line-through;
  color: var(--plum-soft);
  font-size: 1rem;
  font-weight: 400;
  margin-right: 0.4rem;
}
.offer-when {
  font-size: 0.72rem;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ----- About ----- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.about-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--rose-soft));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 5rem; color: var(--rose);
  opacity: 0.25;
}
.about ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}
.about li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--plum);
}
.about li::before {
  content: "✓";
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--rose-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem;
  margin-top: 1px;
}

/* ----- Form / email capture ----- */
.capture {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.capture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(200, 82, 106, 0.28), transparent 65%),
    radial-gradient(ellipse 55% 45% at 12% 95%, rgba(185, 138, 77, 0.22), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(247, 227, 230, 0.06), transparent 70%);
  pointer-events: none;
}
.capture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}
.capture > * { position: relative; }
.capture h2 { color: var(--white); }
.capture p { color: rgba(251, 246, 240, 0.78); margin-bottom: 1.5rem; }
.capture-form {
  display: flex;
  gap: 0.5rem;
  max-width: 30rem;
  margin: 0 auto;
  flex-wrap: wrap;
}
.capture-form input {
  flex: 1 1 14rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}
.capture-form input::placeholder { color: rgba(251, 246, 240, 0.5); }
.capture-form input:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(255, 255, 255, 0.09);
}
.capture-form button {
  flex-shrink: 0;
  padding: 0.95rem 1.5rem;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 150ms;
}
.capture-form button:hover { background: var(--rose-deep); }
.capture-fineprint {
  font-size: 0.78rem;
  color: rgba(251, 246, 240, 0.5);
  margin-top: 1rem;
}

/* ----- Form (light) ----- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  max-width: 32rem;
  margin: 0 auto;
}
.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-row label {
  font-size: 0.85rem;
  color: var(--plum);
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 150ms, background 150ms;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-fineprint {
  font-size: 0.8rem;
  color: var(--plum-soft);
  margin-top: 0.75rem;
  text-align: center;
}

/* ----- Testimonials ----- */
.tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.t {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.t::before {
  content: "“";
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--rose-soft);
  line-height: 1;
  pointer-events: none;
}
.t p {
  position: relative;
  font-size: 0.98rem;
  color: var(--plum);
  margin-bottom: 1rem;
}
.t-author {
  font-size: 0.85rem;
  color: var(--plum-soft);
  font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.t-avatar {
  width: 32px; height: 32px;
  background: var(--rose-soft);
  color: var(--rose);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ----- FAQ ----- */
.faq { max-width: 44rem; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--ink);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 150ms;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--plum-soft);
  font-size: 0.95rem;
}

/* ----- Stat strip ----- */
.stat-strip {
  background: var(--rose-soft);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.stat-lbl {
  font-size: 0.78rem;
  color: var(--plum);
  margin-top: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ----- Pricing card (workshop / course) ----- */
.pricing {
  background: var(--white);
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.pricing-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 6.5vw, 3.8rem);
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin: 0.85rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.pricing-price small {
  font-size: 1rem;
  color: var(--plum-soft);
  font-weight: 400;
  font-family: var(--font-body);
}
.pricing-price .strike {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--plum-soft);
  font-weight: 500;
  font-family: var(--font-mono);
  position: relative;
  display: inline-block;
  letter-spacing: -0.03em;
}
.pricing-price .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; top: 50%;
  height: 2px;
  background: var(--rose);
  transform: rotate(-8deg);
  border-radius: 2px;
}
.pricing-save {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.pricing ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  text-align: left;
  display: grid; gap: 0.65rem;
}
.pricing li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.95rem;
  color: var(--plum);
}
.pricing li::before {
  content: "✓"; color: var(--rose); font-weight: 700;
  flex-shrink: 0;
}

/* ----- Page hero (sub-pages) ----- */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero .hero-eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 42rem; margin: 0 auto 1rem; }
.page-hero p { max-width: 36rem; margin: 0 auto; font-size: 1.1rem; }

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 240, 0.72);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-grid a { color: rgba(251, 246, 240, 0.7); }
.footer-grid a:hover { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: rgba(251, 246, 240, 0.5); }
.footer-brand p {
  color: rgba(251, 246, 240, 0.6);
  font-size: 0.92rem;
  margin: 1rem 0;
  max-width: 22rem;
}
.footer-social {
  display: flex; gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.95rem;
  transition: background 150ms;
}
.footer-social a:hover { background: var(--rose); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(251, 246, 240, 0.5);
}

/* ----- Topmate embed frame (tele-consult) ----- */
.topmate-frame {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.topmate-frame iframe {
  width: 100%;
  height: 920px;
  border: 0;
  display: block;
  background: var(--cream);
}
@media (max-width: 600px) {
  .topmate-frame iframe { height: 1100px; }
}

/* ----- Booking calendar (tele-consult, legacy mock) ----- */
.booker {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  max-width: 44rem;
  margin: 0 auto;
}
.booker-head {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.booker-head h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}
.booker-head .meta {
  font-size: 0.82rem;
  color: var(--plum-soft);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.booker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.booker-day {
  text-align: center;
  padding: 0.65rem 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
  font-family: inherit;
}
.booker-day:hover { border-color: var(--rose); }
.booker-day.active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.booker-day.active .booker-day-num,
.booker-day.active .booker-day-name { color: var(--white); }
.booker-day.disabled {
  opacity: 0.4; cursor: not-allowed;
}
.booker-day-name {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--plum-soft);
  font-weight: 500;
}
.booker-day-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  margin-top: 0.15rem;
}
.booker-day-slots {
  display: block;
  font-size: 0.68rem;
  color: var(--plum-soft);
  margin-top: 0.15rem;
}
.booker-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line);
}
.booker-slot {
  padding: 0.65rem 0.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 150ms;
}
.booker-slot:hover {
  border-color: var(--rose);
  background: var(--rose-soft);
  color: var(--rose-deep);
}
.booker-slot.taken {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}
.booker-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  color: var(--plum-soft);
  font-size: 0.92rem;
}
.booker-foot {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--plum-soft);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}

/* ----- Floating WhatsApp ----- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 60;
  transition: transform 150ms;
  font-size: 1.4rem;
}
.whatsapp-float:hover { transform: scale(1.06); color: var(--white); }

/* ----- Utilities ----- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.25rem; }
.hidden { display: none; }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }

/* ----- Responsive ----- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 22rem; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 22rem; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 200ms ease-out;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: inline-flex; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Language Selector
   Matches site brand: rose / plum / cream
   Auto-shows on first visit, remembers choice in localStorage
   ========================================================= */
.ds-lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 46, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ds-lang-overlay.visible { opacity: 1; pointer-events: auto; }

.ds-lang-modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: min(90vw, 460px);
  padding: 36px 28px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ds-lang-overlay.visible .ds-lang-modal { transform: translateY(0) scale(1); }

.ds-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--plum-soft);
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.ds-close-btn:hover { background: var(--rose-soft); color: var(--rose); border-color: var(--rose); }

.ds-lang-mark {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--rose);
  color: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.5px;
}

.ds-lang-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--plum);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.ds-lang-title-hi {
  font-family: var(--font-hindi);
  font-size: 20px;
  color: var(--plum-soft);
  font-weight: 500;
  margin-bottom: 24px;
}

.ds-lang-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.ds-lang-btn {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.ds-lang-btn:hover {
  border-color: var(--rose);
  background: var(--rose-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ds-lang-btn .ds-label-main {
  font-size: 28px;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 6px;
}
.ds-lang-btn[data-lang="hi"] .ds-label-main { font-family: var(--font-hindi); }
.ds-lang-btn[data-lang="en"] .ds-label-main { font-family: var(--font-heading); font-style: italic; }
.ds-lang-btn .ds-label-sub {
  font-size: 11px;
  color: var(--plum-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.ds-lang-btn[data-lang="hi"] .ds-label-sub { font-family: var(--font-body); }
.ds-lang-btn[data-lang="en"] .ds-label-sub { font-family: var(--font-hindi); text-transform: none; letter-spacing: 0; font-size: 12px; }

.ds-lang-footer {
  font-size: 12px;
  color: var(--plum-soft);
  margin-top: 12px;
  line-height: 1.5;
}
.ds-lang-footer-hi {
  font-family: var(--font-hindi);
  font-size: 12px;
  color: var(--plum-soft);
  margin-top: 4px;
}

.ds-lang-switcher {
  position: fixed;
  bottom: 88px; right: 20px;
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--plum);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  display: none;
  transition: all 0.2s;
}
.ds-lang-switcher:hover {
  background: var(--rose-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ds-lang-switcher.visible { display: inline-flex; align-items: center; gap: 6px; }

.ds-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--plum);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.ds-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.ds-toast.lang-hi { font-family: var(--font-hindi); }

/* Hide Google Translate's default banner if widget is present */
.goog-te-banner-frame { display: none !important; }
body.translated-rtl, body.translated-ltr { top: 0 !important; }
.skiptranslate { display: none !important; }

@media (max-width: 480px) {
  .ds-lang-switcher { bottom: 84px; right: 14px; padding: 8px 14px; font-size: 12px; }
}

/* =========================================================
   Mobile Optimization (additional rules)
   Improves comfort on iPhone-class screens (375 to 430 px)
   and tablet portrait (480 to 768 px).
   ========================================================= */

/* Tablet and below */
@media (max-width: 860px) {
  body { font-size: 15px; }
  body { overflow-x: hidden; }
  h1 { font-size: clamp(1.45rem, 4.8vw, 2.2rem); line-height: 1.2; letter-spacing: -0.012em; overflow-wrap: break-word; word-break: normal; hyphens: auto; }
  h2 { font-size: clamp(1.4rem, 4.4vw, 1.9rem); letter-spacing: -0.012em; }
  h3 { font-size: clamp(1.1rem, 3.6vw, 1.3rem); letter-spacing: -0.005em; }
  .wrap { padding-left: 1.1rem; padding-right: 1.1rem; }
  .section { padding: 2.4rem 0; }
  .hero { padding: 1.6rem 0 2rem; }
  /* Hero portrait: keep visible, sized appropriately for phones.
     Explicit width + height (instead of aspect-ratio) — avoids 0-height
     collapse when grid row track is auto and children are absolutely
     positioned. */
  .hero-portrait {
    width: 18rem;
    max-width: 100%;
    height: 22.5rem;
    margin: 0 auto 1.5rem;
    order: -1;
    aspect-ratio: auto;     /* override the desktop aspect-ratio */
  }
  .about-photo { width: 18rem; max-width: 100%; height: 18rem; aspect-ratio: auto; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.6rem; }
  .form-card { padding: 1.4rem; }
  .btn { min-height: 44px; }            /* Apple HIG touch target */
  .btn-lg { padding: 0.95rem 1.4rem; font-size: 1rem; }
}

/* Even smaller — phone portrait, keep portraits compact */
@media (max-width: 600px) {
  h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); letter-spacing: -0.008em; }
  .hero-portrait { width: 15rem; height: 18.75rem; }
  .about-photo { width: 15rem; height: 15rem; }
  .hero h1, .page-hero h1 { padding-right: 0; }
  .hero-eyebrow { font-size: 0.66rem; padding: 0.4rem 0.85rem; letter-spacing: 0.1em; }
}

/* Phone portrait */
@media (max-width: 600px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta {
    margin: 0.6rem 1rem;
    text-align: center;
    border-radius: 999px;
    background: var(--rose);
    color: var(--white);
  }
  .menu-toggle {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    font-size: 22px;
    color: var(--plum);
  }
  .nav { position: relative; flex-wrap: wrap; }
  .brand-tag { display: none; }              /* tighten brand block on small screens */
  .announce { font-size: 12.5px; padding: 0.55rem 0.9rem; }
  .announce a { display: inline-block; }

  /* Section spacing */
  .section { padding: 2rem 0; }
  .hero h1, .page-hero h1 {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
    letter-spacing: -0.005em;
    line-height: 1.22;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .hero h1 em, .page-hero h1 em { font-style: italic; }
  .hero p { font-size: 1rem; }
  .hero-meta { flex-wrap: wrap; gap: 0.4rem 0.8rem; font-size: 13px; }

  /* Stat cards stack */
  .stat-num { font-size: 1.8rem; }
  .stat-grid, .stats-row, .stats { grid-template-columns: 1fr 1fr !important; gap: 0.8rem; }

  /* Form inputs full-width and tap-friendly */
  .form-row input, .form-row textarea, .form-row select {
    font-size: 16px;                          /* prevents iOS zoom on focus */
    min-height: 48px;
    padding: 0.75rem 0.9rem;
  }
  .form-card { padding: 1.2rem; border-radius: 16px; }
  .btn-block { width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .btn + .btn { margin-top: 0.6rem; }

  /* Tables become horizontal scroll */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer simplification */
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
  .footer-social { gap: 0.5rem; flex-wrap: wrap; }

  /* WhatsApp float adjusted, language switcher above it */
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .ds-lang-switcher { bottom: 84px; right: 14px; }

  /* Cards tighter */
  .card, .pricing-card, .feature-card, .testimonial { padding: 1.2rem; border-radius: 14px; }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 0.9rem;
  }

  /* Modal adjustments */
  .ds-lang-modal { padding: 28px 22px 24px; }
  .ds-lang-mark { width: 48px; height: 48px; font-size: 20px; }
  .ds-lang-title { font-size: 22px; }
  .ds-lang-title-hi { font-size: 18px; margin-bottom: 18px; }
  .ds-lang-btn { padding: 18px 10px; }
  .ds-lang-btn .ds-label-main { font-size: 24px; }
}

/* Tiny phones */
@media (max-width: 380px) {
  h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .btn-lg { padding: 0.85rem 1rem; font-size: 0.95rem; }
  .form-card { padding: 1rem; }
}

/* Honour safe-area on notched phones */
@supports (padding: max(0px)) {
  .whatsapp-float { right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); }
  .ds-lang-switcher { right: max(14px, env(safe-area-inset-right)); }
}
