:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --text: #222326;
  --muted: #65676d;
  --accent: #2f6bff;
  --line: #dfd9d2;
  --radius: 12px;
  --container: min(1140px, 92vw);
  --font-body: "Noto Sans Armenian", "Inter", system-ui, sans-serif;
  --font-display: "Noto Serif Armenian", "Noto Sans Armenian", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 16px 48px rgba(22, 24, 32, 0.07);
  --accent-soft: rgba(47, 107, 255, 0.12);
  --accent-strong: #1f54d8;
  --accent-glow: rgba(47, 107, 255, 0.22);
  --blue-surface: linear-gradient(180deg, rgba(47, 107, 255, 0.08), rgba(47, 107, 255, 0.02));
  --hero-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(237, 244, 255, 0.98));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background:
  radial-gradient(circle at top left, rgba(47, 107, 255, 0.09), transparent 26%),
  radial-gradient(circle at top right, rgba(47, 107, 255, 0.06), transparent 24%),
  linear-gradient(180deg, #f7f8fb 0%, #f6f4f1 42%, #f4f6fb 100%);
  color: var(--text); font-family: var(--font-body); font-size: 16px; overflow-x: clip; -webkit-font-smoothing: antialiased; }
body { position: relative; }
body::before,
body::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}
body::before {
  top: -10rem;
  left: -8rem;
  background: rgba(47, 107, 255, 0.1);
}
body::after {
  right: -10rem;
  bottom: -8rem;
  background: rgba(122, 157, 255, 0.12);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin-inline: auto; }
