

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.bridges-section { position: relative; }

.bridges-stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.bridge-langs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.bridge-lang {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(245, 233, 212, 0.04);
  border: 1px solid rgba(245, 233, 212, 0.1);
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2,0.9,0.2,1);
}
.bridge-lang .bl-flag { font-size: 20px; }
.bridge-lang .bl-ru { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.bridge-lang:hover {
  border-color: rgba(245, 181, 68, 0.4);
  color: var(--sand);
}
.bridge-lang.active {
  background: linear-gradient(135deg, rgba(245, 181, 68, 0.25), rgba(212, 98, 58, 0.15));
  border-color: var(--saffron);
  color: var(--sand);
  box-shadow: 0 10px 30px -10px rgba(245, 181, 68, 0.5);
}
.bridge-lang.active .bl-ru { color: var(--sand); }

.bridge-stage-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: 640px;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(107, 155, 255, 0.08), transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(212, 98, 58, 0.08), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(168, 214, 187, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(11,10,20,0.6), rgba(11,10,20,0.85));
  border: 1px solid rgba(245, 233, 212, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 120px -40px rgba(0,0,0,0.6), inset 0 0 120px rgba(245,181,68,0.04);
}
.bridge-map {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.bridge-line {
  opacity: 0.35;
  transition: opacity 0.6s ease, stroke-width 0.4s ease;
  filter: drop-shadow(0 0 8px currentColor);
}
.bridge-map[data-active="fr"] .bridge-line-fr { opacity: 1; stroke-width: 4; }
.bridge-map[data-active="cn"] .bridge-line-cn { opacity: 1; stroke-width: 4; }
.bridge-map[data-active="ar"] .bridge-line-ar { opacity: 1; stroke-width: 4; }

.city { cursor: pointer; }
.city-hub { pointer-events: none; }
.city > circle:nth-child(2) { transition: r 0.3s ease; }
.city:hover > circle:nth-child(2) { r: 9; }

.city-label {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  fill: var(--sand);
  pointer-events: none;
}
.city-label.cn-text, .city-label.ar-text { font-style: normal; font-size: 26px; }
.city-label-hub { fill: var(--saffron); font-size: 22px; letter-spacing: 0.02em; }
.city-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: var(--text-muted);
  pointer-events: none;
}

.city-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: cityPulse 2.4s ease-out infinite;
}
@keyframes cityPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.8); opacity: 0; }
}

.bridge-particle {
  filter: drop-shadow(0 0 10px currentColor);
  opacity: 0.35;
  transition: opacity 0.5s ease;
}
.bridge-map[data-active="fr"] .bridge-particle:nth-of-type(1),
.bridge-map[data-active="cn"] .bridge-particle:nth-of-type(2),
.bridge-map[data-active="ar"] .bridge-particle:nth-of-type(3) { opacity: 1; }

.city-panel {
  position: absolute;
  right: 28px;
  left: auto;
  bottom: 28px;
  width: 360px;
  max-width: calc(100% - 56px);
  z-index: 4;
  display: grid;
  transition: left 0.7s cubic-bezier(0.6,0,0.2,1), right 0.7s cubic-bezier(0.6,0,0.2,1);
}

.bridge-stage-box:has(.bridge-map[data-active="cn"]) .city-panel {
  left: 28px;
  right: auto;
}
.cp-inner {
  grid-area: 1 / 1;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(11,10,20,0.94), rgba(11,10,20,0.82));
  border: 1px solid rgba(245, 181, 68, 0.25);
  border-radius: 18px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16,0.9,0.3,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px -18px rgba(0,0,0,0.75);
  visibility: hidden;
  height: max-content;
  align-self: end;
}
.cp-inner.active { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.cp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(245,233,212,0.1); }
.cp-flag { font-size: 30px; }
.cp-native { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--sand); line-height: 1; }
.cp-native.cn-text, .cp-native.ar-text { font-style: normal; }
.cp-ru { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.cp-greet {
  padding: 13px 15px;
  background: rgba(245, 181, 68, 0.06);
  border-left: 2px solid rgba(245, 181, 68, 0.5);
  border-radius: 4px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--sand);
  margin-bottom: 14px;
  line-height: 1.4;
}
.cp-greet .cn-text, .cp-greet .ar-text { font-style: normal; }
.cp-translit { display: block; margin-top: 6px; font-family: var(--sans); font-style: normal; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; }
.cp-desc { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin-bottom: 14px; }
.cp-bullets { list-style: none; margin-bottom: 16px; padding: 0; }
.cp-bullets li { position: relative; padding-left: 20px; font-size: 12.5px; color: var(--text-dim); margin-bottom: 7px; }
.cp-bullets li::before { content: "✦"; position: absolute; left: 0; color: var(--saffron); font-size: 10px; }
.cp-cta { color: var(--saffron); text-decoration: none; font-size: 13px; border-bottom: 1px solid rgba(245,181,68,0.4); padding-bottom: 2px; transition: all 0.3s; margin-top: auto; align-self: flex-start; }
.cp-cta:hover { color: var(--sun); border-color: var(--sun); }

