:root {
  --blue-950: #061f3d;
  --blue-900: #082b54;
  --blue-800: #0b3d70;
  --blue-700: #095d9f;
  --green: #0aa33b;
  --green-dark: #087d2e;
  --sky: #eaf5fb;
  --paper: #ffffff;
  --page: #f4f8fb;
  --text: #15253a;
  --muted: #627589;
  --line: #dce7ee;
  --shadow: 0 16px 40px rgba(9, 45, 84, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", Arial, sans-serif;
  color: var(--text);
  background: var(--page);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 18px rgba(6, 31, 61, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand img {
  width: clamp(128px, 14vw, 178px);
}

.header-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  color: #25374e;
  font-weight: 800;
}

.header-nav a {
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--green);
}

.header-cta,
.primary-button,
.course-search a,
.payment-link,
.submit-button,
.floating-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: white;
  background: var(--green);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 1rem;
}

.header-cta:hover,
.primary-button:hover,
.course-search a:hover,
.payment-link:hover,
.submit-button:hover,
.floating-register:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 22px rgba(10, 163, 59, 0.28);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: white;
  background:
    linear-gradient(rgba(5, 28, 55, 0.88), rgba(5, 28, 55, 0.91)),
    radial-gradient(circle at 18% 12%, rgba(10, 163, 59, 0.3), transparent 24rem),
    linear-gradient(135deg, #092d54, #061f3d);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(255, 255, 255, 0.14) 48%, transparent 49%),
    linear-gradient(150deg, transparent 47%, rgba(255, 255, 255, 0.12) 48%, transparent 49%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.22) 1px, transparent 2px);
  background-size: 160px 160px, 190px 190px, 80px 80px, 110px 110px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.02fr);
  grid-template-areas:
    "copy visual"
    "search search";
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.4rem) 0 3.2rem;
}

.hero-copy {
  grid-area: copy;
}

.hero-logo {
  display: inline-flex;
  width: min(345px, 76vw);
  margin-bottom: 1.2rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero-kicker {
  margin-bottom: 0.7rem;
  color: #b7d6e9;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 800;
}

h1 {
  max-width: 690px;
  margin-bottom: 1rem;
  color: white;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 1.55rem;
  color: #dbeaf4;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.48;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.primary-button,
.secondary-button,
.secondary-on-light,
.payment-link {
  min-height: 52px;
  padding: 0 1.2rem;
}

.secondary-button,
.secondary-on-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.secondary-button:hover {
  color: var(--blue-900);
  background: white;
  transform: translateY(-2px);
}

.secondary-on-light {
  color: var(--blue-900);
  border-color: var(--line);
  background: white;
}

.secondary-on-light:hover {
  color: white;
  background: var(--blue-900);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  grid-area: visual;
  min-height: clamp(330px, 37vw, 450px);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -1% -4% 8%;
  z-index: -2;
  border-radius: 44% 56% 46% 54% / 48% 35% 65% 52%;
  background: linear-gradient(135deg, rgba(10, 163, 59, 0.9), rgba(9, 93, 159, 0.82));
  transform: rotate(-5deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 4% 0 auto;
  z-index: -1;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.image-bubble {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 40% 60% 47% 53% / 48% 42% 58% 52%;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease;
}

.image-bubble:hover {
  border-radius: 47% 53% 39% 61% / 40% 55% 45% 60%;
  transform: translateY(-5px) rotate(0deg);
}

.image-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 50%;
  filter: saturate(1.04) contrast(1.02);
}

.floating-card {
  position: absolute;
  right: -0.4rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.16rem;
  min-width: 230px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.floating-card span,
.floating-card small {
  color: var(--green);
  font-weight: 800;
}

.floating-card strong {
  color: var(--blue-900);
  font-size: 2rem;
  line-height: 1;
}

.floating-card small {
  color: var(--muted);
}

.course-search {
  grid-area: search;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.65fr auto;
  align-items: stretch;
  width: min(980px, 100%);
  justify-self: center;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.course-search div {
  display: grid;
  gap: 0.22rem;
  min-height: 72px;
  padding: 0.9rem 1.2rem;
  border-left: 1px solid #d9e2e9;
}

.course-search span {
  color: #7d8d9d;
  font-size: 0.9rem;
  font-weight: 800;
}

.course-search strong {
  color: var(--blue-900);
  font-size: 1.06rem;
}

.course-search a {
  min-height: 72px;
  padding: 0 1.5rem;
  border-radius: 0;
}

.quick-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip a {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 0 0.85rem;
  color: var(--blue-900);
  background: white;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.quick-strip a:hover {
  color: white;
  background: var(--blue-700);
}

.intro-section,
.format-section,
.dates-section,
.syllabus-section,
.testimonials-section,
.eligibility-section,
.partners-section,
.register-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}

.section-eyebrow {
  margin-bottom: 0.42rem;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  color: var(--blue-950);
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy p,
.value-card p,
.date-card p,
.date-card li,
.syllabus-copy p,
.eligibility-list p,
.mentor-card p,
.register-copy p,
.site-footer span {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.55;
  font-weight: 600;
}

.mentor-card,
.value-card,
.date-card,
.partners-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: var(--shadow);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.mentor-card {
  padding: 1.8rem;
  border-top: 5px solid var(--green);
}

.mentor-card:hover,
.value-card:hover,
.date-card:hover,
.partners-panel:hover,
.lead-form:hover {
  border-color: rgba(10, 163, 59, 0.35);
  box-shadow: 0 20px 45px rgba(9, 45, 84, 0.17);
  transform: translateY(-5px);
}

.mentor-card span,
.value-card span,
.format-grid span,
.date-card small {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green);
  font-weight: 800;
}

.mentor-card strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--blue-900);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.value-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3.3rem, 6vw, 5.4rem) max(16px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 10%, rgba(10, 163, 59, 0.13), transparent 24rem),
    linear-gradient(180deg, #edf7fc, #f7fbfd);
}

.value-section::before,
.format-panel::before,
.eligibility-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(120deg, transparent 48%, rgba(9, 45, 84, 0.08) 49%, transparent 50%),
    linear-gradient(30deg, transparent 48%, rgba(9, 45, 84, 0.06) 49%, transparent 50%);
  background-size: 180px 180px;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.55rem;
  isolation: isolate;
}

.value-card::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -34px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(9, 93, 159, 0.08);
}

.value-card span {
  color: var(--green);
  font-size: 2.25rem;
  line-height: 1;
}

.value-card h3,
.date-card h3,
.eligibility-list h3 {
  margin-bottom: 0.55rem;
  color: var(--blue-950);
  font-size: 1.65rem;
  line-height: 1.1;
}

.format-section,
.dates-section,
.testimonials-section,
.eligibility-section,
.partners-section {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.format-panel,
.eligibility-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 9px;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(10, 163, 59, 0.22), transparent 18rem),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow);
}

