:root {
  --blue-950: #062344;
  --blue-900: #082c52;
  --blue-800: #0d3a63;
  --blue-700: #155582;
  --blue-600: #1d74ad;
  --blue-500: #3198d5;
  --blue-300: #88d9ff;
  --blue-100: #eaf6ff;
  --ink: #082344;
  --muted: #59728f;
  --soft: #f5fbff;
  --line: rgba(13, 58, 99, 0.16);
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(6, 35, 68, 0.08);
  --shadow-soft: 0 8px 20px rgba(6, 35, 68, 0.05);
  --radius-xl: 8px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 30%, #f7fbfd 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(13, 58, 99, 0.08);
}

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

.brand { display: inline-flex; align-items: center; width: 160px; }
.brand img { width: 100%; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3c5a79;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a { transition: color 180ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-700); }
.nav-links a.active { font-weight: 600; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 12px 24px rgba(6, 35, 68, 0.18);
}

.btn-secondary {
  color: var(--blue-800);
  background: #fff;
  border-color: rgba(13, 58, 99, 0.16);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-800);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Academy hero ---------- */
.academy-hero { padding: 84px 0 30px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-500);
}

.academy-hero h1 {
  margin: 18px 0 14px;
  max-width: 720px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.academy-hero p {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; }

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 600;
}

.meta-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ---------- Featured card ---------- */
.featured { padding: 34px 0 10px; }

.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.featured-copy { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }

.tagline {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 600;
}

.featured-copy p { margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 600;
  transition: gap 180ms ease;
}

.read-link:hover { gap: 12px; }

.featured-visual {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 70% 20%, rgba(49, 152, 213, 0.35), transparent 55%),
    linear-gradient(140deg, #082c52, #06121f);
}
.featured-visual img {
  max-height: 420px;
  max-width: 100%;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.glance-quote {
  margin-top: 10px;
  padding: 44px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--blue-950), var(--blue-800));
  color: #fff;
  box-shadow: var(--shadow);
}
.glance-quote h2 { margin: 0 0 16px; font-size: 24px; font-weight: 600; }
.glance-quote p { margin: 0; color: #cfe6f7; font-size: 16.5px; line-height: 1.8; max-width: 860px; }
@media (max-width: 760px) { .glance-quote { padding: 30px 26px; } }

/* ---------- Module grid ---------- */
.modules { padding: 44px 0 30px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 { margin: 0; font-size: 26px; font-weight: 600; }
.section-head span { color: var(--muted); font-size: 14px; }

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

.module-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-visual { overflow: hidden; background: #06121f; }
.card-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 300ms ease;
}
.module-card:hover .card-visual img { transform: scale(1.03); }

.card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }

.card-tag {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.card-body h3 { margin: 10px 0 8px; font-size: 18px; line-height: 1.35; font-weight: 600; }
.card-body p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.65; flex: 1; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-700);
  font-size: 13.5px;
  font-weight: 600;
}

.card-foot .mins { color: var(--muted); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band { padding: 40px 0 90px; }

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 40px 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-inner h2 { margin: 0 0 8px; font-size: 26px; font-weight: 600; }
.cta-inner p { margin: 0; color: #bfe0f5; font-size: 15px; line-height: 1.6; max-width: 560px; }
.cta-inner .btn-light { background: #fff; color: var(--blue-900); }

/* ---------- Article page ---------- */
.article-head { padding: 64px 0 26px; }

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
}

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

.article-head h1 {
  margin: 20px 0 14px;
  max-width: 860px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta b { color: var(--blue-800); font-weight: 600; }

.article-banner { padding: 26px 0 4px; }
.poster-figure {
  margin: 0 auto;
  max-width: 430px;
}
.poster-figure img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(6, 35, 68, 0.28);
}

.journey-band { padding: 34px 0 4px; }
.journey-band img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px 0 30px;
  font-size: 17px;
  line-height: 1.78;
  color: #24405c;
}

.article-body h2 {
  margin: 46px 0 14px;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--ink);
}

.article-body h3 {
  margin: 30px 0 8px;
  font-size: 19px;
  font-weight: 600;
  color: var(--blue-800);
}

.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
.article-body li { margin: 0 0 10px; }
.article-body strong { color: var(--ink); font-weight: 600; }

.takeaways {
  margin: 40px 0;
  padding: 28px 30px 20px;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  background: var(--blue-100);
}

.takeaways h2 { margin: 0 0 14px !important; font-size: 21px !important; }
.takeaways ul { margin-bottom: 6px; }

.knowledge {
  margin: 40px 0;
  padding: 28px 30px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.knowledge h2 {
  margin: 0 0 6px !important;
  font-size: 21px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.knowledge h2::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-900);
  color: #fff;
  font-size: 15px;
}

