:root {
  --blue: #004aad;
  --blue-dark: #002f73;
  --blue-deep: #071a35;
  --red: #af0e0e;
  --red-dark: #800707;
  --yellow: #fcc22d;
  --yellow-dark: #dca300;
  --ink: #101828;
  --muted: #667085;
  --line: #e7ebf0;
  --surface: #f6f8fb;
  --white: #ffffff;
  --green: #25d366;
  --shadow-sm: 0 8px 24px rgba(10, 28, 55, .08);
  --shadow-md: 0 18px 48px rgba(8, 29, 62, .13);
  --shadow-lg: 0 30px 80px rgba(4, 20, 46, .20);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --header-height: 112px;
}

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

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

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

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(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
  z-index: 1200;
  transition: width .05s linear;
}

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

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(9, 27, 58, .12);
}

.announcement {
  background: var(--blue-deep);
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.announcement i {
  color: var(--yellow);
  margin-right: 7px;
}

.announcement a {
  transition: color .2s ease;
}

.announcement a:hover {
  color: var(--yellow);
}

.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 32, 65, .06);
}

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

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

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

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

.nav-link {
  position: relative;
  font-size: .91rem;
  font-weight: 700;
  color: #334155;
  padding-block: 26px;
  transition: color .2s ease;
}

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

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

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

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

.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: 48px;
  padding: 0 21px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

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

.button-campus {
  min-height: 45px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(0, 74, 173, .22);
}

.button-campus:hover {
  background: var(--blue-dark);
  box-shadow: 0 13px 28px rgba(0, 74, 173, .30);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #006fe8);
  box-shadow: 0 14px 30px rgba(0, 74, 173, .25);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(0, 74, 173, .34);
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(20, 33, 55, .05);
}

.button-ghost:hover {
  color: var(--blue);
  border-color: rgba(0, 74, 173, .25);
}

.button-yellow {
  color: #172033;
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(252, 194, 45, .22);
}

.button-yellow:hover {
  background: #ffd155;
}

.button-light {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 15px 32px rgba(0,0,0,.13);
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 190px 0 94px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 7% 25%, rgba(252, 194, 45, .16), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(0, 74, 173, .13), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #f4f8ff 48%, #fffaf0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(to top, rgba(255,255,255,.82), transparent);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-shape-one {
  width: 300px;
  height: 300px;
  top: 120px;
  right: -120px;
  border: 48px solid rgba(175, 14, 14, .06);
}

.hero-shape-two {
  width: 190px;
  height: 190px;
  left: -90px;
  bottom: 60px;
  border: 34px solid rgba(0, 74, 173, .06);
}

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

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 800;
  margin-bottom: 17px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(175, 14, 14, .10);
}

.yellow-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(252, 194, 45, .13);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.25vw, 5.35rem);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 800;
  color: #0a1830;
}

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

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -7px;
  width: 45%;
  height: 7px;
  background: var(--yellow);
  border-radius: 99px;
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 31px;
  color: #536174;
  font-size: 1.08rem;
}

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

.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 235px;
  color: #617084;
  font-size: .78rem;
  line-height: 1.4;
}

.hero-trust i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(0, 74, 173, .09);
  flex-shrink: 0;
}

.hero-trust strong {
  color: var(--ink);
}

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

.hero-image-wrap {
  position: absolute;
  inset: 20px 26px 20px 38px;
  overflow: hidden;
  border-radius: 48px 18px 48px 18px;
  box-shadow: var(--shadow-lg);
}

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

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 26, 55, .32));
}

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

.floating-card-top {
  top: 0;
  right: -4px;
}

.floating-card-bottom {
  left: 0;
  bottom: 6px;
  animation-delay: -2.2s;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
}

.floating-icon.yellow {
  color: #1d2635;
  background: var(--yellow);
}

.floating-icon.blue {
  background: var(--blue);
}

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

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

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

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 1px;
  bottom: 54px;
  width: 108px;
  height: 108px;
  color: var(--white);
  background: var(--red);
  border: 7px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(175, 14, 14, .25);
  transform: rotate(5deg);
}