.topbar { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(246, 244, 241, 0.95); backdrop-filter: blur(10px); transition: box-shadow 0.35s var(--ease-out), border-color 0.35s ease, background 0.35s ease; }
.topbar.is-scrolled { box-shadow: 0 12px 40px rgba(31, 84, 216, 0.08); border-bottom-color: rgba(47, 107, 255, 0.16); background: rgba(250, 252, 255, 0.98); }
.topbar-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.01em; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(145deg, #1f2229, #101216); display: grid; place-items: center; color: #fff; font-size: 0.82rem; font-weight: 800; }
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.menu-btn { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 10px; color: var(--text); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { position: relative; padding: 9px 12px; border-radius: 10px; color: var(--muted); font-weight: 500; transition: color 0.25s ease, background 0.25s ease; }
.nav a::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.32s var(--ease-out); }
.nav a:hover::before, .nav a.active::before { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: var(--text); background: #fff; }
.lang-ghost { display: flex; align-items: center; gap: 6px; }
.lang-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  display: grid;
  place-items: center;
  background: rgba(47, 107, 255, 0.05);
  font-size: 0.72rem;
  color: var(--accent-strong);
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.lang-dot:hover,
.lang-dot.active {
  background: rgba(47, 107, 255, 0.14);
  border-color: rgba(47, 107, 255, 0.3);
  color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(47, 107, 255, 0.12);
}
.lang-dot.active {
  font-weight: 700;
}
.hero { padding: 68px 0 34px; }
.hero-grid, .split, .grid-3, .grid-2, .stats-grid, .team-grid, .contact-cards { display: grid; gap: 24px; }
.hero-grid { grid-template-columns: 1.05fr 0.95fr; }
.split, .grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .hero-card, .stat-card, .team-card, .contact-item { background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98)); border: 1px solid var(--line); border-radius: 18px; position: relative; overflow: hidden; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease; }
.card::before, .hero-card::before, .stat-card::before, .team-card::before, .contact-item::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 2px; background: var(--accent); transition: left 0.32s var(--ease-out); }
.card:hover, .hero-card:hover, .stat-card:hover, .team-card:hover, .contact-item:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(31, 84, 216, 0.09); border-color: rgba(47, 107, 255, 0.18); }
.card:hover::before, .hero-card:hover::before, .stat-card:hover::before, .team-card:hover::before, .contact-item:hover::before { left: 0; }
.hero-card, .card { padding: 26px; }
.hero-card {
  background: var(--hero-surface);
  box-shadow: 0 20px 60px rgba(31, 84, 216, 0.08);
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -4rem;
  bottom: -6rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.16), transparent 68%);
  pointer-events: none;
}
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.eyebrow-dot {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(47, 107, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  vertical-align: middle;
}
.eyebrow-dot::before {
  content: "✦";
  font-size: 0.62rem;
  line-height: 1;
  color: var(--accent);
}
h1 { margin: 0 0 14px; font-size: clamp(1.9rem, 4.2vw, 3.2rem); line-height: 1.06; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.035em; max-width: 14ch; text-wrap: balance; color: var(--accent-strong); }
h2 { margin: 0 0 12px; font-size: clamp(1.28rem, 2.2vw, 2rem); font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.14; text-wrap: balance; color: var(--accent-strong); }
h3 { margin: 0 0 10px; font-size: 1.02rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; color: #275edc; }
p { margin: 0 0 12px; color: var(--muted); line-height: 1.78; font-size: 1.01rem; }
.hero-card p,
.card p,
.kpi-text,
.checklist li {
  overflow-wrap: anywhere;
}
.btn-row { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { padding: 12px 18px; border-radius: 999px; font-weight: 700; border: 1px solid rgba(47, 107, 255, 0.16); background: rgba(255, 255, 255, 0.9); transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34, 35, 38, 0.08); }
.btn:hover { border-color: rgba(47, 107, 255, 0.24); color: var(--accent-strong); }
.btn-primary { border-color: transparent; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(47, 107, 255, 0.32); }
.image-card { min-height: 320px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(47, 107, 255, 0.14); transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out), border-color 0.35s ease; position: relative; isolation: isolate; box-shadow: 0 22px 64px rgba(31, 84, 216, 0.08); }
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 24, 54, 0.02), rgba(13, 38, 92, 0.18));
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.55s ease, background 0.55s ease;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 0.9s var(--ease-out);
  z-index: 2;
  pointer-events: none;
}
.image-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(31, 84, 216, 0.14); border-color: rgba(47, 107, 255, 0.2); }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter 0.8s ease; animation: mediaFloat 14s ease-in-out infinite; transform-origin: center; }
.image-card:hover img { transform: scale(1.08); filter: saturate(1.08) contrast(1.03); }
.image-card:hover::before { background: linear-gradient(180deg, rgba(10, 20, 48, 0.01), rgba(17, 51, 120, 0.1)); }
.image-card:hover::after { transform: translateX(120%) rotate(8deg); }
.image-card.image-contain {
  background:
    radial-gradient(circle at top, rgba(47, 107, 255, 0.2), transparent 42%),
    #0a0f28;
}
.image-card.image-contain img {
  object-fit: contain;
  padding: 18px;
}
.section { padding: 44px 0 28px; position: relative; }
.section-head { margin-bottom: 18px; }
.section-head h2 {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.12), rgba(47, 107, 255, 0.04));
  border: 1px solid rgba(47, 107, 255, 0.14);
  box-shadow: 0 12px 30px rgba(47, 107, 255, 0.08);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-pill,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98));
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(31, 84, 216, 0.06);
}
.trust-pill {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-pill .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(47, 107, 255, 0.18);
  color: var(--accent);
  font-size: 1rem;
}
.trust-pill strong,
.cta-panel strong {
  display: block;
  color: #1f2430;
  margin-bottom: 4px;
}
.trust-pill p,
.cta-panel p {
  margin: 0;
}
.kpi-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kpi-card { background: var(--blue-surface); border: 1px solid rgba(47, 107, 255, 0.12); border-radius: var(--radius); padding: 16px; transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.25s ease; }
.kpi-card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(31, 84, 216, 0.09); border-color: rgba(47, 107, 255, 0.2); }
.kpi-title { margin: 0 0 4px; font-weight: 700; color: var(--accent-strong); }
.kpi-text { margin: 0; }
.stat-card { padding: 20px; background: var(--blue-surface); border-color: rgba(47, 107, 255, 0.12); }
.stat-num { margin: 0 0 6px; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; color: var(--accent-strong); font-family: var(--font-display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; text-shadow: 0 8px 24px rgba(47, 107, 255, 0.14); }
.stat-label { margin: 0; color: var(--muted); font-size: 0.9rem; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(47, 107, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
}
.check::before {
  content: "✦";
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
}
.checklist li:nth-child(4n + 2) .check::before { content: "◆"; }
.checklist li:nth-child(4n + 3) .check::before { content: "✳"; font-size: 0.62rem; }
.checklist li:nth-child(4n + 4) .check::before { content: "→"; }
.team-media { height: 210px; position: relative; overflow: hidden; }
.team-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 36, 78, 0.28));
  opacity: 0.8;
  transition: opacity 0.5s ease;
}
.team-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s var(--ease-out), filter 0.7s ease; }
.team-card:hover .team-media img { transform: scale(1.1); filter: saturate(1.06) contrast(1.04); }
.team-card:hover .team-media::after { opacity: 0.45; }
.team-body { padding: 12px; }
.team-name { margin: 0 0 4px; font-weight: 700; color: var(--accent-strong); }
.team-role { margin: 0; color: var(--muted); font-size: 0.9rem; }
.story-block {
  background: #f2f0ec;
  border: 1px solid #ddd8d2;
  border-left: 2px solid var(--accent);
  padding: 22px 24px;
  border-radius: 0 10px 10px 0;
}
.story-block p {
  margin: 0 0 14px;
  line-height: 1.82;
  color: #4f5258;
}
.story-block p:last-child {
  margin-bottom: 0;
}
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-item { padding: 14px; text-align: center; }
.contact-item .icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(180deg, rgba(47, 107, 255, 0.16), rgba(47, 107, 255, 0.07)); color: var(--accent); margin-bottom: 8px; font-size: 1.1rem; border: 1px solid rgba(47, 107, 255, 0.18); box-shadow: 0 10px 24px rgba(47, 107, 255, 0.09); }
.contact-form .field { display: grid; gap: 6px; margin-bottom: 10px; }
.program-flow { display: grid; gap: 38px; }
.program-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.9fr 1.1fr;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s ease;
}
.program-row:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(31, 84, 216, 0.12); border-color: rgba(47, 107, 255, 0.2); }
.program-row .program-media { position: relative; overflow: hidden; }
.program-row .program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 37, 0.05), rgba(20, 53, 125, 0.22));
  transition: opacity 0.55s ease;
}
.program-row .program-media img { transition: transform 1.15s var(--ease-out), filter 0.8s ease; animation: mediaFloat 16s ease-in-out infinite; }
.program-row:hover .program-media img { transform: scale(1.09); filter: saturate(1.08) contrast(1.04); }
.program-row:hover .program-media::after { opacity: 0.35; }
.program-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.program-row.reverse .program-media { order: 2; }
.program-row.reverse .program-content { order: 1; }
.program-media { min-height: 230px; }
.program-media img { width: 100%; height: 100%; object-fit: cover; }
.program-content { padding: 24px; }
.program-content h3 { margin-bottom: 6px; }
.mini-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.mini-list li { color: var(--muted); }
.mini-list li {
  position: relative;
  padding-left: 28px;
}
.mini-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(47, 107, 255, 0.16);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
}
.mini-list li:nth-child(4n + 2)::before { content: "◆"; }
.mini-list li:nth-child(4n + 3)::before { content: "→"; }
.mini-list li:nth-child(4n + 4)::before { content: "✳"; }
label { font-size: 0.92rem; font-weight: 600; }
input, textarea { width: 100%; border-radius: 10px; border: 1px solid var(--line); background: #fff; padding: 11px; color: var(--text); font: inherit; }
textarea { resize: vertical; }
.footer {
  margin-top: 34px;
  border-top: 1px solid #d9d5cf;
  background: #f4f2ef;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid #ddd8d2;
  border-top: 1px solid #ddd8d2;
}

.footer-link-card {
  position: relative;
  min-height: 98px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(244, 242, 239, 0.95), rgba(241, 246, 255, 0.95));
  border-right: 1px solid #ddd8d2;
  border-bottom: 1px solid #ddd8d2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}
.footer-link-card:hover { background: linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(237, 243, 255, 0.98)); transform: translateY(-2px); }

