/* ═══════════════════════════════════════════════
   UzNeyro Bot — dedicated bot landing
   ═══════════════════════════════════════════════ */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --card: #eef0f4;
  --text: #10131c;
  --muted: #6b7280;
  --border: #e6e8ef;
  --blue: #2f6fe0;
  --tg: #2f7fe8;
  --purple: #9a5fd8;
  --grad: linear-gradient(135deg, #5b6ee6, #9a5fd8);
  --r: 16px;
  --r-lg: 24px;
  --container: 1200px;
  --shadow-sm: 0 1px 2px rgba(16, 19, 28, .06), 0 1px 3px rgba(16, 19, 28, .05);
  --shadow: 0 10px 30px rgba(16, 19, 28, .08);
  --shadow-lg: 0 24px 60px rgba(16, 19, 28, .14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
:where(a, button, summary):focus-visible { outline: 2px solid var(--tg); outline-offset: 3px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.6rem; border: none; border-radius: 999px;
  font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .18s, transform .18s, box-shadow .18s, filter .18s;
}
.btn--tg { background: linear-gradient(135deg, #4a9df5, #2f7fe8); color: #fff; }
.btn--tg:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn--white:hover { background: #f4f6fb; transform: translateY(-1px); }
.btn--soft { background: var(--card); color: var(--text); }
.btn--soft:hover { background: #e4e7ef; }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn--xl { padding: 1.15rem 3rem; font-size: 1.15rem; box-shadow: 0 14px 34px rgba(0, 0, 0, .22); }
.btn--xl:hover { transform: translateY(-2px); }
@media (min-width: 900px) { .btn--xl { padding: 1.5rem 4.2rem; font-size: 1.35rem; } }
.btn--glow { position: relative; background: linear-gradient(135deg, #6d86e8 0%, #9a5fd8 55%, #c25bc7 100%); color: #fff; box-shadow: 0 16px 40px rgba(122, 95, 216, .55), 0 0 0 5px rgba(255, 255, 255, .18); animation: btnPulse 2.4s ease-out infinite; }
.btn--glow:hover { filter: brightness(1.08); box-shadow: 0 20px 48px rgba(122, 95, 216, .65), 0 0 0 6px rgba(255, 255, 255, .22); }
.btn--glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(154, 95, 216, .55); animation: btnRing 2.4s ease-out infinite; pointer-events: none; }
@keyframes btnPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes btnRing { 0% { box-shadow: 0 0 0 0 rgba(154, 95, 216, .45); } 70% { box-shadow: 0 0 0 18px rgba(154, 95, 216, 0); } 100% { box-shadow: 0 0 0 18px rgba(154, 95, 216, 0); } }
.btn--pulse { position: relative; animation: btnPulse 2.4s ease-out infinite; }
.btn--pulse::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(47, 127, 232, .5); animation: btnRingBlue 2.4s ease-out infinite; pointer-events: none; }
@keyframes btnRingBlue { 0% { box-shadow: 0 0 0 0 rgba(47, 127, 232, .5); } 70% { box-shadow: 0 0 0 18px rgba(47, 127, 232, 0); } 100% { box-shadow: 0 0 0 18px rgba(47, 127, 232, 0); } }
.btn--pulse-white { position: relative; animation: btnPulse 2.4s ease-out infinite; }
.btn--pulse-white::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); animation: btnRingWhite 2.4s ease-out infinite; pointer-events: none; }
@keyframes btnRingWhite { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .5); } 70% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); } }
.btn--block2 { width: 100%; }

/* ─── Navbar ─── */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; padding: 0 16px; }
.nav__inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1rem;
  background: #fff; border-radius: 999px; padding: .55rem .6rem .55rem 1.4rem; box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--text); }
