@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Noto+Serif+Devanagari:wght@600;700&display=swap');

:root {
  --maroon: #8f0f0f;
  --maroon-dark: #530707;
  --maroon-deep: #310303;
  --ink: #17110f;
  --muted: #6c5f58;
  --line: #eadfda;
  --cream: #fffaf6;
  --soft: #fbf5f0;
  --card: #ffffff;
  --green: #158f5b;
  --violet: #7655d9;
  --shadow: 0 22px 60px rgba(57, 24, 12, .12);
  --small-shadow: 0 10px 30px rgba(67, 29, 14, .09);
  --sans: 'DM Sans', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --dev: 'Noto Serif Devanagari', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.btn {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: linear-gradient(135deg, var(--maroon), #6b0909);
  box-shadow: 0 13px 24px rgba(143, 15, 15, .22);
  color: #fff;
}
.btn--ghost {
  background: #fff;
  border: 1px solid #dcb8b0;
  color: var(--maroon);
}
.btn--light {
  background: #fff;
  color: var(--maroon);
}

.nav .btn {
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
  padding: 11px 22px;
}

.hero {
  background:
    radial-gradient(circle at 4% 12%, rgba(143, 15, 15, .055), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 50%, #f5eee8 50%, #f5eee8 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  min-height: 455px;
  overflow: hidden;
  padding: 0 0 0 clamp(30px, 6vw, 88px);
}
.hero__copy {
  align-self: center;
  max-width: 625px;
  padding: 46px 30px 46px 0;
  position: relative;
  z-index: 3;
}
.eyebrow {
  align-items: center;
  background: #f6ebe4;
  border-radius: 999px;
  color: var(--maroon);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .06em;
  padding: 9px 15px;
  text-transform: uppercase;
}
.eyebrow i {
  background: var(--maroon);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 4.45vw, 62px);
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 24px 0 18px;
}
.hero h1 em {
  color: var(--maroon);
  font-style: normal;
}
.hero__copy > p {
  color: #3f3531;
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 25px;
  max-width: 610px;
}
.hero-points {
  display: grid;
  gap: 17px 46px;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  margin: 28px 0 30px;
}
.hero-points span {
  color: #362924;
  font-size: 13.5px;
  font-weight: 700;
  position: relative;
  padding-left: 26px;
}
.hero-points span::before {
  align-items: center;
  border: 1px solid #d8aaa2;
  border-radius: 50%;
  color: var(--maroon);
  content: "✓";
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 16px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 1px;
  width: 16px;
}
.rating-row {
  align-items: center;
  display: flex;
  gap: 8px;
  font-size: 13px;
}
.rating-row strong { font-weight: 900; }
.rating-row span { color: var(--muted); }
.stars {
  color: #f2aa17 !important;
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1;
  margin-left: 4px;
  text-shadow: 0 1px 0 rgba(110, 57, 0, .12);
}
.avatar-stack {
  display: flex;
  padding-left: 7px;
}
.avatar-stack img {
  border: 2px solid #fff;
  border-radius: 50%;
  height: 34px;
  margin-left: -7px;
  object-fit: cover;
  width: 34px;
}

.hero__visual {
  min-height: 455px;
  position: relative;
}
.hero-photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}
.hero__visual::before {
  background: linear-gradient(90deg, #f5eee8 0%, rgba(245, 238, 232, .4) 18%, transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
.booking-card {
  background: #fff;
  border: 1px solid #eee2dd;
  border-radius: 13px;
  box-shadow: var(--shadow);
  left: -10px;
  padding: 28px;
  position: absolute;
  top: 48px;
  width: 360px;
  z-index: 5;
}
.booking-card h2 {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: -.03em;
  margin: 0 0 6px;
}
.booking-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 18px;
}
.booking-card label { display: block; margin-bottom: 10px; }
.booking-card label span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.booking-card input {
  border: 1px solid #eadfda;
  border-radius: 7px;
  color: var(--ink);
  height: 47px;
  outline: none;
  padding: 0 16px;
  width: 100%;
}
.booking-card input:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(143, 15, 15, .08); }
.booking-card button { border: 0; margin-top: 8px; width: 100%; }
.booking-card button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.booking-card__error {
  color: #a11212 !important;
  font-size: 11px !important;
  font-weight: 800;
  margin: 10px 0 0 !important;
  min-height: 14px;
}
.thank-you-card {
  align-items: center;
  display: none;
  min-height: 294px;
  text-align: center;
}
.thank-you-card span {
  align-items: center;
  background: #eaf9f0;
  border-radius: 50%;
  color: #16804d;
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin: 0 auto 18px;
  width: 58px;
}
.thank-you-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.thank-you-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.booking-card.is-submitted .booking-card__form { display: none; }
.booking-card.is-submitted .thank-you-card { display: block; }
.trust-row {
  color: var(--muted);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 18px;
  justify-content: center;
  margin-top: 22px;
}
.trust-row span::before { color: var(--maroon); content: "○ "; }
.growth-card {
  align-items: center;
  background: #fff;
  border-radius: 9px;
  bottom: 36px;
  box-shadow: var(--small-shadow);
  display: grid;
  gap: 0 10px;
  grid-template-columns: 42px 1fr;
  padding: 17px 22px;
  position: absolute;
  right: 70px;
  width: 188px;
  z-index: 4;
}
.growth-card__icon {
  align-items: center;
  background: #fff0ec;
  border-radius: 8px;
  color: var(--maroon);
  display: flex;
  font-size: 25px;
  font-weight: 900;
  grid-row: span 2;
  height: 42px;
  justify-content: center;
}
.growth-card strong { color: #16804d; font-size: 22px; line-height: 1; }
.growth-card small { color: var(--muted); font-size: 11px; font-weight: 700; }

.trusted {
  background: #fff;
  border-bottom: 1px solid #f3ebe7;
  padding: 26px clamp(24px, 6vw, 88px) 31px;
  text-align: center;
}
.trusted p {
  color: #90837c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.logo-strip {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(10, 1fr);
  margin: 0 auto;
  max-width: 1135px;
}
.logo-strip img {
  justify-self: center;
  max-height: 26px;
  max-width: 92px;
  object-fit: contain;
}
.logo-strip span, .logo-strip strong {
  font-size: 18px;
  justify-self: center;
  line-height: 1;
}
.google { color: #4285f4; font-weight: 700; }
.microsoft { color: #5f6368; font-weight: 700; }
.paytm { color: #00a3e0; }
.adobe { color: #ed1c24; }
.phonepe { color: #5f259f; }
.zomato { color: #e51b23; font-style: italic; }
.flipkart { color: #2874f0; }
.swiggy { color: #fc8019; }

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 42px 24px;
}
.section-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin: 0;
}
.section-head p, .programs > p, .stories > p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}

.program-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.program-card {
  border: 1px solid #eadfda;
  border-radius: 12px;
  min-height: 285px;
  overflow: hidden;
  padding: 34px 26px 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover { box-shadow: var(--small-shadow); transform: translateY(-3px); }
.program-card::after {
  content: "✽";
  font-size: 155px;
  opacity: .055;
  position: absolute;
  right: 18px;
  top: 5px;
}
.program-card--rose { background: linear-gradient(135deg, #fff, #fff6f4); }
.program-card--violet { background: linear-gradient(135deg, #fff, #faf7ff); }
.program-card--green { background: linear-gradient(135deg, #fff, #f6fff9); }
.icon-badge {
  align-items: center;
  border-radius: 13px;
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  margin-bottom: 28px;
  width: 56px;
}
.program-card--rose .icon-badge { background: #fff0ec; color: var(--maroon); }
.program-card--violet .icon-badge { background: #f0ebff; color: var(--violet); }
.program-card--green .icon-badge { background: #eaf9f0; color: var(--green); }
.program-card h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin: 0 0 11px;
}
.program-card p {
  color: #4c403b;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 310px;
}
.meta {
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 24px;
  margin: 22px 0 24px;
}
.meta span::before {
  color: var(--maroon);
  content: "◷ ";
}
.card-link {
  border: 1px solid #dcb8b0;
  border-radius: 6px;
  color: var(--maroon);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
}

.outcomes {
  align-items: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.14), transparent 26%),
    linear-gradient(135deg, var(--maroon-deep), #8a1111 55%, #4b0505);
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px;
}
.outcomes h2 { color: #fff; font-size: 26px; }
.outcomes p { color: rgba(255,255,255,.78); font-size: 13px; margin: 8px 0 0; }
.outcomes dl {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
}
.outcomes dt {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.outcomes dd {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 700;
  margin: 4px 0 0;
}

.why {
  align-items: end;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr 390px;
  padding-top: 38px;
}
.why__content > p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 44px;
}
.why-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(4, 1fr);
}
.why-grid article span {
  align-items: center;
  border: 1px solid #d7aaa3;
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  font-size: 20px;
  height: 62px;
  justify-content: center;
  margin-bottom: 18px;
  width: 62px;
}
.why-grid h3 {
  font-size: 13px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}
.why-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}
.video-card {
  border-radius: 9px;
  box-shadow: var(--small-shadow);
  display: block;
  height: 236px;
  overflow: hidden;
  position: relative;
}
.video-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.64));
  content: "";
  inset: 0;
  position: absolute;
}
.video-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.play {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  padding-left: 3px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  z-index: 2;
}
.video-card strong {
  bottom: 24px;
  color: #fff;
  font-size: 14px;
  left: 24px;
  line-height: 1.35;
  position: absolute;
  z-index: 2;
}

.stories { text-align: center; }
.story-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  text-align: left;
}
.story-card {
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(57,24,12,.04);
  padding: 25px 26px;
}
.story-card > span {
  color: var(--maroon);
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  height: 18px;
  line-height: .7;
}
.story-card p {
  color: #352b27;
  font-size: 13px;
  line-height: 1.65;
  min-height: 64px;
}
.story-card div {
  align-items: center;
  border-top: 1px solid #f1e8e3;
  display: flex;
  gap: 12px;
  padding-top: 16px;
}
.story-card img {
  border-radius: 50%;
  height: 45px;
  object-fit: cover;
  width: 45px;
}
.story-card strong {
  display: grid;
  font-size: 13px;
}
.story-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.dots { display: flex; gap: 9px; justify-content: center; margin-top: 20px; }
.dots i {
  background: #ded3ce;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}
.dots i:first-child { background: var(--maroon); }

.details {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr !important;
}
.details > .faq,
.details > .assessment-card {
  grid-column: 1 / -1;
  width: 100%;
}
.faq > p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 24px;
}
.faq-grid {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq details {
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 7px;
  padding: 0 18px;
}
.faq summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  padding: 17px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  color: var(--maroon);
  content: "+";
  position: absolute;
  right: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.assessment-card {
  align-self: center;
  border: 1px solid #eadfda;
  border-radius: 10px;
  box-shadow: var(--small-shadow);
  min-height: 188px;
  padding: 30px;
  position: relative;
}
.assessment-card h3 { font-size: 18px; margin: 0 0 12px; }
.assessment-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.assessment-card > span {
  bottom: 20px;
  color: var(--maroon);
  font-size: 42px;
  opacity: .65;
  position: absolute;
  right: 20px;
}
.assessment-card--wide {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 1.1fr 1fr auto;
  min-height: 0;
  padding: 34px 38px;
  margin-top: 6px;
}
.assessment-card__label {
  color: var(--maroon);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.assessment-card--wide h3 {
  font-size: 28px;
  letter-spacing: -.04em;
}
.assessment-card--wide p { margin: 0; }
.assessment-card--wide ul {
  color: #4b403b;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  line-height: 1.55;
  list-style: none;
  margin: 0;
  padding: 0;
}
.assessment-card--wide li {
  padding-left: 24px;
  position: relative;
}
.assessment-card--wide li::before {
  color: var(--maroon);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}
.assessment-card__actions {
  display: grid;
  gap: 12px;
  min-width: 178px;
}
.assessment-card--wide > span {
  bottom: 18px;
  font-size: 52px;
  right: 26px;
}

.bottom-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, var(--maroon), #650909);
  border-radius: 8px 8px 0 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 230px;
  gap: 30px;
  margin: 12px auto 0;
  max-width: 1180px;
  padding: 32px 48px;
}
.bottom-cta h2 { color: #fff; font-family: var(--sans); font-size: 23px; letter-spacing: -.02em; }
.bottom-cta p { color: rgba(255,255,255,.8); font-size: 13px; margin: 8px 0 0; }
.avatar-stack--light { justify-content: end; }
.avatar-stack--light img { height: 42px; width: 42px; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 24px;
    background: linear-gradient(180deg, #fff, #fff8f3);
  }
  .hero__copy { max-width: none; padding: 42px 0 20px; }
  .hero__visual {
    border-radius: 18px;
    margin-bottom: 30px;
    min-height: 480px;
    overflow: hidden;
  }
  .booking-card { left: 24px; top: 26px; width: min(360px, calc(100% - 48px)); }
  .growth-card { right: 24px; }
  .logo-strip { grid-template-columns: repeat(5, 1fr); }
  .program-grid, .story-grid, .price-grid { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
  .outcomes dl { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: 1fr; }
  .details { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .assessment-card--wide { grid-template-columns: 1fr; }
  .assessment-card__actions { display: flex; flex-wrap: wrap; }
  .bottom-cta { grid-template-columns: 1fr; text-align: center; }
  .avatar-stack--light { justify-content: center; }
}

@media (max-width: 700px) {
  .hero { padding: 0 18px; }
  .hero h1 { font-size: 42px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero__visual { min-height: 560px; }
  .booking-card { padding: 22px; }
  .growth-card { bottom: 20px; left: 24px; right: auto; }
  .trusted { padding-left: 18px; padding-right: 18px; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .section { padding-left: 18px; padding-right: 18px; }
  .section-head { align-items: start; gap: 18px; flex-direction: column; }
  .outcomes {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 22px;
  }
  .outcomes dl { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .story-card p { min-height: auto; }
  .bottom-cta { border-radius: 0; margin-top: 0; padding: 30px 22px; }
}