.hero-badge span,
.hero-badge small {
  font-size: .58rem;
  line-height: 1.1;
}

.hero-badge strong {
  font-size: 1.38rem;
  line-height: 1.2;
}

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

/* Stats */
.stats {
  position: relative;
  z-index: 5;
  padding: 0 0 20px;
  background: var(--white);
}

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

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 28px;
}

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

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

.stat-item:nth-child(2) .stat-icon {
  color: var(--red);
  background: #fff0f0;
}

.stat-item:nth-child(3) .stat-icon {
  color: #8a6500;
  background: #fff8df;
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.stat-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .75rem;
}

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

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

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

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

.section-heading h2,
.process-copy h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  color: #0a1830;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

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

/* Services */
.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  min-height: 338px;
  padding: 26px 23px 23px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 32px rgba(16, 38, 70, .055);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -38px -50px auto;
  width: 125px;
  height: 125px;
  border: 18px solid rgba(0, 74, 173, .035);
  border-radius: 50%;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 74, 173, .18);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scale(1.2);
}

.service-card.featured {
  border-color: rgba(0, 74, 173, .34);
  background: linear-gradient(145deg, #ffffff 55%, #f0f6ff);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 74, 173, .17);
}

.service-icon.red {
  background: var(--red);
  box-shadow: 0 10px 24px rgba(175, 14, 14, .15);
}

.service-icon.yellow {
  color: #242d3b;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(252, 194, 45, .18);
}

.service-tag {
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--blue);
  background: #eaf3ff;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-card h3 {
  margin-top: 20px;
  color: #15233b;
  font-size: 1.03rem;
  line-height: 1.3;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.6;
}

.price {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price small {
  color: var(--muted);
  font-size: .66rem;
}

.price strong {
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1;
}

.price em {
  color: var(--muted);
  font-size: .58rem;
  font-style: normal;
}

.service-card > a {
  width: fit-content;
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
}

.service-card > a i {
  transition: transform .2s ease;
}

.service-card > a:hover i {
  transform: translateX(4px);
}

.service-note {
  margin-top: 20px;
  padding: 18px 21px;
  border: 1px dashed rgba(0, 74, 173, .28);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #536174;
  background: #f8fbff;
  font-size: .82rem;
}

.service-note > i {
  color: var(--blue);
  font-size: 1.05rem;
}

.service-note p {
  flex: 1;
}

.service-note a {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

/* Courses */
.courses {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(0, 47, 115, .98), rgba(0, 74, 173, .96)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=75") center/cover;
  overflow: hidden;
}

.courses::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(252, 194, 45, .18), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(175, 14, 14, .22), transparent 30%);
}

.course-decoration {
  position: absolute;
  width: 370px;
  height: 370px;
  top: -180px;
  right: -100px;
  border: 60px solid rgba(255,255,255,.035);
  border-radius: 50%;
}

.courses .container {
  position: relative;
  z-index: 2;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255,255,255,.72);
}

.courses .eyebrow {
  color: var(--yellow);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.course-card {
  min-width: 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 16, 45, .20);
  transition: transform .25s ease, box-shadow .25s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(0, 16, 45, .32);
}

.course-image {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 53, .22));
}

.course-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.07);
}

.course-mode {
  position: absolute;
  z-index: 2;
  left: 11px;
  bottom: 10px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(7, 26, 53, .78);
  backdrop-filter: blur(8px);
  border-radius: 7px;
  font-size: .62rem;
  font-weight: 800;
}

.course-body {
  min-height: 245px;
  padding: 17px 15px 16px;
  display: flex;
  flex-direction: column;
}

.course-meta {
  color: var(--blue);
  font-size: .66rem;
  font-weight: 800;
}

.course-meta i {
  margin-right: 4px;
}

.course-card h3 {
  margin-top: 10px;
  color: #12213a;
  font-size: .93rem;
  line-height: 1.35;
}

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

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

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

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

