* {
  box-sizing: border-box;
}

:root {
  --green: #079b11;
  --deep-green: #03690c;
  --red: #b61f27;
  --blue: #16366a;
  --navy: #071528;
  --cream: #fbfaf5;
  --light: #f3f7f4;
  --text: #172033;
  --muted: #657083;
  --white: #ffffff;
  --gold: #e5b84e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(7,21,40,0.08);
  backdrop-filter: blur(14px);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 17px;
  color: var(--red);
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  color: var(--blue);
  font-style: italic;
  font-size: 13px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-btn {
  background: var(--green);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 740px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(7,155,17,0.32), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(182,31,39,0.23), transparent 28%),
    linear-gradient(135deg, #071528 0%, #0d2445 50%, #123b36 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 58px;
  align-items: center;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow.light {
  color: #b8ffbd;
}

h1, h2, h3 {
  margin: 0 0 20px;
  line-height: 1.12;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.05em;
  max-width: 880px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 24px;
}

.lead {
  font-size: 21px;
  max-width: 780px;
  color: rgba(255,255,255,0.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 36px rgba(7,155,17,0.32);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.34);
}

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

.hero-logo-card {
  background: rgba(255,255,255,0.95);
  border-radius: 34px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
  transform: rotate(1deg);
}

.hero-logo-card img {
  width: min(360px, 100%);
  display: block;
  margin: 0 auto;
}

.tagline {
  margin-top: 18px;
  color: var(--blue);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading p {
  font-size: 19px;
  color: var(--muted);
}

.three-cards,
.program-grid,
.compare-grid,
.metrics {
  display: grid;
  gap: 22px;
}

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

.three-cards article,
.program-grid article,
.compare-card,
.metrics div,
.campus-card,
.investor-box {
  background: white;
  border: 1px solid rgba(7,21,40,0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(7,21,40,0.06);
}

.three-cards span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.three-cards p,
.program-grid p,
.compare-card li,
.investor-box li,
.campus-card p,
.split p {
  color: var(--muted);
}

.green-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(3,105,12,0.96), rgba(7,21,40,0.96)),
    url("assets/emu-logo.png");
  background-size: cover;
  background-position: center;
}

.green-section p {
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-list div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 22px;
}

.solution-list strong,
.solution-list span {
  display: block;
}

.solution-list strong {
  font-size: 21px;
}

.solution-list span {
  color: rgba(255,255,255,0.72);
}

.comparison,
.business {
  background: var(--light);
}

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

.compare-card ul,
.investor-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.compare-card.featured {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--deep-green));
}

.compare-card.featured li {
  color: rgba(255,255,255,0.86);
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 6px solid var(--green);
}

.campus {
  background: white;
}

.campus-card {
  background: var(--navy);
  color: white;
}

.campus-card p {
  color: rgba(255,255,255,0.76);
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-wrap span {
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 700;
}

.metrics {
  grid-template-columns: repeat(4, 1fr);
}

.metrics strong {
  display: block;
  color: var(--red);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}

.metrics span {
  color: var(--muted);
}

.investor-section {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(7,155,17,0.28), transparent 35%),
    linear-gradient(135deg, #071528, #102f57);
}

.investor-section p {
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}

.investor-box {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}

.investor-box li {
  color: rgba(255,255,255,0.78);
  margin: 10px 0;
}

.partners {
  background: var(--cream);
}

.contact {
  background: linear-gradient(135deg, #ffffff, #f5f8f5);
}

.contact-card {
  background: white;
  border-radius: 38px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(7,21,40,0.08);
  border: 1px solid rgba(7,21,40,0.08);
}

.contact-card img {
  width: 180px;
  margin-bottom: 24px;
}

.contact-card p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

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

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  display: block;
  color: white;
}

.footer span {
  color: rgba(255,255,255,0.62);
  font-style: italic;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .three-cards,
  .compare-grid,
  .program-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand div {
    display: none;
  }

  .three-cards,
  .compare-grid,
  .program-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 54px 0;
  }

  .section {
    padding: 70px 0;
  }

  .contact-card {
    padding: 36px 22px;
  }

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


.lang-switch {
  border: 1px solid rgba(7,21,40,0.16);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900 !important;
  color: var(--blue) !important;
  background: white;
}