.format-panel > *,
.eligibility-panel > * {
  position: relative;
  z-index: 1;
}

.format-panel h2,
.eligibility-panel h2,
.format-panel .section-eyebrow,
.eligibility-panel .section-eyebrow {
  color: white;
}

.format-panel .section-eyebrow,
.eligibility-panel .section-eyebrow {
  color: #8fe7a7;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.format-grid div {
  min-height: 128px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.09);
}

.format-grid span {
  color: #8fe7a7;
}

.format-grid strong {
  display: block;
  color: white;
  font-size: 1.24rem;
  line-height: 1.3;
}

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

.date-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #eef7fc);
}

.date-card.featured {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 0 100%, rgba(10, 163, 59, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(6, 31, 61, 0.95), rgba(9, 61, 112, 0.92));
}

.date-card.featured h3,
.date-card.featured p,
.date-card.featured li {
  color: white;
}

.date-card.featured small {
  color: #8fe7a7;
}

.date-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0 1.15rem 0 0;
}

.schedule-notes {
  margin-top: 1.25rem;
}

.schedule-notes img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.syllabus-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) 1fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.syllabus-copy {
  position: sticky;
  top: 104px;
}

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

.syllabus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    radial-gradient(circle at 0 100%, rgba(10, 163, 59, 0.1), transparent 13rem),
    linear-gradient(180deg, #ffffff, #eef7fc);
  box-shadow: var(--shadow);
}

.syllabus-card-featured {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 0 100%, rgba(10, 163, 59, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(6, 31, 61, 0.95), rgba(9, 61, 112, 0.92));
}

.syllabus-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green);
  font-weight: 800;
}

.syllabus-card-featured span {
  color: #8fe7a7;
}

.syllabus-card h3 {
  margin-bottom: 0.65rem;
  color: var(--blue-950);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.syllabus-card-featured h3 {
  color: white;
}

.syllabus-card p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 700;
}

.syllabus-card-featured p {
  color: #dceaf3;
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 2rem;
  align-items: center;
}

.testimonials-copy p:last-child {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.55;
  font-weight: 700;
}

.testimonials-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.testimonials-video video {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--blue-950);
}

.eligibility-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.eligibility-list article {
  min-height: 180px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
}