.courses-cta {
  margin-top: 34px;
  padding: 19px 22px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

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

.courses-cta > div > i {
  font-size: 1.6rem;
  color: var(--yellow);
}

.courses-cta span {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
}

.courses-cta strong {
  color: var(--white);
}

/* Process */
.process {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 74px;
  align-items: center;
}

.process-copy > p {
  max-width: 570px;
}

.process-image {
  position: relative;
  height: 280px;
  margin-top: 34px;
  border-radius: 24px;
  overflow: visible;
}

.process-image > img {
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.process-seal {
  position: absolute;
  right: -24px;
  bottom: -25px;
  width: 108px;
  height: 108px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  background: var(--red);
  border: 7px solid var(--surface);
  box-shadow: 0 15px 28px rgba(175, 14, 14, .22);
  text-align: center;
}

.process-seal i {
  font-size: 1.35rem;
  margin-bottom: 5px;
}

.process-seal span {
  font-size: .62rem;
  line-height: 1.2;
  font-weight: 800;
}

.steps {
  position: relative;
  display: grid;
  gap: 15px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 72px;
  bottom: 72px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--red), var(--yellow));
  opacity: .18;
}

.step {
  position: relative;
  min-height: 132px;
  padding: 24px 24px 24px 94px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 17px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  left: 20px;
  top: 17px;
  color: #d9e1eb;
  font-size: .72rem;
  font-weight: 800;
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 74, 173, .18);
  font-size: 1.15rem;
}

.step-icon.red {
  background: var(--red);
  box-shadow: 0 12px 26px rgba(175, 14, 14, .16);
}

.step-icon.yellow {
  color: #232b39;
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(252, 194, 45, .18);
}

.step h3 {
  font-size: 1rem;
}

.step p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .8rem;
}

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

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

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

.about-image-main {
  position: absolute;
  inset: 0 36px 40px 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-color-block {
  position: absolute;
  width: 170px;
  height: 200px;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, var(--yellow) 0 45%, transparent 45% 52%, var(--red) 52%);
  box-shadow: var(--shadow-md);
}

.about-card {
  position: absolute;
  left: 25px;
  bottom: 5px;
  min-width: 205px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-card span {
  font-size: .84rem;
}

.about-card strong {
  color: var(--blue);
}

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

.values-grid {
  margin-top: 29px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.value > i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5ff;
  flex-shrink: 0;
}

.value:nth-child(2) > i {
  color: var(--red);
  background: #fff0f0;
}

.value:nth-child(3) > i {
  color: #896500;
  background: #fff8df;
}

.value strong,
.value span {
  display: block;
}

.value strong {
  font-size: .82rem;
}

.value span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.legal-data {
  margin-top: 29px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 45px;
}

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

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

.legal-data strong {
  margin-top: 4px;
  font-size: .82rem;
}

/* CTA */
.cta-banner {
  padding: 0 0 110px;
  background: var(--white);
}

.cta-banner-inner {
  position: relative;
  min-height: 250px;
  padding: 48px 58px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(0, 47, 115, .98), rgba(0, 74, 173, .92)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80") center/cover;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: 18%;
  bottom: -170px;
  border: 45px solid rgba(252, 194, 45, .18);
  border-radius: 50%;
}

.cta-banner-inner > * {
  position: relative;
  z-index: 2;
}

.cta-kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 800;
}

.cta-banner h2 {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.cta-banner p {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}

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

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

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

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

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

.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(17, 36, 65, .035);
}

.accordion-button {
  width: 100%;
  min-height: 70px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #1b2940;
  background: var(--white);
  text-align: left;
  font-size: .87rem;
  font-weight: 800;
  cursor: pointer;
}

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

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

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

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

.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:
    linear-gradient(135deg, rgba(7, 26, 53, .98), rgba(0, 47, 115, .97)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -150px;
  border: 70px solid rgba(252, 194, 45, .055);
  border-radius: 50%;
}

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

.light-eyebrow {
  color: var(--yellow);
}

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

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

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

