: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;
  text-transform: capitalize;
  padding-bottom: 88px;
}

input,
select,
textarea,
option {
  text-transform: none;
}

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: 42px 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: 48px 0 30px;
  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: 28px;
  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;
  letter-spacing: -0.02em;
}

p {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.72;
}

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: 14px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

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

.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 {
  position: relative;
  padding: 24px;
  color: var(--text);
  background:
    linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) top / 100% 5px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #fbfdf8 100%);
  border-color: rgba(36, 90, 44, 0.14);
  box-shadow: 0 28px 68px rgba(18, 61, 34, 0.14);
}

.lead-card h2 {
  color: var(--primary);
  font-size: 26px;
  letter-spacing: -0.01em;
}

.lead-card p {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 15px;
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.form-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(36, 90, 44, 0.14);
  border-radius: 999px;
  background: #f5fbf1;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  grid-column: span 1;
  padding: 9px 11px 8px;
  border: 1px solid rgba(36, 90, 44, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f9fcf7 100%);
  box-shadow: 0 12px 24px rgba(18, 61, 34, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-form span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: color 0.2s ease;
  box-shadow: none;
}

.custom-select {
  position: relative;
  width: 100%;
  grid-column: span 1;
  min-width: 0;
  z-index: 1;
  overflow: visible;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 10px 12px 10px 13px;
  border: 1px solid rgba(36, 90, 44, 0.1);
  border-radius: 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f9fcf7 100%);
  box-shadow: 0 12px 24px rgba(18, 61, 34, 0.05);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.custom-select-trigger::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 14px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select-trigger:hover {
  transform: translateY(-1px);
}

.custom-select-trigger:focus {
  outline: none;
  border-color: rgba(216, 163, 37, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 163, 37, 0.14), 0 12px 24px rgba(18, 61, 34, 0.08);
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 999;
  display: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  max-height: 360px;
  padding: 6px;
  border: 1px solid rgba(36, 90, 44, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(18, 61, 34, 0.16);
  overflow-y: auto;
}

.custom-select.is-dropup .custom-select-menu {
  top: auto;
  bottom: calc(100% + 8px);
}

.custom-select.is-open .custom-select-menu {
  display: grid;
  gap: 4px;
}

.custom-select-option {
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: #ffffff;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.custom-select-option:hover,
.custom-select-option:focus {
  color: #ffffff;
  background: var(--primary);
  outline: none;
}

.custom-select-option.is-selected {
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.custom-select.is-placeholder .custom-select-trigger {
  color: var(--muted);
  font-weight: 600;
}

.lead-form input:focus {
  box-shadow: none;
}

.lead-form select:focus {
  box-shadow: none;
}

.lead-form label:focus-within {
  border-color: rgba(216, 163, 37, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 163, 37, 0.14), 0 12px 24px rgba(18, 61, 34, 0.08);
  transform: translateY(-1px);
}

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

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

.lead-form label:has(input.invalid),
.lead-form label:has(select.invalid) {
  border-color: rgba(217, 45, 32, 0.4);
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.08), 0 12px 24px rgba(18, 61, 34, 0.06);
}

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

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

.captcha-wrap {
  padding: 0;
  grid-column: 1 / -1;
}

.lead-form > button {
  grid-column: 1 / -1;
  min-height: 50px;
  border-radius: 16px;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 24px rgba(216, 163, 37, 0.18);
}

.declaration {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
  padding: 10px 11px;
  border: 1px solid rgba(36, 90, 44, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fdf4 0%, #eef8e8 100%);
  width: 100%;
  grid-column: 1 / -1;
}

.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: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  grid-column: 2;
  grid-row: 1;
}

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

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

.form-status {
  display: none;
  margin-top: 0;
  padding: 9px 12px;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(36, 90, 44, 0.1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  grid-column: 1 / -1;
  text-align: center;
}

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

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

.hp-field {
  display: none;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

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

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

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

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

.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: 14px;
}

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

.section-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.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);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.ranking-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.95;
}

.ranking-grid > .reveal:nth-child(2),
.detail-grid > .reveal:nth-child(2),
.feature-grid > .reveal:nth-child(2),
.specialization-grid > .reveal:nth-child(2),
.curriculum-grid > .reveal:nth-child(2),
.process-grid > .reveal:nth-child(2),
.testimonial-grid > .reveal:nth-child(2),
.legal-grid > .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.ranking-grid > .reveal:nth-child(3),
.detail-grid > .reveal:nth-child(3),
.feature-grid > .reveal:nth-child(3),
.specialization-grid > .reveal:nth-child(3),
.curriculum-grid > .reveal:nth-child(3),
.process-grid > .reveal:nth-child(3),
.testimonial-grid > .reveal:nth-child(3),
.legal-grid > .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.ranking-grid > .reveal:nth-child(4),
.detail-grid > .reveal:nth-child(4),
.feature-grid > .reveal:nth-child(4),
.specialization-grid > .reveal:nth-child(4),
.curriculum-grid > .reveal:nth-child(4),
.process-grid > .reveal:nth-child(4),
.testimonial-grid > .reveal:nth-child(4),
.legal-grid > .reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.ranking-grid > .reveal:nth-child(5),
.detail-grid > .reveal:nth-child(5),
.feature-grid > .reveal:nth-child(5),
.specialization-grid > .reveal:nth-child(5),
.curriculum-grid > .reveal:nth-child(5),
.process-grid > .reveal:nth-child(5),
.testimonial-grid > .reveal:nth-child(5),
.legal-grid > .reveal:nth-child(5) {
  transition-delay: 0.24s;
}

.detail-card::before,
.curriculum-card::before,
.course-card::before,
.process-step::before,
.feature-card::before,
.specialization-card::before,
.pricing-card::before,
.legal-card::before,
details::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.95;
}

.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);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.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;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.specialization-card:hover,
.ranking-card:hover,
.detail-card:hover,
.curriculum-card:hover,
.course-card:hover,
.process-step:hover,
.pricing-card:hover,
.legal-card:hover,
details:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(36, 90, 44, 0.22);
}

.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;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.specialization-card span {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.specialization-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

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

.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;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.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: 24px;
}

.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: 22px;
  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;
}

.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");
}

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

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

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;
}

.partner-note {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a,
.legal-link {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.legal-link:hover {
  text-decoration: underline;
}

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

.footer-inner .footer-disclaimer {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.legal-section {
  padding-bottom: 40px;
}

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

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.legal-card h2 {
  margin-top: 8px;
  font-size: 26px;
}

.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-contact {
  margin-top: 14px !important;
  font-size: 14px;
}

.recruiter-section {
  background: #fff;
}

.recruiter-wall {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 61, 34, 0.08);
}

.recruiter-wall img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.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(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(36, 90, 44, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) top / 100% 5px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #fbfdf8 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  animation: modalIn 0.22s ease both;
}

.modal-panel h2 {
  color: var(--primary);
  font-size: 34px;
  max-width: 390px;
}

.modal-panel p {
  color: var(--muted);
  font-size: 15px;
}

.modal-panel .eyebrow {
  margin-bottom: 10px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  background: #f3f8ef;
  font-size: 24px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(36, 90, 44, 0.08);
}

.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,
  .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: 32px 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: 38px 0 24px;
  }

  h1 {
    font-size: 40px;
  }

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

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

  .lead-form {
    grid-template-columns: 1fr;
  }

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

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

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

  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;
  }
}