.footer-link-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.footer-link-card:hover::after {
  transform: scaleX(1);
}

.footer-link-card.is-active::after {
  transform: scaleX(1);
}

.footer-link-label {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f84b8;
}

.footer-link-title {
  margin: 0;
  color: #214fae;
  font-size: clamp(0.96rem, 1.2vw, 1.18rem);
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-display);
}

.footer-link-arrow {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd8d2;
  color: #8f8b86;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.footer-link-card:hover .footer-link-arrow {
  border-color: rgba(47, 107, 255, 0.22);
  color: var(--accent);
  background: rgba(47, 107, 255, 0.06);
}

.footer-meta {
  padding: 16px 0 20px;
}

.footer-inner {
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out); }
.reveal.show { opacity: 1; transform: translateY(0); }
.hero-drop.reveal {
  opacity: 0;
  transform: translate3d(0, -280px, 0) scale(0.92) rotate(-4deg);
  transition: none;
}
.hero-drop.reveal.show {
  opacity: 1;
  animation: parachuteDropIn 2.6s cubic-bezier(0.16, 0.9, 0.2, 1) both;
}
.reveal.reveal-stagger { opacity: 1; transform: none; transition: none; }
.reveal.reveal-stagger > * { opacity: 0; transform: translateY(58px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: calc(var(--stagger, 0) * 0.1s); }
.reveal.reveal-stagger.show > * { opacity: 1; transform: translateY(0); }
.team-grid.reveal.reveal-stagger > .team-card:nth-child(odd) { transform: translateX(-36px); }
.team-grid.reveal.reveal-stagger > .team-card:nth-child(even) { transform: translateX(36px); }
.team-grid.reveal.reveal-stagger.show > .team-card { transform: translateX(0); }
.team-grid.reveal-repeat.reveal-stagger > .team-card {
  opacity: 0;
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.team-grid.reveal-repeat.reveal-stagger > .team-card:nth-child(odd) { transform: translateX(-170px); }
.team-grid.reveal-repeat.reveal-stagger > .team-card:nth-child(even) { transform: translateX(170px); }
.team-grid.reveal-repeat.reveal-stagger.show > .team-card {
  opacity: 1;
  transform: translateX(0);
}

.cta-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
}
.cta-points {
  display: grid;
  gap: 12px;
}
.cta-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cta-point .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0.08));
  border: 1px solid rgba(47, 107, 255, 0.18);
  color: var(--accent);
}

