:root {
  --primary: #245A2C;
  --primary-dark: #123D22;
  --accent: #D8A325;
  --accent-dark: #B98412;
  --bg: #FFFFFF;
  --soft: #F5F8F2;
  --text: #17251A;
  --muted: #667085;
  --line: #DDE8D7;
  --success: #0D8B61;
  --shadow: 0 18px 48px rgba(18, 61, 34, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 88px;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.soft {
  background: var(--soft);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 9px max(16px, calc((100vw - 1140px) / 2));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--primary);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  width: min(420px, 48vw);
}

.logo-brand img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #142410;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(216, 163, 37, 0.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: #C9D3E3;
}

.btn-small {
  min-height: 42px;
  padding: 9px 16px;
}

.btn-call {
  color: #142410;
  background: #fff;
  border-color: var(--accent);
}

.blink-cta {
  animation: blinkPulse 1.15s ease-in-out infinite;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 66px;
  color: #fff;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 61, 34, 0.95) 0%, rgba(18, 61, 34, 0.82) 46%, rgba(18, 61, 34, 0.42) 100%),
    url("assets/gla-campus-only.jpg") center/cover;
}

.hero-grid,
.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", "Montserrat", sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
}

.hero-subtitle {
  max-width: 670px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  min-width: fit-content;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.lead-card,
.pricing-card,
.testimonial-card,
.salary-card,
.roles {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-card {
  padding: 28px;
  color: var(--text);
}

.lead-card h2 {
  color: var(--primary);
  font-size: 28px;
}

.lead-card p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #CCD6E4;
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 163, 37, 0.18);
}

.lead-form input.invalid {
  border-color: #D92D20;
}

.field-error {
  display: none;
  margin-top: -4px;
  color: #D92D20;
  font-size: 12px;
  font-weight: 700;
}

.field-error.is-visible {
  display: block;
}

.captcha-wrap {
  padding: 6px 0 2px;
}

.declaration {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  width: 100%;
}

.declaration input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
  grid-column: 1;
  grid-row: 1;
}

.declaration span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  grid-column: 2;
  grid-row: 1;
}

.declaration.invalid {
  border-color: #D92D20;
}

.lead-form small {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  display: none;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--primary);
  background: rgba(36, 90, 44, 0.1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #D92D20;
  background: rgba(217, 45, 32, 0.1);
}

.stats-band {
  padding: 28px 0;
  background: var(--primary-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-text {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.split-heading h2 {
  color: var(--primary);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.split-heading > div:first-child {
  max-width: 760px;
}

.section-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.ranking-section {
  position: relative;
  overflow: hidden;
  background: #F8FAF6;
}

.ranking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 90, 44, 0.06), transparent 42%);
  pointer-events: none;
}

.ranking-section .container {
  position: relative;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 22px;
}

.ranking-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(18, 61, 34, 0.08);
}

.ranking-card span {
  display: block;
  min-height: 36px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.ranking-card h3 {
  margin: 10px 0;
  color: var(--primary);
}

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

.accreditation-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 2px solid var(--accent);
}

.accreditation-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font-weight: 900;
}

.detail-grid,
.curriculum-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.detail-card,
.curriculum-card,
.course-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 61, 34, 0.08);
}

.detail-card,
.curriculum-card,
.course-card {
  padding: 24px;
}

.detail-card h3,
.curriculum-card h3,
.course-card h3,
.process-step h3 {
  color: var(--primary);
}

.detail-card p,
.curriculum-card p,
.course-card p,
.process-step p {
  color: var(--muted);
}

.curriculum-card span,
.course-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-card {
  display: flex;
  flex-direction: column;
}

