﻿:root {
  --green: #11a35a;
  --green-deep: #06723d;
  --green-soft: #e9f8f0;
  --dark: #06110d;
  --dark-2: #10211a;
  --ink: #14231c;
  --muted: #607269;
  --line: #dbe9e1;
  --white: #ffffff;
  --off-white: #f5fbf7;
  --gold: #d6a33f;
  --shadow: 0 24px 70px rgba(6, 17, 13, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(219, 233, 225, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #07472a);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 72px) clamp(52px, 7vw, 84px);
  background:
    linear-gradient(90deg, rgba(6, 17, 13, 0.92) 0%, rgba(6, 17, 13, 0.78) 50%, rgba(6, 17, 13, 0.55) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero::after {
  position: absolute;
  inset: auto -12% -34% 42%;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(17, 163, 90, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.hero-copy {
  padding-top: clamp(12px, 4vw, 48px);
  color: var(--white);
}

.scholarship-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scholarship-badge {
  padding: 10px 13px;
  border: 1px solid rgba(167, 239, 199, 0.35);
  border-radius: 999px;
  color: #bdf6d5;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

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

h1 {
  max-width: 780px;
  margin: 20px 0 18px;
  color: var(--white);
  font-size: clamp(2.55rem, 6.3vw, 4.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.18;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.value-strip {
  display: grid;
  max-width: 740px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.value-strip span,
.market-proof div,
.market-proof p {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.value-strip span {
  position: relative;
  min-height: 46px;
  padding: 12px 12px 12px 38px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.value-strip span::before,
.audience-grid span::before {
  position: absolute;
  content: "\2713";
  color: var(--green);
  font-weight: 900;
}

.value-strip span::before {
  left: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(17, 163, 90, 0.28);
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--dark);
  background: var(--white);
}

.market-proof {
  display: grid;
  max-width: 740px;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 10px;
  margin-top: 34px;
}

.market-proof p,
.market-proof div {
  margin: 0;
  padding: 16px;
}

.market-proof p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.market-proof strong,
.market-proof span {
  display: block;
}

.market-proof strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
}

.market-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.application-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.form-heading {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f5fbf7);
}

.form-heading h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.application-form {
  display: grid;
  gap: 13px;
  padding: 22px 24px 24px;
}

.field-grid {
  display: grid;
  gap: 13px;
}

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

label {
  display: grid;
  gap: 6px;
  color: #33443b;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfded6;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--dark);
  background: #fbfefc;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(17, 163, 90, 0.13);
  outline: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-message {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.section-pad {
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.compact {
  max-width: 690px;
}

.section-heading p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.benefits,
.faq {
  background: var(--white);
}

.benefit-grid,
.course-grid,
.audience-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 14px;
}

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

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

.benefit-grid article,
.course-card,
.audience-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(6, 17, 13, 0.05);
}

.benefit-grid article {
  min-height: 204px;
  padding: 20px;
}

.card-icon,
.course-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-grid p,
.course-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.paths {
  background:
    linear-gradient(rgba(245, 251, 247, 0.92), rgba(245, 251, 247, 0.97)),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.course-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
}

.course-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-deep);
  font-size: 0.9rem;
}

.audience {
  background: var(--off-white);
}

.audience-grid article {
  position: relative;
  min-height: 116px;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, #ffffff, #f1faf5);
}

.audience-grid span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(17, 163, 90, 0.12);
}

.audience-grid span::before {
  inset: 2px auto auto 8px;
}

.audience-grid h3 {
  margin: 0;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 10px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--dark);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), #062116);
}

.final-cta div {
  max-width: 820px;
}

.final-cta .eyebrow {
  color: #bdf6d5;
}

.final-cta h2 {
  margin-top: 8px;
  color: var(--white);
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .application-card {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .value-strip,
  .market-proof,
  .two-cols,
  .benefit-grid,
  .course-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .application-card {
    border-radius: 8px;
  }

  .form-heading,
  .application-form {
    padding-right: 18px;
    padding-left: 18px;
  }

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

@media (max-width: 430px) {
  .brand span:last-child {
    font-size: 0.95rem;
  }

  .scholarship-badge {
    align-items: flex-start;
    border-radius: 8px;
  }

  .value-strip span {
    min-height: 44px;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message.is-error {
  color: #b42318;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