@keyframes parachuteDropIn {
  0% {
    transform: translate3d(0, -280px, 0) scale(0.92) rotate(-4deg);
  }
  45% {
    transform: translate3d(0, 24px, 0) scale(1.01) rotate(2deg);
  }
  62% {
    transform: translate3d(0, -12px, 0) scale(0.995) rotate(-1.2deg);
  }
  78% {
    transform: translate3d(0, 8px, 0) scale(1.002) rotate(0.8deg);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@keyframes mediaFloat {
  0%, 100% { transform: scale(1.01) translateY(0); }
  50% { transform: scale(1.035) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.show,
  .reveal.reveal-stagger,
  .reveal.reveal-stagger > *,
  .reveal.reveal-stagger.show > * {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .hero-drop.reveal.show {
    animation: none !important;
  }
  .card:hover,
  .hero-card:hover,
  .stat-card:hover,
  .team-card:hover,
  .contact-item:hover,
  .image-card:hover,
  .program-row:hover,
  .btn:hover {
    transform: none;
  }
  .image-card:hover img,
  .program-row:hover .program-media img {
    transform: none;
  }
  .image-card img,
  .program-row .program-media img {
    animation: none;
  }
}
@media (max-width: 1120px) {
  .program-row,
  .program-row.reverse {
    grid-template-columns: 1fr;
  }

  .program-row.reverse .program-media,
  .program-row.reverse .program-content {
    order: initial;
  }
}
@media (max-width: 980px) { .hero-grid, .split, .grid-2, .grid-3, .stats-grid, .team-grid, .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 980px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .story-block { padding: 18px; }
  .hero-grid, .split, .grid-2, .grid-3, .stats-grid, .team-grid, .contact-cards { gap: 20px; }
  .trust-strip,
  .cta-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-btn { display: inline-grid; place-items: center; }
  .nav { position: absolute; right: 4vw; top: 72px; min-width: 220px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: none; flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .lang-ghost { display: flex; gap: 4px; }
  .lang-dot { width: 28px; height: 28px; font-size: 0.68rem; }
  .topbar-inner { min-height: 66px; gap: 10px; }
  .brand { font-size: 0.94rem; }
  .brand-mark { width: 34px; height: 34px; font-size: 0.72rem; }
  .hero { padding: 40px 0 18px; }
  .hero-card, .card { padding: 18px; }
  .image-card { min-height: 240px; }
  .section { padding: 28px 0 16px; }
  .trust-strip,
  .cta-panel { grid-template-columns: 1fr; }
  .footer-link-card { min-height: 82px; padding: 12px 14px; }
  .footer-link-title { font-size: 0.94rem; }
  .footer-link-label { font-size: 0.58rem; }
  .footer-link-arrow { width: 22px; height: 22px; right: 10px; top: 10px; }
  .hero-grid, .split, .grid-2, .grid-3, .stats-grid, .team-grid, .contact-cards, .kpi-grid, .program-row, .program-row.reverse, .footer-links-grid { grid-template-columns: 1fr; }
  .program-row.reverse .program-media,
  .program-row.reverse .program-content { order: initial; }
}
