:root {
  --navy: #061a4f;
  --navy-2: #0a2e78;
  --ink: #111827;
  --muted: #667085;
  --line: #d9e2ef;
  --soft: #f5f7fb;
  --white: #ffffff;
  --orange: #f24a1b;
  --yellow: #f8b516;
  --green: #1c8a63;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 80px rgba(6, 26, 79, 0.16);
  --shadow-soft: 0 18px 48px rgba(6, 26, 79, 0.1);
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Sora, "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(248, 181, 22, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(242, 74, 27, 0.13), transparent 26rem),
    linear-gradient(180deg, #f8faff 0, #ffffff 46rem);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(217, 226, 239, 0.72);
  backdrop-filter: blur(22px);
}

.brand img {
  width: clamp(190px, 18vw, 270px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 226, 239, 0.8);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(6, 26, 79, 0.08);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--orange);
  background: rgba(242, 74, 27, 0.08);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--navy);
  border: 0;
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

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

.hero {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 82px);
  margin: 0;
  padding: 76px max(20px, calc((100vw - 1180px) / 2)) 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 115, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(242, 74, 27, 0.18), transparent 22rem),
    radial-gradient(circle at 50% 110%, rgba(248, 181, 22, 0.16), transparent 25rem),
    linear-gradient(135deg, #04123a 0, #061842 48%, #071f5f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.095) 1.3px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 50% 38%, #000 0 34%, transparent 70%);
  opacity: 0.7;
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(30vw, 430px);
  height: 100%;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(248, 181, 22, 0.52) 36% 46%, rgba(242, 74, 27, 0.54) 46% 56%, transparent 56%);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 4% 100%, 24% 52%);
  opacity: 0.48;
  z-index: -3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  color: var(--navy);
  letter-spacing: 0;
  font-family: var(--font-display);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.18;
}

.hero-heading {
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-heading .eyebrow {
  color: var(--yellow);
}

.hero-heading .eyebrow::after {
  width: 30px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 999px;
}

.hero h1 {
  max-width: 1080px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.05vw, 3.95rem);
  text-wrap: balance;
}

.hero-text {
  max-width: 790px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.hero-trust-line {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions-bottom {
  margin-top: -18px;
}

.hero-photo-placeholder {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.hero-photo-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.2) 45%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-70%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.01);
  transform-origin: center;
}

.hero-photo-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 18, 58, 0.03), rgba(4, 18, 58, 0.18)),
    radial-gradient(circle at 18% 16%, rgba(248, 181, 22, 0.22), transparent 15rem);
  z-index: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0 auto 0 -72%;
  width: 56%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(2px) scale(1.04);
}

.button:hover::after {
  left: 118%;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff6a32);
  box-shadow: 0 20px 44px rgba(242, 74, 27, 0.36);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(6, 26, 79, 0.22);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 20px 44px rgba(242, 74, 27, 0.34);
  }

  50% {
    box-shadow: 0 24px 58px rgba(242, 74, 27, 0.52);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.primary {
    animation: none;
  }

  .floating-whatsapp::before {
    animation: none;
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -38px auto 24px;
  overflow: hidden;
  background: rgba(217, 226, 239, 0.95);
  border: 1px solid rgba(217, 226, 239, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.proof-strip div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: min-content min-content;
  column-gap: 14px;
  row-gap: 5px;
  align-content: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-icon {
  grid-row: 1 / 3;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(6, 26, 79, 0.15);
}

.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.proof-strip strong,
.proof-strip div > span:not(.proof-icon) {
  display: block;
}

.proof-strip strong {
  align-self: end;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.proof-strip div > span:not(.proof-icon) {
  align-self: start;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.journey-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 26, 79, 0.97), rgba(10, 46, 120, 0.97)),
    linear-gradient(135deg, transparent 0 64%, var(--orange) 64% 72%, var(--yellow) 72%);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.journey-band div {
  min-height: 120px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-band div:last-child {
  border-right: 0;
}

.journey-band span,
.journey-band strong {
  display: block;
}

.journey-band span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-band strong {
  margin-top: 10px;
  color: var(--white);
  font-size: 1.14rem;
  line-height: 1.2;
}

.about-vrushali {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  padding-top: 82px;
  padding-bottom: 82px;
}

.about-portrait {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(6, 26, 79, 0.18)),
    radial-gradient(circle at 86% 16%, rgba(248, 181, 22, 0.18), transparent 13rem);
  pointer-events: none;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p:not(.eyebrow, .global-students) + p:not(.eyebrow, .global-students) {
  margin-top: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 22px;
}

.about-stats div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 226, 239, 0.96);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 26, 79, 0.07);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
}

.about-stats span {
  margin-top: 9px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.global-students {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 13px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(6, 26, 79, 0.06);
  font-weight: 700;
}

.global-students span {
  letter-spacing: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.course-grid,
.method-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.method-card,
.course-card,
.faq-item {
  border: 1px solid rgba(217, 226, 239, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(6, 26, 79, 0.07);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.method-card:hover,
.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 74, 27, 0.28);
  box-shadow: var(--shadow-soft);
}

.course-card p,
.method-card p,
.why-section p,
.final-cta p,
footer p,
.faq p {
  color: var(--muted);
}

.why-section {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  gap: 38px;
  padding: 104px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 181, 22, 0.13), transparent 22rem),
    radial-gradient(circle at 88% 14%, rgba(242, 74, 27, 0.12), transparent 24rem),
    linear-gradient(135deg, #04123a 0, #061842 52%, #071f5f 100%);
}

.why-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(248, 181, 22, 0.1) 58% 66%, rgba(242, 74, 27, 0.1) 66% 74%, transparent 74%);
  z-index: -1;
}

