:root {
  --navy: #071b4f;
  --blue: #102a82;
  --pink: #d80758;
  --teal: #029ca1;
  --yellow: #f6cd1f;
  --ink: #172033;
  --muted: #637085;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --line: rgba(7, 27, 79, 0.12);
  --shadow: 0 24px 70px rgba(7, 27, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  color: var(--navy);
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--pink);
}

.header-action,
.floating-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.header-action {
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--navy);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  padding: 0.9rem 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #aa0647);
  box-shadow: 0 18px 48px rgba(216, 7, 88, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4.65rem);
  padding: clamp(2.5rem, 5vw, 5rem) 5vw;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 27, 79, 0.96), rgba(16, 42, 130, 0.88)),
    url("kaushalya-taada-masterclass.jpeg") center / cover;
  color: #fff;
}

.hero-copy {
  max-width: 740px;
}

.partner-strip {
  display: inline-grid;
  grid-template-columns: auto 1px auto 1px auto;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.7rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.partner-strip img {
  width: auto;
  height: 3rem;
  max-width: 11rem;
  object-fit: contain;
}

.partner-strip img:first-child {
  height: 4.1rem;
  max-width: 5.5rem;
}

.partner-strip span {
  width: 1px;
  height: 2.4rem;
  background: rgba(7, 27, 79, 0.16);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  min-width: 11rem;
  padding: 0.85rem 1.25rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #b7054a);
  box-shadow: 0 18px 42px rgba(216, 7, 88, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--yellow);
}

.btn-whatsapp {
  color: #fff;
  background: #128c7e;
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.26);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 650px;
  margin: 0;
}

.quick-facts div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.25rem 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.poster-panel {
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.poster-panel img {
  width: 100%;
  border-radius: 12px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 1.4rem 5vw;
  background: #fff;
}

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

.trust-band strong {
  color: var(--pink);
  font-size: 1.7rem;
  font-weight: 900;
}

.trust-band span {
  color: var(--muted);
  font-weight: 800;
}

.section-grid,
.courses,
.scholarship,
.registration {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5.5rem) 5vw;
}

.section-copy p,
.courses-heading p,
.scholarship-copy p,
.registration p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cards article {
  min-height: 13rem;
  padding: 1.35rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cards span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--teal);
  font-weight: 900;
}

.cards p {
  margin: 0;
  color: var(--muted);
}

.courses {
  align-items: center;
  background: #fff;
}

.course-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 27, 79, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.course-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  min-height: 4.8rem;
  border-top: 1px solid rgba(7, 27, 79, 0.12);
}

.course-row:first-child {
  border-top: 0;
}

.course-row span,
.course-row strong {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
}

.course-row span:first-child {
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border-right: 1px solid rgba(7, 27, 79, 0.12);
  font-weight: 900;
}

.course-row strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.course-head {
  min-height: 3.4rem;
  background: var(--navy);
}

.course-head span {
  color: #fff;
  background: var(--navy);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scholarship {
  background:
    linear-gradient(135deg, rgba(7, 27, 79, 0.96), rgba(2, 156, 161, 0.84)),
    var(--navy);
  color: #fff;
}

.scholarship h2 {
  color: #fff;
}

.scholarship-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.scheme-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scheme-list li {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.registration {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 205, 31, 0.12), transparent 42%),
    var(--soft);
}

.register-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.register-card strong,
.register-card span {
  display: block;
}

.register-card strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.register-card span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5vw;
  color: rgba(255, 255, 255, 0.76);
  background: #06133a;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer a {
  font-weight: 900;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(7, 27, 79, 0.96), rgba(2, 156, 161, 0.84)),
    url("kaushalya-taada-masterclass.jpeg") center / cover;
}

.thank-you-page .site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
}

.thank-you-hero {
  display: grid;
  min-height: calc(100vh - 4.65rem);
  place-items: center;
  padding: clamp(2rem, 5vw, 5rem) 5vw;
}

.thank-you-card {
  width: min(860px, 100%);
  padding: clamp(1.4rem, 4vw, 3rem);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.thank-you-card h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.9rem);
}

.thank-you-copy {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero,
  .section-grid,
  .courses,
  .scholarship,
  .registration {
    grid-template-columns: 1fr;
  }

  .thank-you-hero {
    place-items: start center;
    min-height: auto;
  }

  .thank-you-card {
    width: 100%;
  }

  .thank-you-card h1 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .poster-panel {
    max-width: 680px;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .thank-you-page .site-header {
    align-items: center;
    gap: 0.65rem;
  }

  .brand img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 2.5rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
  }

  .thank-you-page .header-action {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .thank-you-page .brand {
    flex: 1 1 auto;
  }

  .hero {
    min-height: auto;
    padding: 2.2rem 1rem 3rem;
  }

  .thank-you-hero {
    padding: 1rem;
  }

  .thank-you-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .thank-you-card h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  .thank-you-copy {
    font-size: 1rem;
  }

  .partner-strip {
    grid-template-columns: 4.8rem 1px 6.2rem 1px 3.7rem;
    gap: 0.45rem;
    width: 100%;
  }

  .partner-strip img {
    width: 100%;
    height: 2.2rem;
  }

  .partner-strip img:first-child {
    height: 3.1rem;
  }

  .hero-actions,
  .quick-facts,
  .cards,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-grid,
  .courses,
  .scholarship,
  .registration {
    padding: 3rem 1rem;
  }

  .course-row {
    grid-template-columns: 4.25rem minmax(0, 1fr);
  }

  .course-row span,
  .course-row strong {
    padding: 0.85rem;
  }

  .course-row strong {
    font-size: 0.98rem;
  }

  .cards article {
    min-height: auto;
  }

  .floating-cta {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 430px) {
  .thank-you-page .site-header {
    padding: 0.65rem 0.75rem;
  }

  .thank-you-page .brand img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .thank-you-page .brand strong {
    font-size: 0.9rem;
  }

  .thank-you-page .header-action {
    min-height: 2.25rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.72rem;
  }

  .thank-you-card .partner-strip {
    grid-template-columns: 3.85rem 1px minmax(4.8rem, 1fr) 1px 3.2rem;
    padding: 0.45rem;
  }

  .thank-you-card .partner-strip img {
    height: 1.85rem;
  }

  .thank-you-card .partner-strip img:first-child {
    height: 2.55rem;
  }

  .thank-you-card h1 {
    font-size: clamp(2.05rem, 11.5vw, 2.8rem);
  }

  .thank-you-actions {
    gap: 0.65rem;
  }
}