.eligibility-list h3,
.eligibility-list p {
  color: white;
}

.eligibility-list p {
  margin-bottom: 0;
  color: #dceaf3;
}

.partners-section {
  padding-bottom: 0;
}

.partners-panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 100% 0, rgba(10, 163, 59, 0.09), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f3f9fc);
  text-align: center;
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) 1fr;
  gap: 1rem;
  align-items: center;
}

.partner-logo,
.partner-name {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 1rem;
  border: 1px solid #dbe8ef;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
}

.partner-logo img {
  max-height: 70px;
}

.partner-name strong {
  color: var(--blue-950);
  font-size: 1.8rem;
}

.partner-name span {
  color: var(--muted);
  font-weight: 800;
}

.register-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    radial-gradient(circle at 0 0, rgba(10, 163, 59, 0.1), transparent 18rem),
    linear-gradient(180deg, #ffffff, #eef7fc);
  box-shadow: var(--shadow);
}

.register-copy {
  position: sticky;
  top: 104px;
}

.register-copy small {
  display: block;
  margin-top: 1rem;
  color: #52677a;
  font-weight: 800;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
}

.lead-form label {
  display: grid;
  gap: 0.42rem;
}

.lead-form label span {
  color: var(--blue-900);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #cadbe6;
  border-radius: 5px;
  color: var(--text);
  background: white;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 163, 59, 0.13);
}

.full-field,
.submit-button,
.form-message {
  grid-column: 1 / -1;
}

.submit-button {
  min-height: 54px;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(10, 163, 59, 0.3);
  border-radius: 7px;
  color: var(--blue-950);
  background: rgba(10, 163, 59, 0.08);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 5.5rem;
}

.site-footer strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.45rem;
}

.site-footer span {
  display: block;
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--blue-700);
  font-weight: 800;
}

.footer-site-link {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(9, 93, 159, 0.18);
  border-radius: 5px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  box-shadow: 0 10px 24px rgba(9, 45, 84, 0.08);
}

.footer-credit {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-credit:hover {
  color: var(--green);
}

.floating-register {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 28;
  min-height: 48px;
  padding: 0 1.1rem;
  box-shadow: 0 12px 28px rgba(10, 163, 59, 0.35);
}

.floating-whatsapp {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 29;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(9, 45, 84, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #1fb456;
  box-shadow: 0 18px 36px rgba(9, 45, 84, 0.28);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

body.modal-open {
  overflow: hidden;
}

.syllabus-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.syllabus-modal[hidden] {
  display: none;
}

.syllabus-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 35, 0.74);
  backdrop-filter: blur(8px);
}

.syllabus-modal-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  background:
    radial-gradient(circle at 100% 0, rgba(10, 163, 59, 0.08), transparent 18rem),
    #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-950);
  background: white;
  box-shadow: 0 10px 24px rgba(9, 45, 84, 0.12);
  font: inherit;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.modal-close:hover {
  color: white;
  background: var(--blue-900);
  transform: translateY(-2px);
}

.modal-header {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) 1rem;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  padding-left: 3.25rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.modal-image-wrap {
  overflow: auto;
  padding: clamp(0.75rem, 2vw, 1.2rem);
  background: #f7efe1;
}

.modal-image-wrap img {
  width: min(100%, 820px);
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(9, 45, 84, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "search";
    text-align: center;
  }

  .hero-copy,
  h1,
  .hero-subtitle,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    justify-self: center;
  }

  .course-search,
  .intro-section,
  .format-grid,
  .syllabus-section,
  .syllabus-cards,
  .testimonials-section,
  .register-section,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .course-search div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-grid,
  .dates-grid,
  .eligibility-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .syllabus-copy,
  .register-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 64px;
  }

  .header-cta {
    padding-inline: 0.72rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 2.7rem 0 4.4rem;
  }

  .hero-logo {
    width: min(310px, 78vw);
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.8rem);
  }

  .hero-visual {
    min-height: 330px;
  }

  .floating-card {
    right: 0.4rem;
    bottom: 0.6rem;
    min-width: 190px;
  }

  .quick-strip,
  .value-grid,
  .dates-grid,
  .eligibility-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 1rem;
  }

  .floating-register {
    display: none;
  }

  .syllabus-modal {
    padding: 0.7rem;
  }

  .syllabus-modal-panel {
    max-height: 94vh;
  }

  .modal-close {
    top: 0.65rem;
    left: 0.65rem;
    width: 40px;
    height: 40px;
  }

  .modal-header h2 {
    padding-left: 2.8rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
