:root {
  --brand-orange: #f56613;
  --brand-orange-dark: #d94f05;
  --brand-green: #069447;
  --brand-green-dark: #047139;
  --brand-gold: #e99100;
  --ink: #2f3433;
  --muted: #68716e;
  --surface: #ffffff;
  --surface-soft: #fff8f1;
  --surface-green: #eef9f2;
  --line: #e7e8e4;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(39, 49, 45, 0.08);
  --shadow-lg: 0 24px 70px rgba(35, 42, 39, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.16;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand-green-dark);
  transition: top 0.2s ease;
}

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

.topbar {
  color: #eaf7ef;
  background: var(--brand-green-dark);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: #ffffff;
}

.topbar-link svg {
  width: 16px;
  height: 16px;
}

.portal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.portal-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 232, 228, 0.85);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(37, 45, 42, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo {
  width: 61px;
  height: 61px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(35, 42, 39, 0.12);
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--brand-green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: #4f5855;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-green-dark);
  background: var(--surface-green);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f9f7;
}

.lang-btn {
  border: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--white);
  background: var(--brand-green-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 10px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), #ff8a22);
  box-shadow: 0 12px 28px rgba(245, 102, 19, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(245, 102, 19, 0.32);
}

.btn-green {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  box-shadow: 0 12px 28px rgba(6, 148, 71, 0.21);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(47, 52, 51, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}

.btn-light {
  color: var(--brand-green-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #263f33;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 41, 29, 0.92) 0%, rgba(17, 41, 29, 0.72) 43%, rgba(17, 41, 29, 0.18) 75%),
    linear-gradient(180deg, rgba(17, 41, 29, 0.05), rgba(17, 41, 29, 0.56)),
    url("../images/campus-front.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 480px;
  height: 480px;
  border: 90px solid rgba(245, 102, 19, 0.17);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 710px;
  padding-block: 95px 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--brand-green-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.hero .eyebrow {
  color: #dff8e9;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero .eyebrow::before {
  width: 9px;
  height: 9px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7vw, 6.35rem);
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: inherit;
}

.hero h1 .accent {
  color: #ffb06f;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

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

.hero-highlights {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  width: min(calc(100% - 40px), var(--container));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translate(-50%, 50%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 112px;
  padding: 22px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.highlight-item:last-child {
  border-right: 0;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: var(--brand-green-dark);
  background: var(--surface-green);
}

.highlight-icon.orange {
  color: var(--brand-orange-dark);
  background: #fff0e5;
}

.hero.hero-slider {
  min-height: 620px;
  isolation: isolate;
  background: #ffffff;
}

.hero.hero-slider::before,
.hero.hero-slider::after {
  display: none;
}

.hero-slider .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-plain {
  display: block;
}

.hero-slider-plain .hero-overlay,
.hero-slider-plain .hero-content,
.hero-slider-plain .hero-slider-nav {
  display: none !important;
}

.highlight-icon svg {
  width: 25px;
  height: 25px;
}

.highlight-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.highlight-value {
  font-size: 0.97rem;
  font-weight: 900;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-green {
  background: var(--surface-green);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(245, 102, 19, 0.16), transparent 32%),
    #123b29;
}

.section-header {
  max-width: 710px;
  margin-bottom: 46px;
}

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

.section-header.center .eyebrow {
  justify-content: center;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  letter-spacing: -0.045em;
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.content-stack > *:last-child {
  margin-bottom: 0;
}

.image-composition {
  position: relative;
  min-height: 540px;
}

.image-main {
  width: 88%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-secondary {
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 48%;
  height: 260px;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  left: -25px;
  bottom: 52px;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--white);
  background: var(--brand-green-dark);
  box-shadow: var(--shadow-lg);
}

.image-badge strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.07rem;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 950;
}

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

.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(35, 42, 39, 0.055);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(6, 148, 71, 0.24);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 17px;
  color: var(--brand-green-dark);
  background: var(--surface-green);
}

.card:nth-child(even) .card-icon {
  color: var(--brand-orange-dark);
  background: #fff1e7;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--brand-green-dark);
  font-weight: 850;
}

.card-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: journey;
}

.journey-card {
  position: relative;
  min-height: 270px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  counter-increment: journey;
  overflow: hidden;
}

.journey-card::before {
  content: "0" counter(journey);
  position: absolute;
  right: 22px;
  top: 15px;
  color: rgba(6, 148, 71, 0.09);
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 950;
}

.journey-card h3 {
  position: relative;
  margin: 78px 0 12px;
  font-size: 1.38rem;
}

.journey-card p {
  position: relative;
  color: var(--muted);
}

.journey-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border: 5px solid #d7f2e2;
  border-radius: 50%;
  background: var(--brand-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 270px 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: #ddd;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "View photo";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(21, 39, 31, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #132d22;
  box-shadow: var(--shadow-lg);
}

.video-shell iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 58px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 113, 57, 0.98), rgba(6, 148, 71, 0.90)),
    url("../images/campus-playground.webp") center / cover;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .cta-actions {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

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

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 90px 0;
  color: var(--white);
  background: #183d2d;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 43, 29, 0.91), rgba(13, 43, 29, 0.58)),
    var(--page-hero-image, url("../images/campus-front.webp")) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -180px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(245, 102, 19, 0.19);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.page-hero .eyebrow {
  color: #e6f7ed;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card .number {
  display: block;
  margin-bottom: 34px;
  color: var(--brand-orange);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin-bottom: 11px;
  font-size: 1.35rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.program-list {
  display: grid;
  gap: 26px;
}

.program-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.program-row:nth-child(even) {
  grid-template-columns: 1.28fr 0.72fr;
}

.program-row:nth-child(even) .program-image {
  order: 2;
}

.program-image {
  min-height: 100%;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-content {
  display: grid;
  align-content: center;
  padding: 48px;
}

.program-content h2 {
  margin-bottom: 13px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.program-content p {
  color: var(--muted);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brand-green-dark);
  background: var(--surface-green);
  font-size: 0.76rem;
  font-weight: 850;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--brand-green-dark);
  font-weight: 950;
}

.step h3 {
  margin: 4px 0 8px;
  font-size: 1.22rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--brand-orange);
  border-radius: 12px;
  color: #64411f;
  background: #fff5eb;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--brand-green-dark);
  background: var(--surface-green);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 23px 23px;
  color: var(--muted);
}

.gallery-page-grid {
  columns: 3 310px;
  column-gap: 18px;
}

.gallery-page-grid .gallery-item {
  width: 100%;
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
  height: auto;
}

.gallery-page-grid .gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--brand-green-dark);
  background: var(--surface-green);
}

.contact-card-icon svg {
  width: 23px;
  height: 23px;
}

.contact-card h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
}

.contact-card a:hover {
  color: var(--brand-green-dark);
}

.map-card {
  position: relative;
  min-height: 290px;
  display: grid;
  align-content: end;
  padding: 26px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 41, 29, 0.12), rgba(17, 41, 29, 0.78)),
    url("../images/campus-front.webp") center / cover;
  overflow: hidden;
}