.brand__mark { display: inline-flex; }
.brand__name { font-size: 1.2rem; letter-spacing: -.02em; }
/* AYRO bot brand */
.brand__ayro { border-radius: 50%; }
.brand__badge { background: var(--card); color: var(--muted); font-size: .78rem; font-weight: 700; padding: .16rem .5rem; border-radius: 8px; }
.nav__links { display: none; gap: 1.75rem; margin: 0 auto; }
.nav__links a { color: #3a3f4b; font-weight: 500; font-size: .9rem; transition: color .15s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }

/* Language switcher (flag dropdown) */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: none; border-radius: 999px;
  height: 44px; padding: 0 .5rem; cursor: pointer; transition: background .15s;
}
.lang__btn:hover { background: var(--bg-alt); }
.lang__flag { width: 24px; height: 18px; border-radius: 3px; overflow: hidden; display: block; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(16, 19, 28, .09); }
.lang__flag svg { display: block; width: 100%; height: 100%; }
.lang__chev { color: var(--muted); transition: transform .2s; }
.lang__btn[aria-expanded="true"] .lang__chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 194px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 6px; z-index: 200;
}
.lang__menu[hidden] { display: none; }
.lang__opt {
  display: flex; align-items: center; gap: .65rem; width: 100%;
  background: transparent; border: none; border-radius: 10px; padding: .6rem .7rem;
  font: inherit; font-weight: 500; font-size: .95rem; color: var(--text); cursor: pointer; text-align: left;
  transition: background .12s, color .12s;
}
.lang__opt:hover { background: var(--bg-alt); }
.lang__opt[aria-checked="true"] { color: var(--blue); font-weight: 700; background: rgba(47, 111, 224, .08); }
@media (min-width: 900px) { .nav__links { display: flex; } .nav__actions { margin-left: 0; } .brand { flex: 1 1 0; } .nav__actions { flex: 1 1 0; justify-content: flex-end; } }
.nav__actions .btn--tg .btn__pl { display: none; }
@media (max-width: 560px) { .nav__inner { padding: .5rem .5rem .5rem .9rem; gap: .5rem; } .brand__name { display: none; } .nav__actions { gap: .35rem; } .nav__actions .btn--tg { padding: .58rem .7rem; } .nav__actions .btn--tg .btn__txt { display: none; } .nav__actions .btn--tg .btn__pl { display: block; } }
.nav__back { display: none; }
@media (max-width: 640px) {
  .nav { top: 0; padding: 0; }
  .nav__inner { display: none; }
  .nav__back {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fff; border-radius: 999px; box-shadow: var(--shadow);
    padding: .55rem 1rem .55rem .8rem; margin: 12px 0 0 16px;
    font-weight: 700; font-size: .92rem; color: var(--text);
  }
}

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden; padding: 130px 0 90px;
  background: #3b3f9c url("../assets/herobg.svg") center / cover no-repeat;
}
@media (max-width: 640px) { .hero { padding-top: 78px; } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28, 26, 84, .38) 0%, rgba(28, 26, 84, .08) 52%, transparent 74%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 56px; background: var(--bg); border-radius: 44px 44px 0 0; z-index: 3; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 1rem; } }
.hero__text { color: #fff; max-width: 560px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: #fff; text-wrap: balance; }
.hero__sub { border-left: 2px solid rgba(255, 255, 255, .55); padding-left: 1rem; margin: 1.5rem 0 2rem; color: rgba(255, 255, 255, .92); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 450px; }
.hero__proof { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__proof[hidden] { display: none; }
.hero__stat { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; padding: .55rem 1.1rem .55rem .85rem; backdrop-filter: blur(6px); }
.hero__stat::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74, 222, 128, .25); }
.hero__stat b { color: #fff; font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.hero__stat span { color: rgba(255, 255, 255, .82); font-size: .85rem; font-weight: 600; }
.hero__media { display: flex; justify-content: center; }
.hero__media img { width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 24px 45px rgba(18, 18, 55, .32)); }
.hero__ctarow { position: relative; z-index: 2; display: flex; justify-content: center; margin-top: clamp(2rem, 5vw, 3rem); }