.map-corner {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 3;
}
.map-corner .mc-small {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.2em;
}

.container-wide { max-width: 1440px; }

@media (max-width: 1100px) {
  .city-panel { width: 320px; right: 20px; bottom: 20px; }
  .cp-inner { padding: 18px 20px; }
}
@media (max-width: 780px) {
  .bridge-stage-box {
    aspect-ratio: auto;
    height: 440px;
    max-height: none;
    border-radius: 24px;
  }
  .city-panel {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 18px;
    min-height: 260px;
  }
  .cp-inner {
    border-radius: 18px;
  }
  .map-corner { top: 14px; left: 14px; }
  .city-label { font-size: 18px; }
  .city-label.cn-text, .city-label.ar-text { font-size: 20px; }
  .city-label-hub { font-size: 16px; }
  .city-sub { font-size: 9px; }
}
@media (max-width: 480px) {
  .bridges-stage { padding: 0 4px; }
  .bridge-lang { padding: 10px 16px; font-size: 13px; }
  .bridge-lang .bl-ru { display: none; }
  .bridge-stage-box { height: 360px; }
}

.section-header { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { color: var(--text-dim); font-size: 17px; max-width: 560px; margin: 16px auto 0; }

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 44px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 181, 68, 0.08), rgba(212, 98, 58, 0.04) 50%, transparent);
  border: 1px solid rgba(245, 181, 68, 0.2);
  margin-bottom: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
  max-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  align-self: start;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.founder-card:hover .founder-photo img { transform: scale(1.04); }
.founder-photo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.3), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.founder-badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(11,10,20,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 181, 68, 0.4);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
}
.founder-text { position: relative; z-index: 1; }
.founder-name {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 14px 0 20px;
  line-height: 1.05;
  color: var(--sand);
}
.founder-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--sand);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 500px;
}
.founder-creds { list-style: none; margin-bottom: 32px; border-top: 1px solid rgba(245,233,212,0.1); }
.founder-creds li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,233,212,0.1);
}
.cred-key { font-size: 12px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }
.cred-val { color: var(--sand); font-size: 15px; text-align: right; }

.teachers-head {
  text-align: center;
  margin-bottom: 36px;
}
.teachers-head .eyebrow { margin-bottom: 10px; }
.teachers-sub { color: var(--text-dim); font-size: 15px; }

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.teachers-grid > .teacher-card:nth-child(3):last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  justify-self: center;
  width: 100%;
}
.teacher-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245,233,212,0.04), rgba(245,233,212,0.01));
  border: 1px solid rgba(245,233,212,0.08);
  transition: all 0.5s cubic-bezier(0.2,0.9,0.2,1);
  min-height: 360px;
}
.teacher-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 68, 0.25);
  background: linear-gradient(180deg, rgba(245,181,68,0.05), rgba(245,233,212,0.01));
}
.tc-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  align-self: start;
}
.tc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s ease; }
.teacher-card:hover .tc-photo img { transform: scale(1.05); }
.tc-flag {
  position: absolute;
  bottom: 10px; left: 10px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(11,10,20,0.85);
  border: 1px solid rgba(245,233,212,0.15);
  border-radius: 50%;
  font-size: 18px;
}
.tc-body { display: flex; flex-direction: column; }
.tc-lang {
  font-family: var(--display);
  font-style: italic;
  color: var(--saffron);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tc-lang.cn-text { font-style: normal; }
.tc-name { font-size: 26px; color: var(--sand); margin-bottom: 4px; }
.tc-role { color: var(--text-dim); font-size: 13px; margin-bottom: 14px; }
.tc-bullets { list-style: none; margin-bottom: 16px; flex: 1; }
.tc-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
  line-height: 1.4;
}
.tc-bullets li::before { content: "✦"; position: absolute; left: 0; color: var(--saffron); font-size: 9px; top: 3px; }
.tc-cta {
  align-self: flex-start;
  color: var(--sand);
  text-decoration: none;
  font-size: 13px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(245,181,68,0.4);
  transition: all 0.3s;
}
.tc-cta:hover { color: var(--saffron); border-color: var(--saffron); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(245, 181, 68, 0.08);
  border: 1px solid rgba(245, 181, 68, 0.25);
  color: var(--sun);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 12px var(--saffron);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  max-width: 1100px;
  margin: 0 auto 36px;
  color: var(--sand);
  line-height: 1.1;
}