.map-card h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.map-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.form-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.form-card > p {
  margin-bottom: 26px;
  color: var(--muted);
}

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

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 800;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #dcded9;
  border-radius: 12px;
  color: var(--ink);
  background: #fcfdfb;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.form-control {
  min-height: 145px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(6, 148, 71, 0.1);
}

.form-control.invalid {
  border-color: #c6372f;
  box-shadow: 0 0 0 4px rgba(198, 55, 47, 0.09);
}

.form-message {
  display: none;
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-message.show {
  display: block;
}

.form-message.success {
  color: #0b6735;
  background: #e9f8ef;
}

.form-message.error {
  color: #913028;
  background: #fff0ee;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 17, 13, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 18px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
}

.lightbox-close {
  position: absolute;
  right: 25px;
  top: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-footer {
  padding: 74px 0 0;
  color: #cfddd6;
  background: #102f22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 46px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
}

.footer-brand span {
  font-size: 0.82rem;
}

.footer-about {
  max-width: 390px;
  color: #aebfb7;
}

.footer-title {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #aebfb7;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #aebfb7;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: #77cf99;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #91a59b;
  font-size: 0.86rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .topbar {
    display: block;
  }

  .topbar-inner {
    min-height: 50px;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .topbar-group {
    display: none;
  }

  .portal-links {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .portal-link {
    flex: 1 1 0;
    min-width: 0;
    max-width: 170px;
    min-height: 36px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.78rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    background: rgba(255, 255, 255, 0.08);
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

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

  .nav-link {
    padding: 13px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .hero-slider.hero {
    min-height: 560px;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
    transform: translate(-50%, 32%);
  }

  .highlight-item:nth-child(2) {
    border-right: 0;
  }

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

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

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .image-composition {
    max-width: 750px;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 290px 290px 290px;
  }

  .gallery-item:first-child {
    grid-row: 1 / 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .program-row,
  .program-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .program-row:nth-child(even) .program-image {
    order: 0;
  }

  .program-image {
    min-height: 330px;
  }

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

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

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.66rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .language-toggle {
    display: none;
  }

  .nav-links .mobile-language {
    display: flex;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 41, 29, 0.88) 0%, rgba(17, 41, 29, 0.72) 60%, rgba(17, 41, 29, 0.56) 100%),
      url("../images/campus-front.webp") 62% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 320px;
  }

  .hero-slider.hero {
    min-height: 420px;
  }

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

  .hero-highlights {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    transform: translate(-50%, 38%);
  }

  .highlight-item {
    min-height: 82px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 82px 0;
  }

  .section-tight {
    padding: 60px 0;
  }

  .cards-grid,
  .journey-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .image-composition {
    min-height: 410px;
  }

  .image-main {
    width: 100%;
    height: 390px;
  }

  .image-secondary {
    right: 12px;
    width: 48%;
    height: 185px;
    border-width: 7px;
  }

  .image-badge {
    left: 12px;
    bottom: 18px;
    max-width: 190px;
    padding: 14px 16px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .cta-panel {
    padding: 35px 24px;
  }

  .page-hero {
    min-height: 400px;
    padding: 72px 0;
  }

  .program-content {
    padding: 32px 24px;
  }

  .program-image {
    min-height: 260px;
  }

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

  .step::before {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

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

  .form-card {
    padding: 26px 20px;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
}

.mobile-language {
  display: none;
  gap: 8px;
  padding: 12px 14px 4px;
}

.mobile-language button {
  flex: 1;
}

@media (max-width: 420px) {
  .portal-links {
    gap: 6px;
  }

  .portal-link {
    padding: 7px 6px;
    font-size: 0.7rem;
  }
}