:root {
  --blue-950: #07345c;
  --blue-900: #0b4779;
  --blue-800: #0c5387;
  --blue-700: #14699e;
  --blue-600: #1d83bb;
  --green-700: #087a4f;
  --green-600: #0d9662;
  --green-500: #18ab73;
  --orange-600: #ef6b27;
  --orange-500: #ff7a2f;
  --yellow-400: #f5b927;
  --peach-100: #fff2e8;
  --blue-100: #eaf5fb;
  --green-100: #e9f8f0;
  --ink: #182332;
  --muted: #67768a;
  --line: #e5ebf0;
  --surface: #f6f9fb;
  --surface-warm: #fffaf5;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(7, 52, 92, .08);
  --shadow-md: 0 20px 55px rgba(7, 52, 92, .14);
  --shadow-lg: 0 34px 90px rgba(7, 45, 79, .21);
  --radius-sm: 13px;
  --radius-md: 21px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1800;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600), var(--orange-500));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(7, 38, 68, .12);
}

.utility-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .84);
  background: var(--blue-950);
  font-size: .75rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner > div {
  display: flex;
  gap: 22px;
}

.utility-bar i {
  margin-right: 7px;
  color: #8cdcc2;
}

.utility-bar a {
  transition: color .2s ease;
}

.utility-bar a:hover {
  color: #b3eedb;
}

.navbar {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(7, 52, 92, .07);
  backdrop-filter: blur(17px);
}

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

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 315px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

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

.nav-link {
  position: relative;
  padding-block: 27px;
  color: #38475a;
  font-size: .88rem;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-600), var(--blue-600));
  transform: translateX(-50%);
  transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-800);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 23px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border-radius: 11px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 5px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  min-height: 49px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  font-family: "Manrope", sans-serif;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

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

.button-campus,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: 0 14px 32px rgba(12, 83, 135, .24);
}

.button-campus:hover,
.button-primary:hover {
  box-shadow: 0 18px 40px rgba(12, 83, 135, .32);
}

.button-campus {
  min-height: 46px;
  padding-inline: 18px;
}

.button-outline {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 9px 24px rgba(7, 52, 92, .05);
}

.button-outline:hover {
  color: var(--green-700);
  border-color: rgba(13, 150, 98, .3);
}

.button-light,
.button-white {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(4, 31, 57, .14);
}

.button-orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 14px 30px rgba(239, 107, 39, .24);
}

/* Hero */
.hero {
  position: relative;
  min-height: 805px;
  padding: 188px 0 105px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 24%, rgba(24, 171, 115, .14), transparent 29%),
    radial-gradient(circle at 88% 73%, rgba(255, 122, 47, .12), transparent 27%),
    linear-gradient(135deg, #fbfdff 0%, #f3f9fc 50%, #fffaf4 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, .9), transparent);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(12, 83, 135, .027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 83, 135, .027) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-green {
  width: 310px;
  height: 310px;
  left: -155px;
  bottom: 65px;
  border: 52px solid rgba(13, 150, 98, .055);
}

.hero-orb-orange {
  width: 350px;
  height: 350px;
  right: -165px;
  top: 90px;
  border: 60px solid rgba(255, 122, 47, .055);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 19px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: "Manrope", sans-serif;
  font-size: .7rem;
  font-weight: 800;
}

.eyebrow-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-600));
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(13, 150, 98, .18);
}

.hero h1 {
  max-width: 720px;
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.15rem, 5.15vw, 5.45rem);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue-800);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 1%;
  bottom: -8px;
  z-index: -1;
  width: 57%;
  height: 9px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-400));
  border-radius: 99px;
  transform: rotate(-1.3deg);
}

.hero-lead {
  max-width: 630px;
  margin: 29px 0 32px;
  color: #586a7d;
  font-size: 1.07rem;
}

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

.hero-proof {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-proof > div {
  min-width: 220px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(12, 83, 135, .09);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.proof-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
}

.proof-icon.blue {
  color: var(--blue-800);
  background: var(--blue-100);
}

.proof-icon.green {
  color: var(--green-700);
  background: var(--green-100);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: var(--ink);
  font-size: .75rem;
}

.hero-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .62rem;
}

.hero-visual {
  position: relative;
  min-height: 535px;
}

.hero-photo {
  position: absolute;
  inset: 20px 29px 26px 34px;
  overflow: hidden;
  background: var(--blue-100);
  border-radius: 55px 18px 55px 18px;
  box-shadow: var(--shadow-lg);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: inherit;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 45, 76, .34));
}