.hero-title .hero-tail {
  display: block;
  font-family: var(--display);
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.82em;
  margin-top: 0.1em;
}

.rotator {
  display: inline-block;
  vertical-align: -0.2em;
  height: 1.3em;
  overflow: hidden;
  position: relative;
  padding: 0 0.1em;
}

.rotator-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.lang-word {
  display: block;
  height: 1.3em;
  line-height: 1.3;
  color: var(--saffron);
  font-family: var(--display);
  font-style: italic;
  white-space: nowrap;
}
.lang-word em {
  font-style: italic;
  color: var(--terracotta);
  margin-right: 0.1em;
  font-weight: 400;
}
.lang-fr em { font-family: var(--display); }
.lang-cn em { font-family: var(--cn); font-style: normal; color: var(--rose); }
.lang-ar em { font-family: var(--ar); font-style: normal; color: var(--sun); direction: rtl; }

.hero-sub {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--text-dim);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
}

.hero-facts {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  padding: 18px 32px;
  background: rgba(11, 10, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 233, 212, 0.08);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.fact-num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--sand);
  font-weight: 500;
}
.fact-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.fact-divider {
  width: 1px;
  height: 28px;
  background: rgba(245, 233, 212, 0.12);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 1;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, var(--saffron), transparent 70%);
}
.orb-2 {
  width: 500px; height: 500px;
  top: 200px; right: -100px;
  background: radial-gradient(circle, var(--terracotta), transparent 70%);
  animation-delay: -6s;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 40%;
  background: radial-gradient(circle, var(--jade), transparent 70%);
  animation-delay: -12s;
  opacity: 0.25;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

.hero-constellation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.floating-phrase {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  opacity: 0;
  animation: float-in 14s ease-in-out infinite;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(11,10,20,0.8);
}
.floating-phrase.ar { font-family: var(--ar); font-style: normal; }
.floating-phrase.cn { font-family: var(--cn); font-style: normal; }
@keyframes float-in {
  0% { opacity: 0; transform: translateY(30px); }
  15%, 85% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-30px); }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--saffron), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 16px auto 0;
}

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

.lang-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 233, 212, 0.04), rgba(245, 233, 212, 0.015));
  border: 1px solid rgba(245, 233, 212, 0.08);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
  isolation: isolate;
}
.lang-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 181, 68, 0.3);
}

.lang-card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(400px 300px at 50% 0%, var(--accent-color, var(--saffron)), transparent 70%);
  mix-blend-mode: screen;
}
.lang-card:hover .lang-card-glow { opacity: 0.3; }

.lang-card--fr { --accent-color: #5b8dff; }
.lang-card--cn { --accent-color: var(--terracotta); }
.lang-card--ar { --accent-color: var(--jade); }

.lang-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
}
.lang-flag {
  width: 56px; height: 38px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.flag-svg { display: block; width: 100%; height: 100%; }

.lang-label { line-height: 1.2; }
.lang-name-native {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--sand);
}
.lang-name-native.ar-text { font-family: var(--ar); font-style: normal; direction: rtl; }
.lang-name-native.cn-text { font-family: var(--cn); font-style: normal; }
.lang-name-ru {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-quote {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(11, 10, 20, 0.6);
  border: 1px solid rgba(245, 233, 212, 0.06);
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--sand);
  margin-bottom: 24px;
  position: relative;
}
.q-mark {
  color: var(--saffron);
  font-size: 28px;
  line-height: 1;
  margin-right: 4px;
  vertical-align: -2px;
}
.q-translit {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.ar-text { font-family: var(--ar); direction: rtl; font-style: normal; }
.cn-text { font-family: var(--cn); font-style: normal; }

.lang-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lang-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.lang-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.lang-bullets li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--saffron);
  font-size: 10px;
}