.course-card ul {
  margin: 8px 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.course-card .btn {
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
}

.process-step span {
  font-size: 26px;
  line-height: 1;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.specialization-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.feature-card p,
.testimonial-card p,
.roles li,
.pricing-card li {
  color: var(--muted);
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.specialization-card {
  min-height: 92px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fees-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 42px;
  align-items: center;
}

.urgency-pill,
.offer-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  color: #142410;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
}

.pricing-card {
  position: relative;
  padding: 30px;
}

.pricing-card p {
  margin: 24px 0 8px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card h3 {
  color: var(--primary);
  font-size: 48px;
}

.pricing-card > span {
  display: block;
  margin: 8px 0 22px;
  color: var(--success);
  font-weight: 900;
}

.pricing-card ul,
.roles ul {
  padding-left: 20px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.placement-showcase {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.placement-copy h2 {
  color: var(--primary);
}

.placement-copy p {
  max-width: 560px;
  color: var(--muted);
}

.story-hooks {
  display: grid;
  gap: 9px;
  max-width: 560px;
  margin: 20px 0;
}

.story-hooks span {
  padding: 10px 14px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 61, 34, 0.07);
}

.mini-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 22px 0;
}

.mini-logos span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 61, 34, 0.08);
}

.placement-profile {
  display: grid;
  justify-items: center;
  align-self: stretch;
  min-height: 560px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #EEF6EC);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-image-btn,
.story-title {
  border: 0;
  background: transparent;
  padding: 0;
}

.profile-image-btn {
  width: 100%;
}

.placement-profile img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  background: #fff;
}

.story-title {
  margin-top: 16px;
  color: var(--primary);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.story-title:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.placement-profile span {
  color: var(--muted);
  font-weight: 800;
}

.proof-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 16px;
}

.proof-chips span {
  display: block;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  text-align: center;
}

.scarcity-line {
  width: 100%;
  margin: 16px 0 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(216, 163, 37, 0.16);
  color: var(--primary);
  text-align: center;
  font-weight: 900;
}

.piyush-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.piyush-actions .btn {
  min-height: 44px;
  padding: 11px 14px;
  font-size: 14px;
}

.placement-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.placement-metrics article {
  min-height: 118px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 61, 34, 0.18);
}

.placement-metrics strong {
  display: block;
  color: var(--accent);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.placement-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.salary-card,
.roles {
  padding: 26px;
}

.salary-card span {
  color: var(--muted);
  font-weight: 800;
}

.salary-card strong {
  display: block;
  margin: 14px 0 22px;
  color: var(--primary);
  font-size: 32px;
  line-height: 1.15;
}

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.partners span {
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 800;
}

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

.learner-reviews {
  background: #0B4562;
  color: #fff;
}

.learner-reviews .section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.learner-reviews h2 {
  color: #fff;
}

.learner-reviews .testimonial-grid {
  gap: 26px;
}

.testimonial-card {
  position: relative;
  padding: 72px 28px 28px;
}

.learner-reviews .testimonial-card {
  min-height: 286px;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  box-shadow: none;
}

.testimonial-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.learner-reviews .testimonial-card img {
  position: absolute;
  top: -39px;
  left: 50%;
  width: 86px;
  height: 86px;
  border: 4px solid #0B4562;
  transform: translateX(-50%);
}

.testimonial-card h3 {
  color: var(--primary);
}

.learner-reviews .testimonial-card h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 20px;
}

.learner-reviews .testimonial-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.testimonial-card span,
.enrollment-badge span {
  color: var(--muted);
  font-weight: 700;
}

.learner-reviews .testimonial-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.degree-section {
  background: #fff;
}

.degree-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.degree-grid h2 {
  color: var(--primary);
}

.degree-preview {
  display: grid;
  place-items: center;
}

.degree-image-card {
  width: min(370px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid #BFD3BA;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.degree-image-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 4px;
}

.degree-image-card figcaption {
  margin-top: 12px;
  color: #000;
  font-weight: 900;
}

.enrollment-badge {
  min-width: 190px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--soft);
}

.enrollment-badge strong {
  display: block;
  color: var(--primary);
  font-size: 30px;
}

.countdown-section {
  padding: 48px 0;
  color: #fff;
  background: var(--primary-dark);
}

.programs-section {
  background: var(--primary-dark);
  color: #fff;
}

.programs-section .split-heading h2,
.programs-section .course-card h3 {
  color: #fff;
}

.programs-section .btn-secondary {
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.32);
}

.programs-section .course-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background: #0E331C;
  color: #fff;
}

.programs-section .course-card > span,
.programs-section .course-card h3,
.programs-section .course-card p,
.programs-section .course-card ul {
  position: relative;
  z-index: 1;
  margin-right: 18px;
  margin-left: 18px;
}