.hero-logo-card {
  position: absolute;
  z-index: 5;
  top: 0;
  right: -3px;
  min-width: 205px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(13px);
}

.hero-logo-card img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.hero-logo-card small,
.hero-logo-card strong {
  display: block;
}

.hero-logo-card small {
  color: var(--muted);
  font-size: .62rem;
}

.hero-logo-card strong {
  color: var(--blue-900);
  font-size: .77rem;
}

.hero-floating-card {
  position: absolute;
  z-index: 5;
  left: -4px;
  bottom: 5px;
  min-width: 240px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  animation: floating 5s ease-in-out infinite;
}

.float-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-600));
  border-radius: 12px;
}

.hero-floating-card small,
.hero-floating-card strong {
  display: block;
}

.hero-floating-card small {
  color: var(--muted);
  font-size: .63rem;
}

.hero-floating-card strong {
  color: var(--ink);
  font-size: .76rem;
}

.hero-ribbon {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 66px;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(239, 107, 39, .27);
  text-align: center;
  transform: rotate(5deg);
}

.hero-ribbon i {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.hero-ribbon span {
  max-width: 78px;
  font-size: .59rem;
  font-weight: 800;
  line-height: 1.25;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Quick facts */
.quick-facts {
  position: relative;
  z-index: 6;
  background: var(--white);
}

.facts-grid {
  margin-top: -38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.fact {
  position: relative;
  min-height: 120px;
  padding: 24px 25px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.fact:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 25px;
  width: 1px;
  background: var(--line);
}

.fact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 13px;
}

.fact-icon.green {
  color: var(--green-700);
  background: var(--green-100);
}

.fact-icon.orange {
  color: var(--orange-600);
  background: var(--peach-100);
}

.fact-icon.navy {
  color: var(--white);
  background: var(--blue-950);
}

.fact strong,
.fact small {
  display: block;
}

.fact strong {
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
}

.fact small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .67rem;
}

/* Shared */
.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.section-heading.centered .section-kicker {
  margin-inline: auto;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-family: "Manrope", sans-serif;
  font-size: .68rem;
  font-weight: 800;
}

.section-kicker > span {
  width: 29px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600));
  border-radius: 99px;
}

.light-kicker {
  color: #97e2c7;
}

.light-kicker > span {
  background: linear-gradient(90deg, #92e5c7, #8bd0ee);
}

.section-heading h2,
.about-copy h2,
.methodology-copy h2,
.faq-intro h2,
.contact-copy h2 {
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
}

.section-heading p,
.faq-intro > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: .96rem;
}

/* Courses */
.courses {
  background:
    radial-gradient(circle at 0 20%, rgba(13, 150, 98, .07), transparent 22%),
    radial-gradient(circle at 100% 75%, rgba(255, 122, 47, .07), transparent 24%),
    var(--surface);
}

.course-toolbar {
  width: fit-content;
  margin: -15px auto 31px;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.filter-button {
  min-height: 39px;
  padding: 0 15px;
  color: var(--muted);
  background: transparent;
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.filter-button:hover {
  color: var(--blue-800);
}

.filter-button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: 0 8px 20px rgba(12, 83, 135, .18);
}

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

.course-card {
  position: relative;
  min-height: 310px;
  padding: 28px 23px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(7, 52, 92, .055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .25s ease;
}

.course-card.hidden {
  display: none;
}

.course-card::after {
  content: "";
  position: absolute;
  right: -53px;
  bottom: -58px;
  width: 125px;
  height: 125px;
  border: 19px solid rgba(12, 83, 135, .035);
  border-radius: 50%;
  transition: transform .3s ease;
}

.course-card:hover {
  transform: translateY(-7px);
  border-color: rgba(12, 83, 135, .18);
  box-shadow: var(--shadow-md);
}

.course-card:hover::after {
  transform: scale(1.15);
}

.course-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}

.course-accent.inclusion {
  background: linear-gradient(90deg, var(--blue-600), #39a8d8);
}

.course-accent.sst {
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
}

.course-accent.wellbeing {
  background: linear-gradient(90deg, var(--orange-600), var(--yellow-400));
}

.course-accent.education {
  background: linear-gradient(90deg, #7357c9, var(--blue-600));
}

.course-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 15px;
  font-size: 1.06rem;
}

.course-icon.sst {
  color: var(--green-700);
  background: var(--green-100);
}

.course-icon.wellbeing {
  color: var(--orange-600);
  background: var(--peach-100);
}

.course-icon.education {
  color: #6249b2;
  background: #f0ecff;
}

.course-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.course-meta span {
  padding: 5px 8px;
  color: var(--blue-800);
  background: #f0f6fa;
  border-radius: 99px;
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.course-card h3 {
  margin-top: 14px;
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: .98rem;
  line-height: 1.35;
}

.course-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.58;
}

.course-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.course-link i {
  transition: transform .2s ease;
}

.course-link:hover i {
  transform: translateX(4px);
}

.course-cta {
  margin-top: 28px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .12), transparent 24%),
    linear-gradient(130deg, var(--blue-950), var(--blue-800));
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.course-cta > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.course-cta-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-radius: 13px;
}