.lang-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(245, 181, 68, 0.4);
  transition: all 0.3s ease;
}
.lang-cta:hover {
  color: var(--saffron);
  border-color: var(--saffron);
  gap: 12px;
}

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

.method-card {
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 233, 212, 0.03), transparent);
  border: 1px solid rgba(245, 233, 212, 0.07);
  position: relative;
  transition: all 0.4s ease;
}
.method-card:hover {
  background: linear-gradient(180deg, rgba(245, 181, 68, 0.05), transparent);
  border-color: rgba(245, 181, 68, 0.25);
}

.method-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.method-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 181, 68, 0.15), rgba(212, 98, 58, 0.08));
  border: 1px solid rgba(245, 181, 68, 0.25);
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--saffron);
  font-size: 22px;
}
.method-icon[data-icon="talk"]::before { content: "✦"; }
.method-icon[data-icon="indiv"]::before { content: "◈"; }
.method-icon[data-icon="culture"]::before { content: "❋"; }
.method-icon[data-icon="online"]::before { content: "◉"; }
.method-icon[data-icon="exam"]::before { content: "✸"; }
.method-icon[data-icon="trans"]::before { content: "⟐"; }

.method-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--sand);
}
.method-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 233, 212, 0.04), rgba(245, 233, 212, 0.01));
  border: 1px solid rgba(245, 233, 212, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 68, 0.2);
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(245, 181, 68, 0.08), rgba(212, 98, 58, 0.04));
  border-color: rgba(245, 181, 68, 0.35);
  box-shadow: 0 30px 80px -20px rgba(245, 181, 68, 0.25);
}

.price-badge {
  position: absolute;
  top: -12px; right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.price-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-name {
  font-size: 24px;
  color: var(--sand);
  margin-bottom: 18px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-value {
  font-family: var(--display);
  font-size: 46px;
  color: var(--sand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-cur {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--saffron);
}
.price-per {
  font-size: 12px;
  color: var(--saffron);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.price-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  line-height: 1.4;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--saffron);
  border-bottom: 1.5px solid var(--saffron);
  transform: rotate(-45deg);
}
.price-cta {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
}

.translate-strip {
  padding: 36px 44px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(127, 184, 161, 0.08), rgba(245, 181, 68, 0.05));
  border: 1px solid rgba(127, 184, 161, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.translate-left .eyebrow { color: var(--jade); margin-bottom: 12px; }
.translate-left h3 { font-size: 26px; margin-bottom: 8px; color: var(--sand); }
.translate-left p { color: var(--text-dim); font-size: 14.5px; max-width: 580px; }

.teacher-section {
  background: linear-gradient(180deg, transparent, rgba(245, 181, 68, 0.03), transparent);
}
.teacher-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.teacher-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
}
.portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 181, 68, 0.25);
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 181, 68, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(212, 98, 58, 0.18), transparent 50%),
    linear-gradient(135deg, var(--night-700), var(--night-800));
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.portrait-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.portrait-initials {
  font-family: var(--display);
  font-style: italic;
  font-size: 140px;
  color: var(--sand);
  line-height: 1;
  opacity: 0.92;
}
.portrait-stamps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.stamp {
  font-size: 16px;
  padding: 6px 14px;
  border: 1px dashed rgba(245, 233, 212, 0.3);
  border-radius: 999px;
  color: var(--text-dim);
}
.portrait-glow {
  position: absolute;
  inset: -40px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.teacher-text h2 { margin: 14px 0 24px; }
.teacher-lead {
  font-size: 19px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  font-family: var(--display);
  font-style: italic;
  color: var(--sand);
}
.teacher-creds {
  list-style: none;
  margin-bottom: 36px;
  border-top: 1px solid rgba(245, 233, 212, 0.08);
}
.teacher-creds li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
  gap: 20px;
}
.cred-key {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cred-val {
  color: var(--sand);
  font-size: 15px;
  text-align: right;
}

.reviews-grid {
  columns: 3;
  column-gap: 20px;
}
.review-card {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 28px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 233, 212, 0.04), rgba(245, 233, 212, 0.01));
  border: 1px solid rgba(245, 233, 212, 0.08);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 181, 68, 0.2);
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.review-lang {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--saffron);
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(245, 181, 68, 0.1);
  border-radius: 999px;
}
.review-date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.review-stars {
  color: var(--saffron);
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: var(--display);
  font-style: italic;
  color: var(--sand);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 233, 212, 0.08);
}
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
}
.review-name {
  font-size: 14px;
  color: var(--sand);
}