.why-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1.3px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.45;
  z-index: -1;
}

.why-hero,
.why-grid {
  position: relative;
  z-index: 1;
}

.why-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.why-intro {
  max-width: 940px;
}

.why-intro .eyebrow {
  margin-bottom: 28px;
  color: var(--yellow);
}

.why-intro h2 {
  color: var(--white);
}

.why-intro p {
  max-width: 850px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.why-portrait {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.why-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 46%, rgba(4, 18, 58, 0.28)),
    radial-gradient(circle at 78% 16%, rgba(248, 181, 22, 0.18), transparent 13rem);
  pointer-events: none;
}

.why-portrait img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.why-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 181, 22, 0.34);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.why-grid article::after {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 126px;
  height: 126px;
  content: "";
  background: radial-gradient(circle, rgba(248, 181, 22, 0.22), transparent 64%);
}

.why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(248, 181, 22, 0.32);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.why-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.why-grid h3 {
  color: var(--white);
}

.course-card li::before {
  position: absolute;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.courses,
.method,
.testimonials {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

.courses,
.method {
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 181, 22, 0.12), transparent 22rem),
    var(--soft);
}

.course-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-notice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -14px 0 22px;
}

.pricing-notice div {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 46px;
  background: #ffffff;
  border: 1px solid rgba(217, 226, 239, 0.94);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(6, 26, 79, 0.06);
}

.pricing-notice div::before {
  position: absolute;
  top: 19px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  content: "✓";
  background: linear-gradient(135deg, var(--orange), #ff2a2a);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.pricing-notice strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.25;
}

.pricing-notice span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
}

.course-card > p {
  margin-bottom: 0;
}

.course-fit {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 11px;
  color: var(--navy);
  background: rgba(42, 115, 255, 0.08);
  border: 1px solid rgba(42, 115, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.course-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.course-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 18px;
  font-weight: 700;
}

.course-top small {
  color: var(--orange);
  font-weight: 700;
}

.course-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  padding-top: 20px;
  list-style: none;
}

.course-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.course-card li::before {
  left: 0;
}

.course-price {
  display: grid;
  justify-items: start;
  gap: 13px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 226, 239, 0.96);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff2a2a);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(242, 74, 27, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.price-stack {
  display: grid;
  gap: 5px;
}

.price-stack del {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.price-stack span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.course-includes {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.course-price strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.course-price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.course-price a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(6, 26, 79, 0.16);
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-card {
  padding: 30px;
}

.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(6, 26, 79, 0.16);
}

.method-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 26, 79, 0.92), rgba(10, 46, 120, 0.84)),
    url("assets/vrushali-teaching.jpg") center / cover;
}

.testimonials::after {
  position: absolute;
  inset: auto -8% -42% auto;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(248, 181, 22, 0.28), transparent 63%);
}

.testimonials .section-heading,
.testimonial-marquee {
  position: relative;
  z-index: 1;
}

.testimonials .eyebrow,
.testimonials h2 {
  color: var(--white);
}