.course-cta small,
.course-cta strong {
  display: block;
}

.course-cta small {
  color: #9edbc8;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.course-cta strong {
  margin-top: 3px;
  font-size: .83rem;
}

/* About */
.about {
  background: var(--white);
}

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

.about-visual {
  position: relative;
  min-height: 540px;
}

.about-image-main {
  position: absolute;
  inset: 0 65px 62px 0;
  overflow: hidden;
  background: var(--blue-100);
  border-radius: 31px 31px 31px 8px;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  height: 100%;
  object-fit: cover;
}

.about-image-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  padding: 7px;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}

.about-image-secondary img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 16px;
  min-width: 190px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-600));
  border-radius: 12px;
}

.about-badge small,
.about-badge strong {
  display: block;
}

.about-badge small {
  color: var(--muted);
  font-size: .61rem;
}

.about-badge strong {
  color: var(--blue-900);
  font-size: .75rem;
}

.about-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: .94rem;
}

.about-values {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.about-values article {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.value-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 11px;
}

.value-icon.blue {
  color: var(--blue-800);
  background: var(--blue-100);
}

.value-icon.green {
  color: var(--green-700);
  background: var(--green-100);
}

.value-icon.orange {
  color: var(--orange-600);
  background: var(--peach-100);
}

.value-icon.navy {
  color: var(--white);
  background: var(--blue-950);
}

.about-values strong {
  color: var(--ink);
  font-size: .79rem;
}

.about-values p {
  margin-top: 3px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.46;
}

.legal-mini {
  margin-top: 31px;
  padding-top: 24px;
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.legal-mini small,
.legal-mini strong {
  display: block;
}

.legal-mini small {
  color: var(--muted);
  font-size: .61rem;
}

.legal-mini strong {
  margin-top: 3px;
  color: var(--blue-900);
  font-size: .74rem;
}

/* Methodology */
.methodology {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 171, 115, .16), transparent 24%),
    radial-gradient(circle at 93% 82%, rgba(255, 122, 47, .13), transparent 23%),
    linear-gradient(140deg, var(--blue-950), #0a4d78);
  overflow: hidden;
}

.methodology-decor {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -220px;
  top: -180px;
  border: 70px solid rgba(255, 255, 255, .03);
  border-radius: 50%;
}

.methodology-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.methodology-copy h2 {
  color: var(--white);
}

.methodology-copy > p {
  margin-top: 19px;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.methodology-features {
  margin: 30px 0 29px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.methodology-features article {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.methodology-features i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #9ce1c9;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.methodology-features strong,
.methodology-features small {
  display: block;
}

.methodology-features strong {
  color: var(--white);
  font-size: .74rem;
}

.methodology-features small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: .61rem;
}

.campus-visual {
  position: relative;
  min-height: 475px;
}

.device-window {
  position: absolute;
  inset: 13px 14px 32px 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 22px;
  box-shadow: 0 32px 82px rgba(0, 18, 36, .38);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.device-bar {
  height: 46px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  align-items: center;
  background: #edf2f6;
  border-bottom: 1px solid #dde5eb;
}

.device-dots {
  display: flex;
  gap: 5px;
}

.device-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c3cc;
}

.device-dots span:first-child {
  background: #f27a65;
}

.device-dots span:nth-child(2) {
  background: #f2bb55;
}

.device-dots span:nth-child(3) {
  background: #55bb80;
}

.device-url {
  height: 27px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #708096;
  background: var(--white);
  border-radius: 8px;
  font-size: .61rem;
}

.device-screen {
  position: relative;
  height: calc(100% - 46px);
}

.device-screen > img {
  height: 100%;
  object-fit: cover;
}

.device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 52, 92, .08), rgba(7, 52, 92, .44));
}