.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 140px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 500px at 50% 50%, rgba(245, 181, 68, 0.15), transparent 60%),
    radial-gradient(500px 400px at 20% 80%, rgba(212, 98, 58, 0.1), transparent 60%),
    radial-gradient(500px 400px at 80% 20%, rgba(127, 184, 161, 0.08), transparent 60%);
}
.cta-inner {
  position: relative;
  max-width: 840px;
}
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin: 24px 0 20px;
}
.cta-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-alt {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.cta-alt a {
  color: var(--saffron);
  text-decoration: none;
  border-bottom: 1px dashed var(--saffron);
  padding-bottom: 2px;
}
.cta-ornament {
  position: absolute;
  top: 50%;
  width: 180px; height: 180px;
  border: 1px dashed rgba(245, 181, 68, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.ornament-l { left: -80px; }
.ornament-r { right: -80px; }
.cta-ornament::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(212, 98, 58, 0.2);
  border-radius: 50%;
}

.footer {
  padding: 80px 0 36px;
  border-top: 1px solid rgba(245, 233, 212, 0.08);
  background: rgba(11, 10, 20, 0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--sand);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 230px;
  line-height: 1.5;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-small {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-motto { color: var(--text-dim); }

.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 300px;
  background: rgba(11, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 181, 68, 0.3);
  border-radius: 20px;
  padding: 18px;
  font-family: var(--sans);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
}
.tweaks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--sand);
}
.tweaks-close {
  background: none;
  border: 1px solid rgba(245, 233, 212, 0.1);
  color: var(--text-dim);
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.tweaks-body { display: flex; flex-direction: column; gap: 14px; }
.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.tweak-row.tweak-check {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.tweak-row select, .tweak-row input[type="range"] {
  width: 100%;
  background: rgba(245, 233, 212, 0.05);
  border: 1px solid rgba(245, 233, 212, 0.1);
  color: var(--sand);
  padding: 8px 10px;
  border-radius: 10px;
  font-family: var(--sans);
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; width: calc(100% - 40px); }
  .nav-links { display: none; }
  .lang-grid, .method-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .bridge-map-wrap { grid-template-columns: 1fr !important; gap: 20px; padding: 20px; }
  .bridge-map-col { min-height: auto; }
  .city-panel { min-height: auto; position: relative; }
  .cp-inner { position: relative; padding: 24px; }
  .cp-inner:not(.active) { display: none; }
  .founder-card { grid-template-columns: 1fr; gap: 30px; padding: 28px; }
  .founder-photo { max-width: 340px; margin: 0 auto; }
  .teachers-grid { grid-template-columns: 1fr; }
  .teacher-card { grid-template-columns: 140px 1fr; gap: 18px; padding: 18px; min-height: auto; }
  .reviews-grid { columns: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-facts { gap: 20px; padding: 14px 18px; }
  .fact-divider { display: none; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .translate-strip { padding: 24px; }
}

@media (max-width: 720px) {

  .nav {
    top: 14px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 999px;
    width: calc(100% - 24px);
  }
  .nav-brand { font-size: 15px; letter-spacing: 0.04em; }
  .nav-brand .nav-sub { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .nav-cta .arrow { display: none; }

  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero-inner { padding: 0 20px; }
  .hero-kicker { font-size: 11px; margin-bottom: 20px; }
  .hero-title {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  .hero-title .rotator { font-size: 0.95em; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; padding: 0 8px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 48px; width: 100%; }
  .hero-ctas .btn, .hero-ctas .btn-lg { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 18px 20px;
    border-radius: 24px;
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .hero-facts .fact { padding: 8px 4px; }
  .hero-facts .fact + .fact { border-left: 1px solid rgba(245,233,212,0.08); }
  .hero-facts .fact:nth-child(3) { border-left: none; border-top: 1px solid rgba(245,233,212,0.08); }
  .hero-facts .fact:nth-child(4) { border-top: 1px solid rgba(245,233,212,0.08); }
  .fact-num { font-size: 22px; }
  .fact-label { font-size: 10px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.08; }
  .eyebrow { font-size: 11px; }

  .bridges-stage { padding: 0 4px; }
  .bridge-langs { display: none; }

  .bridge-stage-box {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    min-height: 0;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    overflow: visible;
  }
  .bridge-stage-box > .bridge-map { display: none; }
  .bridge-stage-box > .map-corner { display: none; }

  .city-panel {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    z-index: 1;
  }
  .cp-inner {
    position: relative !important;
    grid-area: auto !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column;
    padding: 22px 22px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(245, 181, 68, 0.05), rgba(11,10,20,0.4));
    border: 1px solid rgba(245, 181, 68, 0.18);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  }
  .cp-inner[data-lang="fr"] { border-color: rgba(107, 155, 255, 0.25); background: linear-gradient(180deg, rgba(107, 155, 255, 0.06), rgba(11,10,20,0.4)); }
  .cp-inner[data-lang="ar"] { border-color: rgba(168, 214, 187, 0.25); background: linear-gradient(180deg, rgba(168, 214, 187, 0.06), rgba(11,10,20,0.4)); }
  .cp-inner[data-lang="cn"] { border-color: rgba(212, 98, 58, 0.25); background: linear-gradient(180deg, rgba(212, 98, 58, 0.07), rgba(11,10,20,0.4)); }
  .cp-greet { font-size: 14px; padding: 12px 14px; }
  .cp-desc { font-size: 13px; }
  .cp-bullets li { font-size: 12.5px; }
  .cp-native { font-size: 24px; }

  .lang-grid { grid-template-columns: 1fr; gap: 20px; }
  .lang-card { padding: 28px 22px; }

  .method-grid { grid-template-columns: 1fr; gap: 16px; }
  .method-card { padding: 26px 22px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-card { padding: 26px 22px 22px; }
  .price-card .price-features { margin-bottom: 18px; }
  .price-card .price-cta {
    padding: 13px 20px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    text-align: left;
  }
  .founder-photo { max-width: 100%; aspect-ratio: 4/4.5; }
  .teachers-grid { grid-template-columns: 1fr; gap: 16px; }
  .teachers-grid > .teacher-card:nth-child(3):last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .teacher-card {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0 !important;
  }
  .tc-photo {
    width: 100% !important;
    height: 280px !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
  }
  .tc-body { padding: 22px 20px 24px; }
  .tc-name { font-size: 22px; }
  .tc-role { font-size: 12px; }

  .teacher-inner { grid-template-columns: 1fr; gap: 40px; }
  .teacher-portrait { max-width: 100%; }
  .teacher-lead { font-size: 16px; }
  .teacher-creds li { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }

  .footer { padding: 56px 0 28px !important; }
  .footer .container.footer-inner,
  .footer .container.footer-bottom {
    padding-left: 22px !important;
    padding-right: 22px !important;
    box-sizing: border-box;
  }
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-bottom: 28px !important;
  }
  .footer-brand {
    padding-bottom: 24px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(245, 233, 212, 0.1);
  }
  .footer-brand-tag { font-size: 13px; max-width: 280px; }
  .footer-col {
    padding: 20px 0 !important;
    gap: 14px !important;
    border-bottom: 1px solid rgba(245, 233, 212, 0.08);
  }
  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 4px !important;
  }
  .footer-col-title { font-size: 12px; margin-bottom: 8px; }
  .footer-col a, .footer-small {
    font-size: 14.5px;
    line-height: 1.45;
  }
  .footer-bottom {
    display: block !important;
    padding-top: 28px !important;
    margin-top: 8px;
    text-align: center !important;
  }
  .footer-bottom > span {
    display: block;
    margin: 0 auto 12px;
  }
  .footer-bottom > span:last-child { margin-bottom: 0; }
  .footer-motto {
    font-size: 12px;
    line-height: 1.8;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  .translate-strip {
    padding: 24px 22px;
    border-radius: 20px;
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .translate-left h3 { font-size: 22px; line-height: 1.15; margin-bottom: 10px; }
  .translate-left p { font-size: 14px; line-height: 1.55; }
  .translate-strip .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 14.5px;
  }

  .container, .container-wide { padding: 0 18px; }
  h1, h2 { letter-spacing: -0.01em; }
}

@media (max-width: 420px) {
  .bridge-stage-box { height: 460px; }
  .nav-brand { font-size: 14px; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .fact-num { font-size: 20px; }
}