/* ─── Sections ─── */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
#how.section { padding-top: clamp(.5rem, 2vw, 1rem); }
.head { text-align: center; max-width: 700px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); }
.head h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; text-wrap: balance; }
.head p { color: var(--muted); font-size: 1.02rem; margin-top: .6rem; }
@media (max-width: 640px) { .head--how { margin-bottom: 1.1rem; } }
.head--light h2 { color: #fff; }
.head--light p { color: rgba(255, 255, 255, .88); }

/* ─── Возможности (bento) ─── */
.bento { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .bento { grid-template-columns: 1fr 1.3fr 1fr; grid-auto-rows: 1fr; }
  .fcard--a { grid-column: 1; grid-row: 1 / 3; }
  .fcard--b { grid-column: 2; grid-row: 1; }
  .fcard--c { grid-column: 2; grid-row: 2; }
  .fcard--d { grid-column: 3; grid-row: 1 / 3; }
}
.fcard { border-radius: var(--r-lg); padding: 1.9rem; color: #fff; display: flex; flex-direction: column; overflow: hidden; }
.fcard--a { background: linear-gradient(155deg, #5b6fe6 0%, #8a63dd 48%, #c25bc7 100%); }
.fcard--b { background: linear-gradient(118deg, #6d86e8, #9a6fe0); }
.fcard--c { background: #fff; color: var(--text); border: 1px solid var(--border); }
.fcard--d { background: linear-gradient(160deg, #5878e6, #48a6d6); }
.fico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(255, 255, 255, .18); margin-bottom: 1.1rem; }
.fico svg { width: 24px; height: 24px; flex-shrink: 0; }
.fico--purple { background: rgba(154, 95, 216, .12); }
.fcard--c .fico { background: rgba(47, 111, 224, .1); }
.fbadge { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .5rem; opacity: .85; }
.fbadge--purple { color: var(--purple); }
.fcard__title { font-size: 1.35rem; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; margin-bottom: .9rem; }
.fcard__d { font-size: .96rem; line-height: 1.55; }
.fcard--a .fcard__d, .fcard--b .fcard__d, .fcard--d .fcard__d { color: rgba(255, 255, 255, .9); }
.fcard--a, .fcard--d { display: flex; flex-direction: column; }
.fcard__shot { width: calc(100% + 2px); margin: 1.4rem -1px -1.9rem; display: block; border-radius: 0 0 22px 22px; object-fit: contain; object-position: bottom; margin-top: auto; min-height: 0; flex-shrink: 1; }
.fcard--c .fcard__d { color: var(--muted); }

/* ─── Как это работает ─── */
/* ─── Возможности (howdetail cards) ─── */
.howdetail { display: grid; gap: 2rem; align-items: center; max-width: 980px; margin: 3.5rem auto 0; grid-template-columns: 1fr; }
#how .howdetail:first-child { margin-top: 0; }
@media (min-width: 800px) { .howdetail { grid-template-columns: .8fr 1.2fr; gap: 3rem; } }
.howdetail + .howdetail { margin-top: clamp(3rem, 6vw, 4.5rem); }
.howdetail--rev .howdetail__text { order: -1; }
@media (min-width: 800px) { .howdetail--rev { grid-template-columns: 1.2fr .8fr; } .howdetail--rev .howdetail__text { order: 2; } .howdetail--rev .howdetail__media { order: 1; } }
.howdetail__text { text-align: center; }
.howdetail__text h3 { font-size: 1.5rem; font-weight: 800; margin: .8rem 0 .4rem; letter-spacing: -.01em; }
.howdetail__d { color: var(--muted); }
.howdetail__media img { width: 100%; height: auto; border-radius: var(--r-lg); }
.howdetail__cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ─── Сначала бесплатно (pricing) ─── */
.pricing { padding: clamp(3.5rem, 8vw, 6rem) 0; background: linear-gradient(150deg, #b06fe4 0%, #7d6ee6 52%, #5b62d8 100%); }
.pcard { max-width: 460px; margin: 0 auto; background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); overflow: hidden; }
.pcard__head { background: #7a6fe4 url("../assets/paybg.svg") top center / cover no-repeat; color: #fff; padding: 1.8rem 1.8rem 1.8rem; }
.pcard__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.pcard__access { font-weight: 700; font-size: 1rem; letter-spacing: .04em; }
.pcard__badge { font-size: .8rem; font-weight: 600; color: rgba(255, 255, 255, .9); }
.pcard__amount { font-size: 2.5rem; font-weight: 800; margin: .5rem 0 1.5rem; }
.pcard__head .btn { position: relative; z-index: 2; margin-bottom: -2.6rem; }
.pcard__list { list-style: none; padding: 3.6rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pcard__list li { display: flex; gap: .8rem; align-items: flex-start; color: #3a4152; font-size: .95rem; }
.pcard__note { text-align: center; color: var(--muted); font-size: .85rem; padding: 0 1.8rem 1.8rem; margin-top: -.6rem; }
.pchk { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: .9rem; }
.faq__item { background: var(--card); border-radius: 20px; transition: border-radius .2s; }
@media (min-width: 760px) { .faq__item:not([open]) { border-radius: 999px; } }
.faq__item[open] { border-radius: var(--r-lg); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.8rem; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--text); flex-shrink: 0; line-height: 1; }
.faq__item[open] summary::after { content: "×"; }
.faq__item p { padding: 0 1.8rem 1.5rem; color: var(--muted); }

/* ─── CTA band ─── */
.ctaband { background: #1a49d0 url("../assets/ctabg.svg") center / cover no-repeat; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.ctaband__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.6rem; }
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.5rem); font-weight: 800; max-width: 640px; }

/* ─── Footer ─── */
.foot { background: var(--bg-alt); padding: clamp(3rem, 6vw, 4.5rem) 0 0; border-top: 1px solid var(--border); }
.foot__grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.foot__brand p { color: var(--muted); font-size: .9rem; margin-top: .5rem; max-width: 320px; }
.foot__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.foot__social-ico { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--border); color: var(--text); transition: background .15s, color .15s, transform .15s; }
.foot__social-ico:hover { background: #111318; color: #fff; transform: translateY(-2px); }
.foot__col { display: flex; flex-direction: column; gap: .85rem; }
.foot__title { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.foot__col a { color: var(--text); font-size: .95rem; transition: color .15s; }
.foot__col a:hover { color: var(--blue); }
.foot__bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.foot__copy { color: var(--muted); font-size: .86rem; }
@media (min-width: 640px) {
  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 980px) { .foot__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .btn:hover { transform: none; }
  .btn--glow, .btn--glow::after, .btn--pulse, .btn--pulse::after, .btn--pulse-white, .btn--pulse-white::after { animation: none; }
}

/* ─── Кнопка «вверх» ─── */
.totop { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 46px; height: 46px; border: none; border-radius: 50%; background: var(--grad); color: #fff; cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s, transform .2s, filter .2s; }
.totop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover { filter: brightness(1.06); transform: translateY(-2px); }

/* ─── Окно выбора бота ─── */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(14, 16, 34, .55); }
.modal__dialog { position: relative; background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg); max-width: 620px; width: 100%; padding: 2.2rem; animation: modalIn .2s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.modal__x { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border: none; background: var(--card); border-radius: 50%; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--text); }
.modal__x:hover { filter: brightness(.96); }
.modal__title { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; text-align: center; letter-spacing: -.02em; }
.modal__sub { text-align: center; color: var(--muted); margin: .4rem 0 1.6rem; }
.modal__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .modal__grid { grid-template-columns: 1fr 1fr; } }
.pchoice { display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: 18px; transition: border-color .15s, transform .15s, box-shadow .15s; }
.pchoice:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.pchoice__ico { width: 52px; height: 52px; border-radius: 14px; overflow: hidden; display: grid; place-items: center; margin-bottom: .3rem; }
.pchoice__ico img { width: 100%; height: 100%; object-fit: cover; }
.pchoice__ico--ayro { border-radius: 50%; }
.pchoice__ico--edu { background: linear-gradient(135deg, #11998e, #38ef7d); }
.pchoice__ico--edu img { width: 62%; height: 62%; object-fit: contain; }
.pchoice__name { font-weight: 800; font-size: 1.15rem; }
.pchoice__desc { color: var(--muted); font-size: .92rem; flex: 1; }
.pchoice__go { font-weight: 700; color: var(--blue); font-size: .92rem; }

/* ─── Окно бота: EDU в разработке ─── */
button.pchoice { background: #fff; font: inherit; text-align: left; width: 100%; cursor: pointer; }
.pchoice__go--soon { color: var(--muted); }
.botview[data-view="soon"] { text-align: center; }
.soon__ico { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, #11998e, #38ef7d); display: grid; place-items: center; margin: 0 auto 1.1rem; }
.soon__ico img { width: 60%; height: 60%; object-fit: contain; }
.soon__actions { display: flex; flex-direction: column; gap: .7rem; align-items: center; max-width: 320px; margin: 1.6rem auto 0; }
.soon__cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: .9rem 1.6rem; border-radius: 999px; font-weight: 700; background: #111318; color: #fff; transition: background .15s, transform .15s; }
.soon__cta:hover { background: #000; transform: translateY(-1px); }
.soon__back { background: none; border: none; color: var(--muted); font: inherit; font-weight: 600; cursor: pointer; padding: .3rem; }
.soon__back:hover { color: var(--text); }

.pchoice__ico--edu, .soon__ico { border-radius: 50%; }