.testimonial-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialScroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  content: "“";
  font-family: Georgia, serif;
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 0.68;
}

.testimonial-title {
  order: 1;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.testimonial-head {
  order: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--orange));
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(6, 26, 79, 0.22);
  font-size: 0;
  font-weight: 900;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.testimonial-head strong {
  color: var(--navy);
}

.testimonial-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  order: 4;
  margin-top: 3px;
  margin-left: 72px;
  margin-bottom: 0;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0;
}

.testimonial-card p {
  order: 2;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 24px 58px 24px 24px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  list-style: none;
}

.faq-question::after {
  position: absolute;
  top: 21px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  content: "+";
  background: var(--navy);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  content: "-";
  background: var(--orange);
}

.faq-item.is-open {
  border-color: rgba(242, 74, 27, 0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, opacity 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  justify-items: center;
  width: min(1280px, calc(100% - 56px));
  margin-bottom: 74px;
  padding: clamp(42px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 63% 58%, rgba(242, 74, 27, 0.22), transparent 13rem),
    radial-gradient(circle at 90% 18%, rgba(91, 132, 255, 0.2), transparent 22rem),
    linear-gradient(135deg, #061842 0, #071f5f 62%, #092c78 100%);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(6, 26, 79, 0.22);
  isolation: isolate;
}

.final-cta-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1.5px, transparent 1.7px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at 68% 48%, #000 0 44%, transparent 72%);
  opacity: 0.7;
  z-index: -1;
}

.final-cta::after {
  position: absolute;
  right: 4%;
  bottom: -18%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(42, 115, 255, 0.18), transparent 64%);
  z-index: -1;
}

.final-cta-copy,
.cta-benefits {
  position: relative;
  z-index: 1;
}

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

.final-cta .eyebrow::before {
  background: var(--orange);
}

.final-cta .eyebrow::after {
  width: 30px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

.final-cta h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  line-height: 1.02;
}

.final-cta h2 span {
  display: inline;
  color: #ff8748;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.7;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin-top: 8px;
  margin-right: auto;
  margin-left: auto;
}

.cta-benefits div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  line-height: 1.45;
}

.cta-benefits div:first-child {
  padding-left: 0;
}

.cta-benefits div:last-child {
  border-right: 0;
}

.cta-benefits svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  fill: #8ea4ff;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 920px;
  width: 100%;
  justify-items: center;
}

.cta-buttons {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.85fr);
  gap: 20px;
  width: min(760px, 100%);
}

.cta-buttons .button {
  min-height: 70px;
  border-radius: 12px;
  font-size: 1.05rem;
  gap: 16px;
}

.cta-buttons svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cta-whatsapp {
  background: linear-gradient(135deg, #ff7a2a, #ff4a22);
  box-shadow: 0 22px 48px rgba(242, 74, 27, 0.34);
}

.cta-call {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.58);
}

.cta-call:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cta-assurances {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.cta-assurances span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-assurances span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #8ea4ff;
  content: "✓";
  border: 2px solid #748dff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(42, 115, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(242, 74, 27, 0.16), transparent 22rem),
    linear-gradient(135deg, #06153d 0, #071f5f 62%, #04123a 100%);
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(30vw, 420px);
  height: 100%;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(248, 181, 22, 0.45) 42% 51%, rgba(210, 0, 30, 0.38) 51% 60%, transparent 60%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 8% 100%, 28% 52%);
  opacity: 0.65;
}

.site-footer::after {
  position: absolute;
  left: -110px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(42, 115, 255, 0.18), transparent 64%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 1.25fr) minmax(180px, 0.72fr) minmax(180px, 0.72fr) minmax(270px, 0.95fr);
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 30px;
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.footer-brand img {
  width: 100%;
  height: auto;
  max-height: 112px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.footer-socials svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.footer-socials .social-instagram {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0 12%, #fdf497 13%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.footer-socials .social-facebook {
  background: #1877f2;
}

.footer-socials .social-whatsapp {
  background: #25d366;
}

.footer-socials .social-youtube {
  background: #ff0000;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3), 0 0 26px rgba(30, 143, 255, 0.18);
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: auto;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.footer-column h2,
.footer-contact h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.2;
}

.footer-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.footer-heading-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-column a,
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-column a span {
  color: var(--orange);
  font-size: 1.8rem;
  line-height: 0;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
}

.footer-contact a:not(.footer-demo-button) {
  font-weight: 700;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  color: var(--white);
  font-size: 1rem;
}

.footer-phone svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  fill: #25d366;
}