.device-overlay {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.device-overlay img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.device-overlay small,
.device-overlay strong {
  display: block;
}

.device-overlay small {
  color: var(--muted);
  font-size: .61rem;
}

.device-overlay strong {
  color: var(--blue-900);
  font-size: .77rem;
}

.resource-card {
  position: absolute;
  z-index: 4;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-900);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: .66rem;
  font-weight: 800;
}

.resource-card i {
  color: var(--orange-500);
}

.resource-one {
  right: -5px;
  top: 0;
}

.resource-two {
  left: -3px;
  bottom: 0;
}

/* Learning */
.learning {
  background: var(--surface-warm);
}

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

.learning-card {
  position: relative;
  min-height: 280px;
  padding: 28px 23px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.learning-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.learning-number {
  position: absolute;
  right: 21px;
  top: 18px;
  color: #dce5eb;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.learning-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 15px;
}

.learning-icon.green {
  color: var(--green-700);
  background: var(--green-100);
}

.learning-icon.orange {
  color: var(--orange-600);
  background: var(--peach-100);
}

.learning-icon.navy {
  color: var(--white);
  background: var(--blue-950);
}

.learning-card h3 {
  margin-top: 23px;
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: .96rem;
}

.learning-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .75rem;
}

/* CTA */
.cta-band {
  padding: 0 0 112px;
  background: var(--surface-warm);
}

.cta-band-inner {
  min-height: 230px;
  padding: 40px 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 184, 44, .23), transparent 27%),
    linear-gradient(130deg, var(--green-700), var(--blue-800));
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.cta-symbol {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: var(--white);
  border-radius: 20px;
  font-size: 1.42rem;
}

.cta-band span {
  color: #c7f1df;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .63rem;
  font-weight: 800;
}

.cta-band h2 {
  max-width: 690px;
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.13;
  letter-spacing: -.03em;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 86px;
}

.faq-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.text-link {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-size: .73rem;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 11px;
}

.accordion-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.accordion-button {
  width: 100%;
  min-height: 72px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue-950);
  background: transparent;
  text-align: left;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}

.accordion-button i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 9px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.accordion-item.open .accordion-button i {
  color: var(--white);
  background: var(--blue-800);
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.accordion-panel p {
  overflow: hidden;
  padding-inline: 20px;
  color: var(--muted);
  font-size: .78rem;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel p {
  padding-bottom: 20px;
}

/* Contact */
.contact {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 7% 20%, rgba(24, 171, 115, .17), transparent 24%),
    linear-gradient(135deg, var(--blue-950), #0b4d78);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact::after {
  content: "";
  position: absolute;
  right: -175px;
  top: -165px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 122, 47, .05);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 76px;
  align-items: center;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .67);
  font-size: .91rem;
}

.contact-list {
  margin-top: 33px;
  display: grid;
  gap: 13px;
}

.contact-list > a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #9be1c8;
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}

.contact-list a:hover .contact-icon {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: rgba(255, 255, 255, .52);
  font-size: .61rem;
}

.contact-list strong {
  margin-top: 2px;
  color: var(--white);
  font-size: .76rem;
}

.contact-legal {
  margin-top: 27px;
  padding-top: 23px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-legal > i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fed19e;
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.contact-legal small,
.contact-legal strong {
  display: block;
}

.contact-legal small {
  color: rgba(255, 255, 255, .57);
  font-size: .61rem;
}

.contact-legal strong {
  color: var(--white);
  font-size: .75rem;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  box-shadow: 0 28px 78px rgba(0, 15, 35, .35);
  backdrop-filter: blur(15px);
}

.form-heading {
  margin-bottom: 23px;
}

.form-heading > span {
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-family: "Manrope", sans-serif;
  font-size: .62rem;
  font-weight: 800;
}

.form-heading > strong {
  display: block;
  margin-top: 3px;
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.37rem;
}

.form-heading > p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .69rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #3d4c5f;
  font-size: .7rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #e1e8ed;
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(12, 83, 135, .5);
  box-shadow: 0 0 0 4px rgba(12, 83, 135, .08);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 12px;
  color: #8794a3;
  text-align: center;
  font-size: .6rem;
}

.form-note i {
  margin-right: 5px;
}

/* Footer */
.footer {
  padding: 72px 0 25px;
  color: rgba(255, 255, 255, .63);
  background: #052b4b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr .85fr .9fr;
  gap: 48px;
}

.footer-logo {
  width: 285px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 13px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
  font-size: .75rem;
}

.footer-actions {
  margin-top: 20px;
  display: flex;
  gap: 9px;
}

