
:root{
  --bg:#080814;
  --bg2:#101128;
  --card:rgba(255,255,255,.085);
  --card2:rgba(255,255,255,.12);
  --line:rgba(255,255,255,.18);
  --text:#fffaf0;
  --muted:#d8d2c4;
  --gold:#d7b76d;
  --gold2:#fff0b8;
  --rose:#dca7c8;
  --violet:#8b5cf6;
  --blue:#76e4ff;
  --green:#a7f3d0;
  --shadow:0 24px 80px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at top left, rgba(215,183,109,.20), transparent 32rem),
    radial-gradient(circle at 72% 12%, rgba(139,92,246,.25), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(118,228,255,.12), transparent 34rem),
    linear-gradient(135deg,#070711 0%,#111026 45%,#050509 100%);
  color:var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;inset:0;pointer-events:none;z-index:-1;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(circle at center, black 0%, transparent 74%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(7,7,17,.68);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.navwrap{
  max-width:1240px;margin:0 auto;padding:14px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.logo{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.02em}
.logo img{width:44px;height:44px;border-radius:14px;box-shadow:0 0 24px rgba(215,183,109,.28)}
.nav{display:flex;flex-wrap:wrap;gap:6px;align-items:center;justify-content:flex-end}
.nav a{padding:10px 12px;border-radius:999px;color:var(--muted);font-weight:700;font-size:.92rem}
.nav a:hover,.nav a.active{background:rgba(255,255,255,.10);color:white}
.hero{
  max-width:1240px;margin:0 auto;padding:70px 22px 42px;
  display:grid;grid-template-columns:1.08fr .92fr;gap:34px;align-items:center;
}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 13px;border-radius:999px;
  color:var(--gold2);background:rgba(215,183,109,.12);
  border:1px solid rgba(215,183,109,.35);
  font-weight:800;font-size:.86rem;
}
h1,h2,h3{margin:0;line-height:1.04}
h1{font-size:clamp(2.8rem,7vw,6.9rem);letter-spacing:-.06em}
h2{font-size:clamp(2rem,4vw,3.6rem);letter-spacing:-.04em}
h3{font-size:1.35rem}
.grad{
  background:linear-gradient(90deg,#fff,#fff0b8,#d7b76d,#dca7c8,#76e4ff);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{
  font-size:clamp(1.07rem,1.7vw,1.35rem);
  color:var(--muted);line-height:1.75;max-width:760px;margin:22px 0;
}
.cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.btn{
  border:1px solid var(--line);
  padding:13px 18px;border-radius:999px;font-weight:900;
  display:inline-flex;align-items:center;gap:9px;
  box-shadow:0 8px 30px rgba(0,0,0,.18);
  transition:.25s ease transform,.25s ease background,.25s ease border;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(135deg,#d7b76d,#fff0b8);color:#15100a;border-color:transparent}
.btn-dark{background:rgba(255,255,255,.08);color:#fff}
.btn-gold{background:rgba(215,183,109,.14);border-color:rgba(215,183,109,.38);color:#fff0b8}
.hero-card{
  position:relative;padding:18px;border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.05));
  border-radius:34px;box-shadow:var(--shadow);overflow:hidden;
}
.hero-card:before{
  content:"";position:absolute;inset:-40%;
  background:conic-gradient(from 180deg,transparent,rgba(215,183,109,.25),transparent,rgba(118,228,255,.18),transparent);
  animation:spin 10s linear infinite;opacity:.9;
}
.hero-card > *{position:relative}
.hero-card img{border-radius:26px;aspect-ratio:1/1;object-fit:cover}
.caption{color:var(--muted);font-size:.9rem;margin-top:12px;text-align:center}
@keyframes spin{to{transform:rotate(360deg)}}
.section{max-width:1240px;margin:0 auto;padding:54px 22px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:24px}
.section-head p{color:var(--muted);line-height:1.65;max-width:520px;margin:0}
.agent-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.card,.agent-card,.price,.panel{
  border:1px solid var(--line);border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.115),rgba(255,255,255,.045));
  box-shadow:0 16px 50px rgba(0,0,0,.24);
  overflow:hidden;
}
.agent-card{transition:.28s ease transform,.28s ease border,.28s ease box-shadow}
.agent-card:hover{transform:translateY(-6px);border-color:rgba(215,183,109,.55);box-shadow:0 24px 80px rgba(0,0,0,.38)}
.agent-img{height:250px;object-fit:cover;width:100%}
.agent-body{padding:18px}
.agent-body p,.price p,.panel p,.legal p{color:var(--muted);line-height:1.68}
.kicker{color:var(--gold2);font-size:.78rem;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.price{padding:22px}
.pricing{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.price .amount{font-size:2rem;color:var(--gold2);font-weight:950;margin:10px 0}
.ribbon{font-size:.8rem;color:#111;background:linear-gradient(135deg,#fff0b8,#d7b76d);display:inline-block;border-radius:999px;padding:6px 10px;font-weight:900;margin-bottom:12px}
.visual-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.visual-strip img{height:220px;width:100%;object-fit:cover;border-radius:24px;border:1px solid var(--line);box-shadow:0 18px 60px rgba(0,0,0,.3)}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.feature{padding:22px;border-radius:24px;border:1px solid var(--line);background:rgba(255,255,255,.07)}
.feature strong{display:block;color:var(--gold2);font-size:1.08rem;margin-bottom:8px}
.teacher-layout{max-width:1240px;margin:0 auto;padding:50px 22px;display:grid;grid-template-columns:.95fr 1.05fr;gap:28px;align-items:start}
.teacher-visual{position:sticky;top:90px}
.teacher-visual img{border-radius:34px;border:1px solid var(--line);box-shadow:var(--shadow);object-fit:cover}
.simulator{padding:22px}
.prompt-list{display:flex;flex-direction:column;gap:10px;margin:18px 0}
.prompt-btn{
  width:100%;text-align:left;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.07);
  color:var(--text);padding:13px 14px;font-weight:800;cursor:pointer;
}
.prompt-btn:hover{background:rgba(215,183,109,.13);border-color:rgba(215,183,109,.4)}
.answer{
  min-height:160px;border-radius:20px;border:1px solid rgba(215,183,109,.25);
  background:rgba(0,0,0,.24);padding:18px;line-height:1.72;color:#f7edd2;
}
.panel-pad{padding:24px}
.table{width:100%;border-collapse:collapse;margin:14px 0;border:1px solid var(--line);border-radius:18px;overflow:hidden}
.table th,.table td{border-bottom:1px solid var(--line);padding:12px;text-align:left;vertical-align:top}
.table th{color:var(--gold2);width:32%;background:rgba(255,255,255,.06)}
.footer{
  margin-top:50px;padding:36px 22px;text-align:center;color:var(--muted);
  border-top:1px solid var(--line);background:rgba(0,0,0,.23);line-height:1.8;
}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:14px}
.footer-links a{color:#fff0b8;font-weight:800}
.small{font-size:.88rem;color:var(--muted)}
.notice{background:rgba(215,183,109,.11);border:1px solid rgba(215,183,109,.35);border-radius:22px;padding:18px;color:#fff5cc}
@media (max-width:980px){
  .hero,.teacher-layout{grid-template-columns:1fr}
  .teacher-visual{position:relative;top:auto}
  .agent-grid,.pricing,.feature-grid,.visual-strip{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .navwrap{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
  .agent-grid,.pricing,.feature-grid,.visual-strip{grid-template-columns:1fr}
  .hero{padding-top:42px}
  .agent-img{height:320px}
  .section-head{display:block}
}


/* V9 interactive learning upgrades */
.program-studio{display:grid;grid-template-columns:.95fr 1.05fr;gap:20px;align-items:stretch}.program-panel{padding:22px}.program-tabs{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}.tab-btn{border:1px solid var(--line);background:rgba(255,255,255,.08);color:var(--text);border-radius:999px;padding:11px 14px;font-weight:900;cursor:pointer}.tab-btn.active{background:linear-gradient(135deg,#d7b76d,#fff0b8);color:#15100a;border-color:transparent}.program-output{min-height:320px;border-radius:24px;background:rgba(0,0,0,.22);border:1px solid rgba(215,183,109,.25);padding:20px;line-height:1.7}.program-output ol{padding-left:20px}.program-output li{margin:8px 0}.free-question{display:grid;gap:12px;margin-top:16px}.free-question textarea{width:100%;min-height:120px;border-radius:18px;border:1px solid var(--line);background:rgba(0,0,0,.25);color:var(--text);padding:14px;font:inherit;resize:vertical}.exercise-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.exercise-card{border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.07);padding:18px}.exercise-card .answer{display:none;margin-top:12px}.exercise-card.open .answer{display:block}.offline-banner{border:1px solid rgba(167,243,208,.36);background:linear-gradient(135deg,rgba(16,185,129,.13),rgba(118,228,255,.08));border-radius:28px;padding:24px}.offline-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:16px}.offline-item{padding:16px;border:1px solid rgba(255,255,255,.16);border-radius:20px;background:rgba(0,0,0,.18)}.chatbot{position:fixed;right:18px;bottom:18px;z-index:80;width:min(390px,calc(100vw - 36px));}.chat-toggle{width:100%;justify-content:center}.chat-panel{display:none;margin-top:10px;border:1px solid var(--line);border-radius:24px;background:rgba(10,10,24,.96);box-shadow:var(--shadow);overflow:hidden}.chat-panel.open{display:block}.chat-head{padding:14px 16px;background:rgba(215,183,109,.12);border-bottom:1px solid var(--line);font-weight:950;color:#fff0b8}.chat-body{padding:14px;max-height:300px;overflow:auto;display:flex;flex-direction:column;gap:10px}.msg{padding:10px 12px;border-radius:16px;line-height:1.5}.bot{background:rgba(255,255,255,.08)}.user{background:rgba(215,183,109,.16);align-self:flex-end}.chat-input{display:flex;gap:8px;padding:12px;border-top:1px solid var(--line)}.chat-input input{flex:1;border-radius:999px;border:1px solid var(--line);background:rgba(0,0,0,.3);color:#fff;padding:11px 12px}.video-card{position:relative;overflow:hidden;min-height:210px;border-radius:26px;border:1px solid var(--line);background:linear-gradient(135deg,rgba(215,183,109,.14),rgba(139,92,246,.18));padding:22px}.video-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 35%,rgba(255,255,255,.22),transparent 20rem);animation:pulseV 4s ease-in-out infinite alternate}.video-card>*{position:relative}.play{width:62px;height:62px;border-radius:50%;background:linear-gradient(135deg,#fff0b8,#d7b76d);color:#111;display:grid;place-items:center;font-weight:950;font-size:1.4rem;margin-bottom:18px}@keyframes pulseV{from{filter:hue-rotate(0deg);transform:scale(1)}to{filter:hue-rotate(35deg);transform:scale(1.05)}}.voice-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}@media(max-width:980px){.program-studio,.exercise-grid,.offline-grid{grid-template-columns:1fr}.chatbot{position:static;width:auto;margin:20px 22px}}


/* V11 level programs and premium lifestyle agents */
.level-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}
.level-card{border:1px solid var(--line);border-radius:24px;background:rgba(255,255,255,.075);padding:18px}
.level-card h3{color:var(--gold2);margin-bottom:10px}
.level-card ul{margin:0;padding-left:20px;color:var(--muted);line-height:1.65}
.deploy-card{border:1px solid rgba(215,183,109,.36);background:linear-gradient(145deg,rgba(215,183,109,.12),rgba(255,255,255,.05));border-radius:28px;padding:24px;margin-top:20px}
.module-flow{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0}
.flow-step{padding:10px 13px;border:1px solid var(--line);border-radius:999px;background:rgba(0,0,0,.20);font-weight:900;color:#fff0b8}
.bundle-highlight{border-color:rgba(118,228,255,.34);background:linear-gradient(145deg,rgba(118,228,255,.10),rgba(215,183,109,.08))}
@media(max-width:900px){.level-grid{grid-template-columns:1fr}}


/* V12 eBook knowledge base */
.kb-hero{border:1px solid rgba(215,183,109,.35);border-radius:30px;background:linear-gradient(145deg,rgba(215,183,109,.14),rgba(118,228,255,.08));padding:28px}
.kb-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:18px}
.kb-module{border:1px solid var(--line);border-radius:24px;background:rgba(255,255,255,.075);padding:20px}
.kb-module h3{color:var(--gold2)}
.kb-module li{margin:8px 0;color:var(--muted);line-height:1.55}
.source-badge{display:inline-flex;padding:7px 11px;border-radius:999px;background:rgba(167,243,208,.14);border:1px solid rgba(167,243,208,.35);font-weight:900;color:#d1fae5}
@media(max-width:900px){.kb-grid{grid-template-columns:1fr}}


/* V13 artistic coach and new visuals */
.hero-logo-gold{width:72px;height:72px;object-fit:contain;border-radius:18px;box-shadow:0 0 34px rgba(215,183,109,.45);background:#050505}
.big-banner{border:1px solid rgba(215,183,109,.38);border-radius:32px;overflow:hidden;box-shadow:var(--shadow);background:#050509}
.big-banner img{width:100%;height:auto;display:block}
.coach-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.coach-gallery img{width:100%;height:340px;object-fit:cover;border-radius:24px;border:1px solid var(--line);box-shadow:0 20px 60px rgba(0,0,0,.30)}
.art-lab{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.code-card{background:#020617;border:1px solid rgba(118,228,255,.22);border-radius:22px;padding:18px;overflow:auto}
.code-card pre{white-space:pre-wrap;color:#dbeafe;font-size:.88rem;line-height:1.55}
.program-deploy-note{border:1px solid rgba(215,183,109,.35);border-radius:24px;padding:18px;background:rgba(215,183,109,.10);margin-top:14px}
@media(max-width:980px){.coach-gallery,.art-lab{grid-template-columns:1fr}.coach-gallery img{height:auto}}


/* V14 banners */
.v14-hero-banner{
  border:1px solid rgba(215,183,109,.42);
  border-radius:34px;
  overflow:hidden;
  background:#020617;
  box-shadow:0 30px 90px rgba(0,0,0,.45), 0 0 34px rgba(215,183,109,.12);
}
.v14-hero-banner picture,.v14-hero-banner img{display:block;width:100%;height:auto}
.v14-brand-strip{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:22px;
  align-items:center;
  border:1px solid rgba(215,183,109,.34);
  border-radius:30px;
  padding:20px;
  background:linear-gradient(145deg,rgba(215,183,109,.12),rgba(255,255,255,.045));
}
.v14-brand-strip img{
  width:120px;height:120px;object-fit:cover;border-radius:28px;
  box-shadow:0 0 38px rgba(215,183,109,.35);
}
@media(max-width:720px){
  .v14-brand-strip{grid-template-columns:1fr;text-align:center}
  .v14-brand-strip img{margin:auto}
}


/* V15 founder page */
.founder-hero{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:28px;
  align-items:center;
}
.founder-photo-card{
  border:1px solid rgba(215,183,109,.42);
  border-radius:34px;
  padding:18px;
  background:linear-gradient(145deg,rgba(215,183,109,.14),rgba(255,255,255,.05));
  box-shadow:var(--shadow);
}
.founder-photo-card picture,.founder-photo-card img{display:block;width:100%}
.founder-photo-card img{
  border-radius:28px;
  object-fit:cover;
  box-shadow:0 0 38px rgba(215,183,109,.20);
}
.founder-signature{
  margin-top:14px;
  text-align:center;
  color:var(--gold2);
  font-weight:950;
  letter-spacing:.04em;
}
.founder-story{
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.115),rgba(255,255,255,.045));
}
.timeline{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.timeline .step{
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(0,0,0,.18);
  padding:18px;
}
.quote-founder{
  font-size:1.28rem;
  line-height:1.75;
  color:#fff3c4;
  border-left:4px solid var(--gold);
  padding-left:18px;
  margin:20px 0;
}
@media(max-width:900px){
  .founder-hero,.timeline{grid-template-columns:1fr}
}


/* V16 testimonials and social */
.testimonial-grid,.social-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.testimonial-card,.social-card{
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.045));
  padding:22px;
  box-shadow:0 16px 50px rgba(0,0,0,.22);
}
.testimonial-card blockquote{
  margin:14px 0;
  color:#fff3c4;
  line-height:1.7;
  font-size:1.02rem;
}
.testimonial-meta{color:var(--muted);font-size:.92rem;line-height:1.55}
.status-pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:.78rem;
  border:1px solid rgba(118,228,255,.30);
  color:#dbeafe;
  background:rgba(118,228,255,.09);
}
.trust-rule{
  border:1px solid rgba(167,243,208,.32);
  background:linear-gradient(145deg,rgba(16,185,129,.11),rgba(215,183,109,.06));
  border-radius:28px;
  padding:24px;
}
.social-icon{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#d7b76d,#fff0b8);
  color:#14100a;
  font-weight:950;
  font-size:1.25rem;
  margin-bottom:12px;
}
.social-handle{color:var(--gold2);font-weight:950}
.review-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.review-form textarea,.review-form input,.review-form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(0,0,0,.25);
  color:#fff;
  padding:13px;
  font:inherit;
}
.review-form textarea{grid-column:1/-1;min-height:150px}
@media(max-width:980px){.testimonial-grid,.social-grid,.review-form{grid-template-columns:1fr}}


/* V17 founder photo small correction */
.founder-hero.compact-founder{
  grid-template-columns:240px 1fr;
  gap:26px;
  align-items:start;
}
.compact-founder .founder-photo-card{
  width:240px;
  max-width:240px;
  padding:10px;
  border-radius:26px;
  margin:0 auto;
}
.compact-founder .founder-photo-card img{
  width:220px;
  height:220px;
  border-radius:22px;
  object-fit:cover;
}
.compact-founder .founder-signature{
  font-size:.86rem;
  line-height:1.35;
  margin-top:9px;
}
.compact-founder .founder-story{
  padding:24px;
}
.founder-mini-note{
  color:var(--muted);
  font-size:.82rem;
  line-height:1.5;
  text-align:center;
  margin-top:8px;
}
@media(max-width:760px){
  .founder-hero.compact-founder{grid-template-columns:1fr}
  .compact-founder .founder-photo-card{width:210px;max-width:210px}
  .compact-founder .founder-photo-card img{width:190px;height:190px}
}


/* V18 multilingual + contact */
.lang-switcher{
  position:fixed;left:18px;bottom:18px;z-index:90;
  display:flex;gap:6px;flex-wrap:wrap;max-width:360px;
  padding:10px;border:1px solid var(--line);border-radius:22px;
  background:rgba(7,7,17,.86);backdrop-filter:blur(14px);box-shadow:var(--shadow);
}
.lang-switcher a,.lang-switcher button{
  border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);
  color:#fff;border-radius:999px;padding:7px 10px;font-weight:900;font-size:.78rem;cursor:pointer;
}
.lang-switcher a.active,.lang-switcher button.active{background:linear-gradient(135deg,#d7b76d,#fff0b8);color:#14100a}
.language-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.language-card{border:1px solid var(--line);border-radius:26px;background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.045));padding:22px}
.contact-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:22px;align-items:start}
.contact-form{display:grid;gap:12px}
.contact-form input,.contact-form textarea,.contact-form select{
  width:100%;border:1px solid var(--line);border-radius:18px;background:rgba(0,0,0,.26);color:#fff;padding:13px;font:inherit;
}
.contact-form textarea{min-height:170px}
.contact-chat{
  border:1px solid rgba(215,183,109,.35);border-radius:28px;background:linear-gradient(145deg,rgba(215,183,109,.10),rgba(255,255,255,.05));overflow:hidden
}
.contact-chat-body{padding:16px;display:flex;flex-direction:column;gap:10px;max-height:360px;overflow:auto}
.contact-chat-input{display:flex;gap:8px;padding:14px;border-top:1px solid var(--line)}
.contact-chat-input input{flex:1;border:1px solid var(--line);border-radius:999px;background:rgba(0,0,0,.25);color:#fff;padding:12px}
.contact-msg{border-radius:16px;padding:10px 12px;line-height:1.55}.contact-bot{background:rgba(255,255,255,.08)}.contact-user{background:rgba(215,183,109,.16);align-self:flex-end}
@media(max-width:980px){.language-grid,.contact-layout{grid-template-columns:1fr}.lang-switcher{position:static;margin:18px 22px;max-width:none}}