.footer-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 12px;
  padding: 12px 14px 12px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a18, #ff2a2a);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(242, 74, 27, 0.32);
  font-weight: 700;
}

.footer-demo-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--orange);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
}

.footer-demo-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-bottom p:first-child {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom p:first-child span {
  color: var(--orange);
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.45rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 78px;
  padding: 10px 12px 10px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(217, 226, 239, 0.88);
  border-radius: 999px;
  box-shadow: 0 22px 60px rgba(6, 26, 79, 0.22);
  font-size: 0.92rem;
  font-weight: 700;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  z-index: -1;
  animation: chatPulse 2.4s ease-out infinite;
}

.floating-whatsapp::after {
  position: absolute;
  right: 32px;
  bottom: -8px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--white);
  border-right: 1px solid rgba(217, 226, 239, 0.88);
  border-bottom: 1px solid rgba(217, 226, 239, 0.88);
  transform: rotate(45deg);
  z-index: -1;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 74px rgba(6, 26, 79, 0.28);
}

.floating-avatar {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  border: 3px solid rgba(37, 211, 102, 0.92);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(6, 26, 79, 0.18);
}

.floating-avatar::after {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 12px;
  height: 12px;
  content: "";
  background: #25d366;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.floating-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.floating-copy strong,
.floating-copy span {
  display: block;
}

.floating-copy strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1;
}

.floating-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.36);
}

.floating-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

@keyframes chatPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.98);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-heading,
  .hero-photo-placeholder {
    animation: riseIn 680ms ease both;
  }

  .hero-photo-placeholder {
    animation-delay: 120ms;
  }

  .hero-photo-placeholder img {
    animation: heroImageDrift 12s ease-in-out 900ms infinite alternate;
  }

  .hero-photo-placeholder::before {
    animation: heroImageSheen 5.6s ease-in-out 1.1s infinite;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.01) translate3d(-0.6%, -0.4%, 0);
  }

  to {
    transform: scale(1.055) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes heroImageSheen {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-72%);
  }

  72% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 12px;
  }
}

@media (max-width: 980px) {
  .about-vrushali,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-strip,
  .course-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-notice {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-portrait,
  .why-portrait img {
    min-height: 360px;
  }

  .about-portrait {
    height: auto;
    min-height: 420px;
  }

  .journey-band,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .cta-benefits div {
    padding: 0;
    border-right: 0;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
  }

  .cta-assurances {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand img {
    width: min(220px, 58vw);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
    padding: 14px 16px;
  }

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

  .hero {
    width: 100%;
    max-width: none;
    padding: 54px 16px 68px;
  }

  .hero-photo-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-stats,
  .proof-strip,
  .journey-band,
  .footer-inner,
  .course-grid,
  .pricing-notice,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .journey-band {
    width: min(100% - 32px, 1180px);
  }

  .proof-strip {
    margin-top: -24px;
  }

  .why-section {
    gap: 28px;
  }

  .why-portrait,
  .why-portrait img {
    min-height: 320px;
  }

  .why-grid article {
    min-height: auto;
    padding: 24px;
  }

  .about-vrushali {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-portrait {
    height: auto;
    min-height: 340px;
    border-radius: 24px;
  }

  .about-portrait img {
    min-height: 340px;
  }

  .global-students {
    align-items: flex-start;
    border-radius: 18px;
  }

  .courses,
  .why-section,
  .method,
  .testimonials {
    width: 100%;
    padding-inline: 16px;
  }

  .testimonial-card {
    flex-basis: 290px;
    min-height: 310px;
  }

  .button {
    width: 100%;
  }

  .journey-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .journey-band div:last-child {
    border-bottom: 0;
  }

  .final-cta {
    width: min(100% - 32px, 1180px);
    padding: 32px;
    border-radius: 24px;
  }

  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .final-cta-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .cta-buttons .button {
    min-height: 60px;
    font-size: 0.98rem;
  }

  .cta-assurances {
    gap: 14px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-width: 192px;
    min-height: 68px;
    gap: 9px;
    padding: 8px 10px 8px 8px;
  }

  .floating-avatar {
    width: 50px;
    height: 50px;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .floating-copy strong {
    font-size: 0.9rem;
  }

  .floating-copy span {
    font-size: 0.8rem;
  }
}
