/* ============ Дизайн-система «Тепло и жизнь» (вариант C) ============ */
:root {
  --plum: #6E2A50;
  --plum-deep: #4A1F38;
  --plum-2: #93395F;
  --rose: #B84A6B;
  --coral: #E8654F;
  --coral-2: #F0876B;
  --cream: #FDF8F5;
  --cream-2: #FBF1EB;
  --peach: #FDF3EE;
  --pink-soft: #F9E8EC;
  --line: #F1DCD3;
  --ink: #3A2230;
  --gray: #7A5B6A;
  --white: #FFFFFF;
  --radius: 24px;
  --shadow: 0 10px 28px rgba(110, 42, 80, .08);
  --shadow-lg: 0 24px 60px rgba(110, 42, 80, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Golos Text', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }
h2.sec-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--plum);
  margin-bottom: 10px;
}
.sec-kicker {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose);
  background: var(--pink-soft);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.sec-sub { color: var(--gray); max-width: 640px; margin-bottom: 40px; font-size: 17px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 800; font-size: 15.5px; font-family: inherit;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(135deg, var(--coral-2), var(--coral)); color: #fff; box-shadow: 0 12px 28px rgba(232,101,79,.35); }
.btn-gold:hover { box-shadow: 0 14px 32px rgba(232,101,79,.5); transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--plum); border: 1.5px solid #E9CFC4; }
.btn-ghost:hover { border-color: var(--rose); }
.btn-navy { background: var(--plum); color: #fff; box-shadow: 0 12px 28px rgba(110,42,80,.3); }
.btn-navy:hover { background: var(--plum-2); transform: translateY(-2px); }

/* ---------- Шапка ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
  padding: 12px 0;
}
header.site.scrolled { background: rgba(255,252,250,.94); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(110,42,80,.10); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.logo-badge img { width: 38px; height: 38px; object-fit: contain; }
.logo-text { font-weight: 800; font-size: 14px; line-height: 1.25; color: var(--plum); }
.logo-text small { display: block; font-weight: 600; font-size: 11px; color: var(--gray); }
nav.main { display: flex; align-items: center; gap: 24px; }
nav.main a.nav-link { color: var(--gray); text-decoration: none; font-weight: 700; font-size: 14.5px; transition: color .2s; }
nav.main a.nav-link:hover { color: var(--plum); }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--plum); margin: 5px 0; }

/* ---------- Hero (центрированный, светлый) ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 130px 0 150px;
  background:
    radial-gradient(760px 480px at 50% -10%, rgba(240,135,107,.22), transparent 60%),
    radial-gradient(600px 420px at 6% 90%, rgba(110,42,80,.12), transparent 55%),
    radial-gradient(600px 420px at 96% 80%, rgba(232,101,79,.12), transparent 55%),
    linear-gradient(180deg, #FFF6F1, var(--cream));
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 0 22px; }
.hero-logo { width: 108px; height: 108px; object-fit: contain; margin: 0 auto 18px; display: block; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; font-size: 13.5px; font-weight: 700; color: var(--plum);
  box-shadow: 0 6px 18px rgba(110,42,80,.08); margin-bottom: 22px;
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.hero h1 {
  font-size: clamp(29px, 4.2vw, 48px);
  line-height: 1.14; font-weight: 800; letter-spacing: -.6px;
  color: var(--plum-deep); margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--rose), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .tagline { font-size: 16.5px; color: var(--gray); max-width: 620px; margin: 0 auto 30px; }
.hero-cta { display: flex; justify-content: center; gap: 13px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 700; color: var(--gray);
}
.chip svg { width: 15px; height: 15px; flex: none; color: var(--rose); }
.chip.gold { border-color: #F3D3B8; color: #8a5a10; background: #FDF6EC; }
.chip.gold svg { color: #D9912B; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--gray); }
.hero-arc { position: absolute; left: 0; right: 0; bottom: -2px; height: 70px; background: var(--cream); border-radius: 100% 100% 0 0/100% 100% 0 0; }

/* ---------- Countdown ---------- */
.countdown-wrap { position: relative; z-index: 5; margin-top: -70px; }
.countdown {
  background: var(--white); border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 24px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.countdown .cd-label { font-weight: 800; color: var(--plum); font-size: 17px; }
.cd-label small { display: block; font-weight: 600; color: var(--gray); font-size: 13px; margin-top: 2px; }
.cd-units { display: flex; gap: 12px; }
.cd-unit { text-align: center; min-width: 70px; background: var(--peach); border-radius: 18px; padding: 12px 8px 10px; }
.cd-unit b { display: block; font-size: 28px; font-weight: 800; color: var(--coral); font-variant-numeric: tabular-nums; line-height: 1; }
.cd-unit span { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Приветственное видео ---------- */
.video-band {
  background: linear-gradient(140deg, #5C2343, var(--plum) 55%, var(--plum-2));
  color: #fff; position: relative; overflow: hidden;
  border-radius: 40px; max-width: 1180px; margin: 84px auto;
}
.video-band::after { content: none; }
.video-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.video-band .sec-kicker { background: rgba(255,255,255,.14); color: #FBD9C9; }
.video-band .sec-title { color: #fff; }
.video-text { color: rgba(255,255,255,.85); font-size: 16.5px; margin-bottom: 28px; max-width: 520px; }
.phone-frame {
  width: min(330px, 88vw); height: 650px;
  border-radius: 40px; padding: 10px;
  background: linear-gradient(160deg, rgba(240,135,107,.55), rgba(255,255,255,.1));
  box-shadow: 0 30px 70px rgba(46, 12, 32, .5);
}
.ig-embed { width: 100%; height: 100%; border: 0; border-radius: 32px; background: var(--plum-deep); display: block; }
.ig-link { display: inline-block; margin-top: 14px; color: rgba(255,255,255,.78); font-size: 13.5px; font-weight: 700; text-decoration: underline; }
.ig-link:hover { color: #fff; }

/* ---------- О конференции ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.about-text p { color: var(--gray); font-size: 16.5px; margin-bottom: 16px; }
.placeholder-note { border: 1.5px dashed #E9CFC4; background: var(--peach); color: #9A6B52; border-radius: 14px; padding: 12px 16px; font-size: 13.5px; font-weight: 600; margin-top: 8px; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.metric b { display: block; font-size: 30px; font-weight: 800; color: var(--rose); letter-spacing: -.5px; }
.metric span { font-size: 13.5px; color: var(--gray); font-weight: 600; }
.aud-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.aud-chip { background: var(--white); border: 1px solid var(--line); color: var(--plum); border-radius: 100px; padding: 8px 16px; font-size: 13.5px; font-weight: 700; }

/* ---------- Секции-подложки ---------- */
.dates { background: var(--cream-2); border-radius: 40px; max-width: 1180px; margin: 0 auto; }
.dates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.date-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.date-card .d-when { font-size: 13px; font-weight: 800; color: var(--coral); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.date-card h3 { font-size: 19px; color: var(--plum); font-weight: 800; margin-bottom: 6px; }
.date-card p { color: var(--gray); font-size: 14.5px; }

/* ---------- Форматы ---------- */
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hl-grid.cols3 { grid-template-columns: repeat(3, 1fr); }
.hl-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; transition: .2s; box-shadow: var(--shadow); }
.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hl-icon { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 18px; background: var(--pink-soft); color: var(--rose); display: flex; align-items: center; justify-content: center; }
.hl-icon svg { width: 26px; height: 26px; }
.hl-card h3 { font-size: 17px; font-weight: 800; color: var(--plum); margin-bottom: 8px; }
.hl-card p { font-size: 14px; color: var(--gray); }

/* ---------- Научные направления ---------- */
.topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.topic-card { display: flex; gap: 16px; align-items: center; background: var(--white); border-radius: 20px; padding: 20px 22px; box-shadow: var(--shadow); transition: .15s; }
.topic-card:hover { transform: translateY(-2px); }
.topic-num { flex: none; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--coral)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.topic-card p { font-weight: 700; font-size: 15px; color: var(--ink); }

/* ---------- Программа ---------- */
.program { background: var(--cream); }
.day-tabs { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.day-tab { padding: 12px 26px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--white); font-family: inherit; font-weight: 800; font-size: 15px; color: var(--gray); cursor: pointer; transition: .2s; }
.day-tab.active { background: var(--plum); border-color: var(--plum); color: #fff; box-shadow: var(--shadow); }
.day-panel { display: none; }
.day-panel.active { display: block; }
.slot { display: grid; grid-template-columns: 140px 200px 1fr; gap: 18px; align-items: center; background: var(--white); border-radius: 20px; padding: 18px 22px; margin-bottom: 12px; box-shadow: 0 8px 22px rgba(110,42,80,.05); transition: .15s; }
.slot:hover { box-shadow: var(--shadow); }
.slot-time { font-weight: 800; color: var(--plum); font-size: 15.5px; font-variant-numeric: tabular-nums; }
.slot-type { justify-self: start; font-size: 11.5px; font-weight: 800; letter-spacing: .03em; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; white-space: normal; line-height: 1.35; text-align: center; }
.t-plenary { background: var(--pink-soft); color: var(--rose); }
.t-section { background: #EAF6EF; color: #217A4B; }
.t-break { background: #FDF0E3; color: #B26A00; }
.t-org { background: #F4EEF1; color: var(--gray); }
.t-master { background: #F3EBFB; color: #7A3FB8; }
.slot-title { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.slot-title small { display: block; font-weight: 600; color: var(--gray); font-size: 13px; margin-top: 2px; }

/* ---------- Спикеры ---------- */
.spk2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.spk2 { background: var(--white); border-radius: var(--radius); padding: 24px; transition: .2s; box-shadow: var(--shadow); }
.spk2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spk2.chair { background: linear-gradient(160deg, var(--plum), var(--plum-2)); color: #fff; }
.spk2-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.spk2-ava { flex: none; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--coral)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; letter-spacing: .5px; }
.spk2 h3 { font-size: 16px; font-weight: 800; color: var(--plum-deep); line-height: 1.3; }
.spk2.chair h3 { color: #fff; }
.spk2 .role-badge { display: inline-block; margin-top: 4px; background: rgba(255,255,255,.2); color: #FBD9C9; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }
.spk2 .cred { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
.spk2.chair .cred { color: rgba(255,255,255,.78); }
.spk2 .geo { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--rose); }
.spk2.chair .geo { color: #FBD9C9; }
.spk2 .geo svg { width: 13px; height: 13px; }
.spk2 .geo.foreign { color: #B8802A; }
.spk-subtitle { margin: 40px 0 20px; font-size: 20px; font-weight: 800; color: var(--plum); display: flex; align-items: center; gap: 12px; }
.spk-subtitle::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Место ---------- */
.venue-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: stretch; }
.venue-card { background: linear-gradient(160deg, #5C2343, var(--plum-2)); color: #fff; border-radius: var(--radius); padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.venue-card .v-kicker { color: #FBD9C9; font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.venue-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.venue-card p { color: rgba(255,255,255,.85); font-size: 15.5px; margin-bottom: 8px; }
.venue-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 8px; }
.venue-row svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: #FBD9C9; }
.venue-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; background: var(--white); }
.venue-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Регистрация ---------- */
.reg { background: linear-gradient(150deg, #5C2343, var(--plum-2)); color: #fff; position: relative; overflow: hidden; }
.reg::after { content: none; }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.reg h2 { color: #fff; }
.reg .sec-kicker { background: rgba(255,255,255,.14); color: #FBD9C9; }
.reg-benefits { list-style: none; margin-top: 24px; }
.reg-benefits li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,.9); font-size: 15.5px; font-weight: 600; }
.reg-benefits svg { width: 20px; height: 20px; flex: none; color: #FBD9C9; margin-top: 2px; }
.form-card { background: var(--white); border-radius: 28px; box-shadow: 0 30px 70px rgba(46,12,32,.45); padding: 36px; color: var(--ink); }
.form-card h3 { color: var(--plum); font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.form-card .f-sub { color: var(--gray); font-size: 13.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 800; color: var(--plum); margin-bottom: 6px; }
.field input { width: 100%; padding: 13px 16px; border-radius: 16px; border: 1.5px solid var(--line); font-family: inherit; font-size: 15px; color: var(--ink); background: var(--cream); transition: border .15s, box-shadow .15s; }
.field input:focus { outline: none; border-color: var(--rose); background: #fff; box-shadow: 0 0 0 4px rgba(184,74,107,.12); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--gray); margin: 18px 0; }
.consent input { margin-top: 3px; accent-color: var(--rose); }
.form-msg { display: none; margin-top: 14px; border-radius: 14px; padding: 14px 16px; font-weight: 700; font-size: 14.5px; }
.form-msg.ok { display: block; background: #EAF6EF; color: #1C6B41; }
.form-msg.err { display: block; background: #FDEBEA; color: #B3362C; }
.btn-block { width: 100%; }

/* ---------- Организатор и партнёры ---------- */
.partners-band { background: var(--cream-2); border-radius: 40px; max-width: 1180px; margin: 0 auto; }
.org-card {
  display: flex; align-items: center; gap: 26px;
  background: var(--white); border-radius: var(--radius); padding: 28px 30px;
  box-shadow: var(--shadow); margin-top: 36px; margin-bottom: 22px; flex-wrap: wrap;
}
.org-card img { width: 110px; height: 110px; object-fit: contain; flex: none; }
.org-card .o-label { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.org-card h3 { font-size: 17px; font-weight: 800; color: var(--plum); line-height: 1.4; margin-bottom: 4px; }
.org-card p { font-size: 13.5px; color: var(--gray); }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); transition: .2s; }
.partner-card:hover { transform: translateY(-4px); }
.partner-card img { height: 96px; object-fit: contain; margin-bottom: 14px; }
.partner-card p { font-size: 13.5px; font-weight: 700; color: var(--gray); line-height: 1.45; }

/* ---------- Футер ---------- */
footer.site { background: var(--plum-deep); color: rgba(255,255,255,.78); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer.site h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 14px; }
footer.site a { color: rgba(255,255,255,.8); text-decoration: none; }
footer.site a:hover { color: #fff; }
.foot-line { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.foot-note { font-size: 13.5px; line-height: 1.7; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ---------- Адаптив ---------- */
@media (max-width: 980px) {
  .about-grid, .reg-grid, .venue-grid, .video-grid { grid-template-columns: 1fr; gap: 36px; }
  .hl-grid, .hl-grid.cols3 { grid-template-columns: 1fr 1fr; }
  .spk2-grid { grid-template-columns: 1fr 1fr; }
  .dates-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .video-band { margin: 60px 14px; }
  .dates, .partners-band { margin: 0 14px; }
}
@media (max-width: 760px) {
  section { padding: 60px 0; }
  .hero { padding: 108px 0 130px; }
  nav.main {
    position: fixed; top: 64px; left: 14px; right: 14px;
    background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
    flex-direction: column; padding: 20px; gap: 16px; display: none;
  }
  nav.main.open { display: flex; }
  nav.main a.nav-link { color: var(--plum) !important; font-size: 16px; }
  .burger { display: block; }
  .slot { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
  .countdown { justify-content: center; text-align: center; }
  .cd-unit { min-width: 62px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 26px 20px; }
  .org-card { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hl-grid, .hl-grid.cols3, .spk2-grid { grid-template-columns: 1fr; }
}

/* ---------- Заглушка программы (до публикации) ---------- */
.prog-soon {
  background: var(--white); border-radius: 28px; box-shadow: var(--shadow);
  padding: 56px 40px; text-align: center; max-width: 760px; margin: 36px auto 0;
  position: relative; overflow: hidden;
}
.prog-soon::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--coral));
}
.ps-icon {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--pink-soft); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
}
.ps-icon svg { width: 40px; height: 40px; }
.prog-soon h3 { font-size: 24px; font-weight: 800; color: var(--plum); margin-bottom: 12px; }
.prog-soon p { color: var(--gray); font-size: 15.5px; max-width: 560px; margin: 0 auto 10px; }
.prog-soon .ps-accent { color: var(--ink); font-weight: 700; }
.ps-cta { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ps-note { font-size: 13px; color: var(--gray); max-width: 420px; }
@media (max-width: 640px) { .prog-soon { padding: 40px 22px; } }

/* ---------- Переключатель языков ---------- */
.lang-sw { display: inline-flex; gap: 2px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.lang-sw a { padding: 6px 12px; border-radius: 100px; font-size: 12.5px; font-weight: 800; color: var(--gray); text-decoration: none; transition: .15s; }
.lang-sw a.on { background: var(--plum); color: #fff; }
.lang-sw a:hover:not(.on) { color: var(--plum); }
@media (max-width: 760px) { .lang-sw { align-self: flex-start; } }