.knowledge .hint { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

.outro {
  margin: 40px 0 8px;
  padding: 24px 28px;
  border: 1px dashed rgba(13, 58, 99, 0.3);
  border-radius: var(--radius-xl);
  background: var(--soft);
  font-size: 15.5px;
}

.outro p { margin: 0 0 10px; }
.outro p:last-child { margin: 0; }

/* ---------- Prev / next ---------- */
.pager { padding: 8px 0 30px; }

.pager-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pager-link {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pager-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.pager-link.next { text-align: right; }
.pager-link small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600; }
.pager-link b { font-size: 15.5px; font-weight: 600; color: var(--blue-800); line-height: 1.4; }
.pager-link.empty { visibility: hidden; }

/* ---------- Related ---------- */
.related { padding: 24px 0 90px; }
.related h2 { margin: 0 0 22px; font-size: 24px; font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(13, 58, 99, 0.1);
  background: #fff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  padding: 46px 0 22px;
}

.footer-brand { width: 150px; }
.footer-copy { max-width: 460px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: flex-start;
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover { color: var(--blue-600); }

.footer-bottom {
  padding: 18px 0 40px;
  border-top: 1px solid rgba(13, 58, 99, 0.08);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-bottom p { margin: 6px 0 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; }
.reveal.is-visible { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open a { padding: 10px 0; font-size: 16px; }
  .module-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual { min-height: 220px; order: -1; }
  .featured-copy { padding: 30px 26px 34px; }
  .module-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 32px 26px; }
  .pager-grid { grid-template-columns: 1fr; }
  .pager-link.next { text-align: left; }
  .article-body { font-size: 16.5px; }
}

/* ---------- Newsroom ---------- */
.news-visual { height: 118px; overflow: hidden; }
.news-visual svg { width: 100%; height: 100%; display: block; }

.news-card .card-body { padding: 20px 24px 22px; }
.news-card h3 { font-size: 19px; }
.news-card .outlet-en { margin: -4px 0 8px; color: var(--blue-600); font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px; }

.news-featured .featured-copy .domain { color: var(--muted); font-size: 13px; margin-top: 14px; }

.press-note {
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px dashed rgba(13, 58, 99, 0.28);
  border-radius: var(--radius-xl);
  background: var(--soft);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- License ---------- */
.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.license-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.license-card img { width: 100%; display: block; }

.license-body { padding: 24px 26px 26px; }
.license-body h2 { margin: 0 0 4px; font-size: 21px; font-weight: 600; }
.license-body .authority { margin: 0 0 16px; color: var(--blue-600); font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }

.facts { margin: 0; display: grid; gap: 10px; }
.facts div { display: grid; grid-template-columns: 168px 1fr; gap: 12px; font-size: 14.5px; line-height: 1.55; }
.facts dt { color: var(--muted); font-weight: 500; }
.facts dd { margin: 0; color: var(--ink); font-weight: 500; }

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

.pillar {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pillar i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 14px;
}

.pillar h3 { margin: 0 0 8px; font-size: 15.5px; font-weight: 600; letter-spacing: 0.4px; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.verify-note {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  background: var(--blue-100);
  font-size: 14.5px;
  line-height: 1.65;
  color: #24405c;
}

@media (max-width: 900px) {
  .license-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .facts div { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Finova at a Glance ---------- */
.glance-wrap { padding: 26px 0 20px; }

.qa-columns { columns: 2; column-gap: 24px; }

.qa-card {
  break-inside: avoid;
  margin: 0 0 24px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.qa-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.qa-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.qa-card p {
  margin: 0 0 12px;
  color: #2c4258;
  font-size: 15px;
  line-height: 1.72;
}

.qa-card p:last-child { margin-bottom: 0; }

.wallet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 14px;
  padding: 0;
  list-style: none;
}

.wallet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-800);
}

.wallet-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
}

.qa-card.vision {
  background: linear-gradient(140deg, var(--blue-100), #ffffff 70%);
  border-color: rgba(29, 116, 173, 0.32);
}

@media (max-width: 860px) {
  .qa-columns { columns: 1; }
  .wallet-list { grid-template-columns: 1fr; }
  .qa-card { padding: 24px 22px; }
}

/* ---------- Press article & gallery ---------- */
.press-article {
  padding: 40px 46px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.press-article h2 {
  margin: 16px 0 14px;
  max-width: 900px;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.press-article .dek {
  margin: 0 0 16px;
  color: var(--blue-800);
  font-size: 17.5px;
  line-height: 1.65;
  font-weight: 500;
  font-style: italic;
}

.press-article p { margin: 0 0 14px; color: #2c4258; font-size: 16px; line-height: 1.75; max-width: 900px; }

.press-article .continue-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 58, 99, 0.1);
  color: var(--blue-700);
  font-size: 14.5px;
  font-weight: 600;
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shot {
  display: block;
  height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .press-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
  }
  .press-article { padding: 28px 24px 26px; }
  .press-gallery { grid-template-columns: 1fr; }
  .shot { height: 210px; }
}

/* ---------- Merged coverage cards ---------- */
.news-shot {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.news-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 300ms ease;
}

.module-card:hover .news-shot img { transform: scale(1.03); }

.also-row {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.2;
}

.also-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 8px 0 4px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease;
}

.also-chip:hover { border-color: var(--blue-500); color: var(--blue-600); }

.article-head .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
/* ===================================================================
   LANG SWITCHER
   =================================================================== */

.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.lang-btn:hover { background: var(--soft); border-color: var(--blue-300); }
.lang-btn svg { opacity: 0.55; transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 148px;
  z-index: 50;
  overflow: hidden;
}

.lang-menu.is-open { display: block; }

.lang-menu [data-lang] {
  display: block;
  width: 100%;
  padding: 9px 14px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: background 0.1s;
}

.lang-menu [data-lang]:hover { background: var(--soft); }
.lang-menu [data-lang].is-active { color: var(--blue-600); font-weight: 600; }

.card-visual {
  max-height: 480px;
  height: 100%;
  min-height: 480px;
}
