:root {
  --bg: #020202;
  --bg-soft: #070707;
  --surface: #0d0a0b;
  --surface-2: #130f11;
  --card: rgba(255,255,255,.042);
  --card-strong: rgba(255,255,255,.075);
  --text: #f7f4ef;
  --muted: #b6a9a1;
  --primary: #E7C56B;
  --primary-2: #8A2438;
  --primary-3: #6E1A2B;
  --line: rgba(231,197,107,.14);
  --line-strong: rgba(231,197,107,.28);
  --shadow: 0 24px 80px rgba(0,0,0,.58);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #000; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -5%, rgba(138,36,56,.24), transparent 28%),
    radial-gradient(circle at 88% 9%, rgba(231,197,107,.10), transparent 24%),
    linear-gradient(180deg, #010101 0%, #050304 42%, #010101 100%);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
::selection { background: rgba(231,197,107,.38); color: #0a0703; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 100px 0; }
.section-sm { padding: 62px 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px) saturate(130%);
  background: rgba(3,3,3,.72);
  border-bottom: 1px solid var(--line);
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  opacity: .35;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-2), var(--primary), transparent);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.025em; color: #f4eee5; }
.brand span:last-child { text-shadow: 0 0 18px rgba(138,36,56,.12); }
.roman-word {
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand .roman-word {
  font-size: 1.06rem;
  font-weight: 800;
  color: #f5e8cd;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: radial-gradient(circle at 35% 35%, rgba(231,197,107,.10), rgba(138,36,56,.04));
  border: 1px solid rgba(231,197,107,.24);
  box-shadow: 0 10px 34px rgba(138,36,56,.20), 0 0 0 3px rgba(231,197,107,.04);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.brand:hover .logo-mark { transform: rotate(-6deg) scale(1.06); box-shadow: 0 14px 40px rgba(231,197,107,.18), 0 0 0 4px rgba(231,197,107,.04); border-color: rgba(231,197,107,.34); }

.nav-links { display: flex; align-items: center; gap: 25px; color: #c7b8a9; font-size: 14px; }
.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 27px 0 25px;
  transition: color .25s ease, transform .25s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #f3d887, var(--primary-2));
  transform: translateX(-50%);
  transition: width .28s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: #fff; transform: translateY(-1px); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #f3d887);
  color: #120d08 !important;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: linear-gradient(135deg, #f1d683, #e7c56b); box-shadow: 0 10px 30px rgba(231,197,107,.16); }
.menu-btn { display: none; background: #120d0e; color: #f4eee5; border: 1px solid var(--line); border-radius: 12px; padding: 8px 11px; cursor: pointer; }

.hero { position: relative; padding: 100px 0 72px; overflow: hidden; }
.hero .lead { max-width: 760px; }
.hero::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -270px; top: -280px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(138,36,56,.12), inset 0 0 80px rgba(231,197,107,.04);
  animation: orbitPulse 8s ease-in-out infinite;
}

.hero-brand-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 44px;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: min(280px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,36,56,.32), rgba(231,197,107,.18) 48%, transparent 74%);
  filter: blur(28px);
  animation: glowFloat 5s ease-in-out infinite;
}
.hero-logo-large {
  position: relative;
  z-index: 1;
  width: min(240px, 54vw);
  border-radius: 50%;
  border: 1px solid rgba(231,197,107,.36);
  background: radial-gradient(circle at 35% 35%, rgba(231,197,107,.08), rgba(138,36,56,.03));
  box-shadow: 0 26px 80px rgba(0,0,0,.50), 0 0 0 10px rgba(231,197,107,.03), 0 0 70px rgba(138,36,56,.18);
}
.hero-brand-name {
  margin-top: 18px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  color: #c7b8a9;
  text-shadow: 0 0 36px rgba(138,36,56,.12);
}
.hero-brand-tagline {
  margin: 10px 0 0;
  color: #d6c3b0;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 54px; }
.hero-grid > div:first-child { display:flex; flex-direction:column; justify-content:center; }
.badge {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #ebdcc2;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
h1 { margin: 20px 0 18px; font-size: clamp(44px, 7vw, 78px); line-height: 1.02; letter-spacing: -.055em; }
h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.02em; }
.lead { max-width: 700px; color: var(--muted); font-size: 19px; }
.hero-actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 14px; font-weight: 800;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.25), transparent 70%);
  transition: transform .55s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #f0d27a, #e7c56b); color: #120d08; box-shadow: 0 12px 40px rgba(231,197,107,.16); }
.btn-primary:hover { box-shadow: 0 16px 46px rgba(138,36,56,.22); }
.btn-secondary { background: rgba(255,255,255,.035); border-color: var(--line); color: white; }
.btn-secondary:hover { border-color: var(--line-strong); background: rgba(138,36,56,.10); }

.phone-stage { position: relative; min-height: 520px; display: grid; place-items: center; perspective: 1000px; }
.glow { position:absolute; inset: 18% 8%; filter: blur(42px); background: radial-gradient(circle, rgba(138,36,56,.28), rgba(231,197,107,.09) 45%, transparent 70%); animation: glowFloat 5s ease-in-out infinite; }
.phone {
  width: 260px; height: 520px; border-radius: 42px; padding: 11px; position: relative;
  background: linear-gradient(145deg, #222226, #020202);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.72), 0 0 40px rgba(138,36,56,.14);
  transform: rotate(5deg);
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone:before { content:""; position:absolute; top: 17px; left:50%; transform:translateX(-50%); width: 88px; height: 24px; background:#030303; border-radius:999px; z-index:3; }
.phone-screen { height: 100%; border-radius: 33px; padding: 58px 18px 18px; overflow: hidden; background: linear-gradient(160deg, #111116, #09090b 48%, #0d1214); }
.mini-top { color:#c9c9d1; font-size:12px; margin-bottom:24px; }
.app-title { font-size: 28px; font-weight: 900; line-height:1.05; }
.app-sub { color:#9999a3; font-size: 13px; margin: 9px 0 20px; }
.app-card { background: rgba(255,255,255,.055); border:1px solid var(--line); border-radius:20px; padding:16px; margin-top:12px; backdrop-filter: blur(8px); }
.app-row { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.app-icon { width: 44px; height:44px; border-radius:13px; background:linear-gradient(135deg,var(--primary),#f3d887); }
.chip { font-size:11px; border-radius:999px; padding:5px 8px; background:rgba(138,36,56,.20); color:#f5ddb1; border:1px solid rgba(231,197,107,.24); }
.floating-card { position:absolute; padding:14px 16px; border-radius:18px; background:rgba(9,9,11,.88); border:1px solid var(--line); box-shadow:var(--shadow); backdrop-filter: blur(16px); font-size:13px; }
.fc-1 { left:0; top:110px; animation: floatOne 4.8s ease-in-out infinite; }
.fc-2 { right:0; bottom:90px; animation: floatTwo 5.4s ease-in-out infinite; }

.eyebrow { color: #e7c56b; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 850; margin-bottom: 12px; }
.muted { color: var(--muted); }
.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,1fr); gap:24px; }
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.028));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(138,36,56,.16), transparent 44%);
  transition: opacity .35s ease;
  pointer-events: none;
}
.card:hover { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); transform: translateY(-7px); border-color: var(--line-strong); box-shadow: 0 22px 60px rgba(0,0,0,.34); }
.card:hover::before { opacity: 1; }
.icon-box { width: 52px; height: 52px; display:grid; place-items:center; border-radius:16px; background: linear-gradient(135deg, rgba(138,36,56,.18), rgba(231,197,107,.16)); border:1px solid var(--line); margin-bottom:18px; font-size:24px; }

.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:38px; }
.stat { padding:18px; border-radius:18px; background:rgba(255,255,255,.03); border:1px solid var(--line); transition: transform .3s ease, border-color .3s ease; }
.stat:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.stat strong { display:block; font-size:26px; }
.stat span { color:var(--muted); font-size:13px; }

.app-showcase { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.app-item { min-height: 260px; position:relative; overflow:hidden; }
.app-item:after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; right:-60px; bottom:-70px; background:linear-gradient(135deg, rgba(138,36,56,.28), rgba(231,197,107,.12)); filter:blur(4px); transition: transform .45s ease; }
.app-item:hover::after { transform: scale(1.18) translate(-10px,-8px); }
.app-tag { display:inline-flex; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.055); color:#dcdce3; border:1px solid var(--line); font-size:12px; margin-bottom:42px; }

.cta-box { padding: 42px; border-radius: 30px; background: linear-gradient(120deg, rgba(138,36,56,.18), rgba(231,197,107,.08)); border:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; gap:30px; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.cta-box h2 { max-width:700px; margin:0; }

.page-hero { position: relative; padding: 84px 0 52px; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  right: -180px; top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,36,56,.14), transparent 68%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(40px,6vw,64px); }
.breadcrumb { color: var(--muted); font-size: 14px; }

.timeline { display:grid; gap:16px; }
.timeline .step { display:grid; grid-template-columns:52px 1fr; gap:18px; align-items:start; }
.num { width:52px; height:52px; border-radius:16px; display:grid; place-items:center; font-weight:900; background:linear-gradient(135deg,var(--primary),#f3d887); color:#120d08; box-shadow: 0 10px 28px rgba(138,36,56,.15); }

.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field { display:grid; gap:8px; }
.field.full { grid-column: 1/-1; }
label { font-size: 13px; color:#cacad3; font-weight:700; }
input, textarea { width:100%; padding:14px 15px; color:white; background:#08080a; border:1px solid var(--line); border-radius:14px; outline:none; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
input:focus, textarea:focus { border-color:rgba(231,197,107,.72); box-shadow:0 0 0 4px rgba(231,197,107,.08); transform: translateY(-1px); }
textarea { min-height:150px; resize:vertical; }
.notice { padding:14px 16px; border-radius:14px; background:rgba(138,36,56,.12); border:1px solid rgba(231,197,107,.24); color:#f1dda5; font-size:13px; }

.legal { max-width: 860px; }
.legal h2 { margin-top:42px; font-size:28px; }
.legal h3 { margin-top:26px; }
.legal p, .legal li { color:#b9b9c2; }
.legal code { background:#101014; padding:2px 6px; border-radius:6px; }

.footer { border-top:1px solid var(--line); padding:42px 0 28px; margin-top:54px; background: rgba(0,0,0,.22); }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:34px; }
.footer h4 { margin:0 0 12px; }
.footer a { color:#9c9ca5; display:block; margin:8px 0; font-size:14px; transition: color .2s ease, transform .2s ease; }
.footer a:hover { color:#f5ead1; transform: translateX(3px); }
.footer-bottom { border-top:1px solid var(--line); margin-top:30px; padding-top:20px; color:#74747e; font-size:13px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }

/* Page entry + navigation transition */
body.page-enter main,
body.page-enter .footer {
  animation: pageEnter .72s cubic-bezier(.22,.85,.25,1) both;
}
body.page-enter .header { animation: headerEnter .55s ease both; }
body.page-leaving main,
body.page-leaving .footer {
  animation: pageLeave .34s cubic-bezier(.4,0,1,1) both;
  pointer-events: none;
}
body.page-leaving .header { animation: headerLeave .28s ease both; }
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translateY(100%);
  background:
    radial-gradient(circle at 50% 45%, rgba(138,36,56,.20), transparent 30%),
    #020202;
}
.page-transition.active { animation: transitionSweep .52s cubic-bezier(.65,0,.35,1) forwards; }
.page-transition::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  box-shadow: 0 0 28px 5px rgba(231,197,107,.32);
  background: linear-gradient(90deg, transparent, #e7c56b, #8a2438, #e7c56b, transparent);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(5px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1), filter .72s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(22px) scale(.992); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes headerEnter { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes pageLeave { to { opacity: 0; transform: translateY(-18px) scale(.992); filter: blur(6px); } }
@keyframes headerLeave { to { opacity:0; transform:translateY(-10px); } }
@keyframes transitionSweep { 0% { transform: translateY(100%); } 55% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
@keyframes phoneFloat { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-14px); } }
@keyframes glowFloat { 0%,100% { transform: scale(1); opacity:.8; } 50% { transform: scale(1.08); opacity:1; } }
@keyframes floatOne { 0%,100% { transform:translate3d(0,0,0); } 50% { transform:translate3d(8px,-10px,0); } }
@keyframes floatTwo { 0%,100% { transform:translate3d(0,0,0); } 50% { transform:translate3d(-7px,10px,0); } }
@keyframes orbitPulse { 0%,100% { transform: scale(1); opacity:.7; } 50% { transform: scale(1.06); opacity:1; } }

@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-2, .app-showcase, .footer-grid { grid-template-columns:1fr; }
  .hero-brand-showcase { margin-bottom: 28px; }
  .hero { padding-top:64px; }
  .phone-stage { min-height:470px; }
  .stats { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; position:absolute; top:78px; left:0; right:0; flex-direction:column; align-items:stretch; gap:4px; padding:14px 20px 20px; background:rgba(3,3,3,.97); border-bottom:1px solid var(--line); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
  .nav-links.open { display:flex; animation: mobileMenu .28s ease both; }
  .nav-links a:not(.nav-cta) { padding: 12px 4px; }
  .nav-links a:not(.nav-cta)::after { left: 4px; transform:none; bottom:5px; }
  .nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta).active::after { width:42px; }
  .nav-cta { text-align:center; margin-top:8px; }
  .menu-btn { display:block; }
  .cta-box { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 580px) {
  .container { width:min(calc(100% - 26px), var(--max)); }
  .hero-logo-large { width: min(190px, 58vw); }
  .hero-brand-tagline { letter-spacing: .16em; font-size: 11px; }
  .section { padding:72px 0; }
  h1 { font-size:44px; }
  .phone { width:235px; height:470px; }
  .fc-1 { left:-4px; top:70px; } .fc-2 { right:-4px; bottom:55px; }
  .stats, .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .card, .cta-box { padding:22px; }
}

@keyframes mobileMenu { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; filter:none; }
}

/* Language selector */
.language-switcher { position: relative; }
.language-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; font: inherit; min-width: 86px; justify-content: center;
}
.lang-chevron { font-size: 13px; opacity: .7; transition: transform .25s ease; }
.language-switcher.open .lang-chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 178px;
  padding: 8px; border-radius: 16px; z-index: 120;
  background: rgba(13,9,10,.97); border: 1px solid rgba(231,197,107,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.58); backdrop-filter: blur(22px);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.language-switcher.open .language-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.language-menu button {
  width: 100%; display: flex; align-items: center; padding: 10px 12px;
  color: #eadfc8; background: transparent; border: 0; border-radius: 10px;
  font: inherit; font-size: 13px; text-align: left; cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.language-menu button:hover, .language-menu button.active { background: rgba(255,255,255,.07); color: #fff; transform: translateX(2px); }
.language-menu button.active::after { content: "✓"; margin-left: auto; color: var(--primary); font-weight: 900; }
.language-changing main, .language-changing footer { animation: languagePulse .28s ease; }
@keyframes languagePulse { 0% { opacity: .45; transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .language-switcher { margin-top: 8px; }
  .language-btn { width: 100%; }
  .language-menu { position: static; width: 100%; margin-top: 8px; display: none; transform: none; opacity: 1; visibility: visible; }
  .language-switcher.open .language-menu { display: block; }
}