.contact-list a,
.business-hours {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list > a > i,
.business-hours > i {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(255,255,255,.09);
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.contact-list a:hover > i {
  background: rgba(252, 194, 45, .16);
  transform: translateY(-2px);
}

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

.contact-list small,
.business-hours small {
  color: rgba(255,255,255,.55);
  font-size: .63rem;
}

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

.business-hours {
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 26px 75px rgba(0, 10, 35, .32);
}

.form-header {
  margin-bottom: 22px;
}

.form-header span,
.form-header strong {
  display: block;
}

.form-header span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .65rem;
  font-weight: 800;
}

.form-header strong {
  margin-top: 4px;
  font-size: 1.4rem;
}

.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: #38475b;
  font-size: .72rem;
  font-weight: 800;
}

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

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

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

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

.form-button {
  width: 100%;
  border: 0;
}

.form-privacy {
  margin-top: 12px;
  color: #8390a2;
  text-align: center;
  font-size: .62rem;
}

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

/* Footer */
.footer {
  padding: 70px 0 25px;
  color: rgba(255,255,255,.66);
  background: #06152c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr .9fr;
  gap: 50px;
}

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

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

.social-links {
  margin-top: 21px;
  display: flex;
  gap: 9px;
}

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

.social-links a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

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

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: .84rem;
}

.footer-column a,
.footer-column span {
  font-size: .72rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

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

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 35px rgba(37, 211, 102, .34);
  font-size: 1.82rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 42px rgba(37, 211, 102, .43);
}

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

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

.whatsapp-pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(37, 211, 102, .55);
  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 */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 14, 31, .78);
  backdrop-filter: blur(6px);
}

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

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

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

.modal-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 1.25rem;
}

.modal-label {
  display: block;
  margin-top: 20px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
}

.modal h2 {
  margin-top: 4px;
  color: #0a1830;
  font-size: 1.75rem;
  line-height: 1.2;
}

.modal-meta {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

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

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

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

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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: 230px;
  }

  .nav-menu {
    gap: 17px;
  }

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

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

  .hero-grid {
    gap: 40px;
  }

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

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

  .course-body {
    min-height: 220px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 104px;
  }

  .announcement {
    min-height: 30px;
  }

  .announcement-inner > span {
    display: none;
  }

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

  .nav-inner {
    height: 74px;
  }

  .brand img {
    width: 230px;
    height: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 104px 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 20px 35px rgba(8, 26, 55, .14);
    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: 164px 0 80px;
  }

  .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-trust {
    justify-content: center;
  }

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

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

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

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

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

  .process-grid,
  .about-grid,
  .contact-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .about-visual {
    width: min(650px, 100%);
  }

  .cta-banner-inner {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

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

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

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

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 152px;
  }

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

  .hero-trust {
    gap: 15px;
  }

  .hero-trust > div {
    max-width: 100%;
  }

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

  .hero-image-wrap {
    inset: 18px 10px 20px 10px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

  .hero-badge {
    right: -4px;
    bottom: 42px;
  }

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

  .courses-cta,
  .service-note {
    align-items: stretch;
    flex-direction: column;
  }

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

  .process-image {
    height: 235px;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding: 23px;
    grid-template-columns: 54px 1fr;
  }

  .step-number {
    display: none;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

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

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

  .legal-data {
    flex-direction: column;
    gap: 15px;
  }

  .cta-banner {
    padding-bottom: 82px;
  }

  .cta-banner-inner {
    padding: 40px 24px;
  }

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

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

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

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

@media (max-width: 500px) {
  .brand img {
    width: 200px;
  }

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

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

  .floating-card {
    min-width: 165px;
    padding: 10px 12px;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .hero-badge {
    width: 92px;
    height: 92px;
  }

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

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

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

  .stat-item:last-child {
    border-bottom: 0;
  }

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

  .course-image {
    height: 205px;
  }

  .course-body {
    min-height: 205px;
  }

  .process-seal {
    right: -4px;
  }

  .about-image-main {
    right: 14px;
  }

  .about-color-block {
    width: 130px;
    height: 160px;
  }

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

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

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

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