.footer-actions a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}

.footer-actions a:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: .81rem;
}

.footer-column a,
.footer-column span {
  font-size: .69rem;
}

.footer-column a {
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: #9de1c9;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .64rem;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.float-whatsapp {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #20bd5a, #25d366);
  border: 3px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(37, 211, 102, .36);
  font-size: 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.float-whatsapp:hover {
  transform: translateY(-4px) scale(1.045);
  box-shadow: 0 22px 50px rgba(37, 211, 102, .46);
}

.float-tooltip {
  position: absolute;
  right: 72px;
  min-width: 128px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-size: .67rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.float-whatsapp:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(37, 211, 102, .56);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(.9); opacity: .8; }
  75%, 100% { transform: scale(1.35); opacity: 0; }
}

/* Modal */
.course-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  padding: 20px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.course-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 25, 44, .78);
  backdrop-filter: blur(7px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  padding: 39px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

.course-modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
}

.modal-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--blue-600));
  border-radius: 16px;
  font-size: 1.2rem;
}

.modal-kicker {
  display: block;
  margin-top: 19px;
  color: var(--orange-600);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
  font-weight: 800;
}

.modal-dialog h2 {
  margin-top: 5px;
  color: var(--blue-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.22;
}

.modal-dialog > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: .82rem;
}

.modal-features {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-features span {
  padding: 7px 10px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 8px;
  font-size: .66rem;
  font-weight: 800;
}

.modal-features i {
  margin-right: 5px;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay {
  transition-delay: .12s;
}

/* Responsive */
@media (max-width: 1120px) {
  .brand img {
    width: 275px;
  }

  .nav-menu {
    gap: 17px;
  }

  .nav-link {
    font-size: .8rem;
  }

  .button-campus {
    padding-inline: 14px;
  }

  .hero-grid {
    gap: 43px;
  }

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

@media (max-width: 940px) {
  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand img {
    width: 260px;
    height: 62px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 106px 0 auto;
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 38px rgba(7, 31, 60, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    display: none;
  }

  .button-campus {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding: 168px 0 90px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .hero-visual {
    width: min(650px, 100%);
    min-height: 510px;
    margin-inline: auto;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact:nth-child(2)::after {
    display: none;
  }

  .fact:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .methodology-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .methodology-grid,
  .contact-grid {
    gap: 56px;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .about-visual {
    width: min(670px, 100%);
    margin-inline: auto;
  }

  .campus-visual {
    width: min(710px, 100%);
    margin-inline: auto;
  }

  .cta-band-inner {
    grid-template-columns: auto 1fr;
  }

  .cta-band-inner .button {
    grid-column: 1 / -1;
    width: fit-content;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .utility-inner > div a:first-child {
    display: none;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 156px;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 12vw, 4.35rem);
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof > div {
    min-width: min(100%, 255px);
  }

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

  .hero-photo {
    inset: 17px 10px 32px;
  }

  .hero-logo-card {
    right: 0;
  }

  .hero-floating-card {
    left: 0;
    min-width: 206px;
  }

  .hero-ribbon {
    width: 101px;
    height: 101px;
    right: -1px;
    bottom: 48px;
  }

  .courses-grid,
  .learning-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .course-cta .button {
    width: 100%;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .methodology-features {
    grid-template-columns: 1fr;
  }

  .legal-mini {
    flex-direction: column;
    gap: 14px;
  }

  .cta-band {
    padding-bottom: 84px;
  }

  .cta-band-inner {
    padding: 39px 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-symbol {
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 225px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-logo-card {
    min-width: 180px;
  }

  .hero-floating-card {
    min-width: 185px;
    padding: 11px 13px;
  }

  .hero-ribbon {
    width: 90px;
    height: 90px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact:not(:last-child)::after {
    display: none;
  }

  .fact {
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .courses-grid,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .course-toolbar {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 100%;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-image-main {
    inset-right: 28px;
  }

  .about-image-secondary {
    width: 165px;
    height: 178px;
  }

  .campus-visual {
    min-height: 390px;
  }

  .resource-one {
    right: 0;
  }

  .resource-two {
    left: 0;
  }

  .contact-form {
    padding: 25px 19px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 100%;
    max-width: 290px;
  }

  .floating-contact {
    right: 15px;
    bottom: 15px;
  }

  .float-whatsapp {
    width: 58px;
    height: 58px;
    font-size: 1.65rem;
  }

  .modal-dialog {
    padding: 31px 22px;
  }

  .modal-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