.programs-section .course-card > span {
  margin-top: 18px;
  color: var(--accent);
}

.programs-section .course-card p,
.programs-section .course-card ul {
  color: rgba(255, 255, 255, 0.82);
}

.programs-section .course-card .btn {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  margin: auto 18px 18px;
}

.course-visual {
  min-height: 154px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.course-card:nth-child(1) .course-visual {
  background-image: linear-gradient(180deg, rgba(18, 61, 34, 0.06), rgba(18, 61, 34, 0.72)), url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=80");
}

.course-card:nth-child(2) .course-visual {
  background-image: linear-gradient(180deg, rgba(18, 61, 34, 0.06), rgba(18, 61, 34, 0.72)), url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=80");
}

.course-card:nth-child(3) .course-visual {
  background-image: linear-gradient(180deg, rgba(18, 61, 34, 0.06), rgba(18, 61, 34, 0.72)), url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=700&q=80");
}

.course-card:nth-child(4) .course-visual {
  background-image: linear-gradient(180deg, rgba(18, 61, 34, 0.06), rgba(18, 61, 34, 0.72)), url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=700&q=80");
}

.countdown-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 76px);
  gap: 10px;
}

.timer div {
  padding: 12px 8px;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.timer strong {
  display: block;
  font-size: 26px;
}

.timer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #286332);
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.bottom-cta-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(940px, calc(100% - 24px));
  min-height: 68px;
  padding: 12px 14px;
  transform: translateX(-50%);
  background: rgba(18, 41, 44, 0.96);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.bottom-cta-copy {
  color: #fff;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.bottom-cta {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
  border: 0;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;
  min-width: 140px;
}

.bottom-cta.apply {
  background: var(--accent);
  color: #142410;
}

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 108px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-fab-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.whatsapp-fab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer {
  margin-top: 0;
  background: #171A1E;
  color: #fff;
  padding: 18px 0 18px;
}

.footer-inner {
  display: grid;
  gap: 10px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 61, 34, 0.72);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  animation: modalIn 0.22s ease both;
}

.modal-panel h2 {
  color: var(--primary);
  font-size: 30px;
}

.modal-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  background: var(--soft);
  font-size: 26px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  display: none;
  width: min(440px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--success);
  text-align: center;
  transform: translateX(-50%);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.toast.is-visible {
  display: block;
}

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

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

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes blinkPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(216, 163, 37, 0.52);
  }
  50% {
    opacity: 0.62;
    box-shadow: 0 0 0 8px rgba(216, 163, 37, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .final-grid,
  .fees-grid,
  .outcome-grid,
  .countdown-grid,
  .placement-showcase,
  .degree-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .specialization-grid,
  .detail-grid,
  .curriculum-grid,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .testimonial-grid,
  .process-grid,
  .ranking-grid,
  .placement-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-metrics {
    margin-top: 0;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .top-bar {
    min-height: 64px;
  }

  .logo-brand {
    width: min(218px, 55vw);
  }

  .top-actions .btn-small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 62px 0 44px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .lead-card,
  .pricing-card,
  .modal-panel {
    padding: 22px;
  }

  .feature-grid,
  .specialization-grid,
  .detail-grid,
  .curriculum-grid,
  .course-grid,
  .process-grid,
  .ranking-grid,
  .placement-metrics,
  .stats-grid,
  .testimonial-grid,
  .partners {
    grid-template-columns: 1fr;
  }

  .mini-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .timer {
    grid-template-columns: repeat(4, minmax(58px, 1fr));
    width: 100%;
  }

  .timer div {
    padding: 10px 4px;
  }

  .timer strong {
    font-size: 22px;
  }

  body {
    padding-bottom: 80px;
  }

  .bottom-cta {
    min-height: 44px;
    font-size: 13px;
    padding: 10px 14px;
    min-width: 118px;
  }

  .bottom-cta-bar {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .bottom-cta-copy {
    font-size: 14px;
  }

  .whatsapp-fab {
    right: 12px;
    bottom: 104px;
    width: 48px;
    height: 48px;
  }

  .footer-inner p {
    font-size: 13px;
  }
}
