/* ===== Fonts ===== */
@font-face {
  font-family: 'Mazzard Soft M';
  src: url('../fonts/MazzardSoftM-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard Soft M';
  src: url('../fonts/MazzardSoftM-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard Soft M';
  src: url('../fonts/MazzardSoftM-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard Soft M';
  src: url('../fonts/MazzardSoftM-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* ===== Base ===== */
:root {
  --orange: #ffb143;
  --teal: #00ccca;
  --teal-dark: #08cecc;
  --purple: #a291ff;
  --purple-btn: #9e97f5;
  --pink: #ffa1e8;
  --pink-light: #ffedfb;
  --cream: #fff0db;
  --cream-circle: #ffe2b8;
  --gray: #f2f2f2;
  --footer-bg: #9e97f6;
  --footer-pill: #cfccfb;
  --footer-dark: #2d106a;
  --text: #000;
  --line: #e9e9e9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Mazzard Soft M', -apple-system, 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
  background: #fff;
  min-width: 1280px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, textarea { font: inherit; border: none; outline: none; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

.container {
  width: 1110px;
  margin: 0 auto;
  position: relative;
}

.h2 {
  font-size: 41px;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
}

.section-sub {
  font-size: 24px;
  text-align: center;
  margin-top: 15px;
}

/* bullets */
.bullets { list-style: none; }
.bullets li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
  font-size: 20px;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.bullets--orange li::before { background: var(--orange); }
.bullets--pink li::before { background: var(--pink); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #000;
}
.btn img { width: 24px; height: 24px; }
.btn--purple { background: var(--purple-btn); }
.btn--white { background: #fff; box-shadow: 0 20px 30px rgba(255, 255, 255, 0.25); }

/* =================== HERO =================== */
.hero {
  position: relative;
  height: 618px;
  background: #fff;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
.hero__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 618px;
  transform: translateX(-50%);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  position: absolute;
  left: -309px;
  top: 0;
  width: 2560px;
  height: 618px;
  max-width: none;
}
.hero__phone {
  position: absolute;
  left: 406px;
  top: 164px;
  width: 475.5px;
  height: 454.5px;
  max-width: none;
}

.header {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 10;
}
.header__pill {
  width: 1090px;
  height: 84px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
}
.header__logo img { width: 215px; height: 50px; }
.header__nav {
  display: flex;
  gap: 30px;
  padding-right: 42px;
}
.header__nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.2s;
}
.header__nav a:hover { opacity: 0.75; }

.hero__content {
  position: absolute;
  left: 1015px;
  top: 318px;
}
.hero__logo { width: 295px; height: 66px; }
.hero__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 8px;
}
.hero__btn {
  margin-top: 32px;
  width: 270px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 10px;
  background: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s;
}
.hero__btn:hover { transform: translateY(-2px); }
.hero__btn-icon { width: 41px; height: 41px; }

/* =================== СОЗДАЕМ ИСКРУ =================== */
.sozdaem { padding-top: 150px; }
.sozdaem__cols {
  position: relative;
  margin-top: 55px;
  min-height: 470px;
}
.sozdaem__text { width: 554px; }
.sozdaem__text > p { margin-bottom: 30px; }
.sozdaem__lead { margin-bottom: 7px !important; }
.sozdaem__callout {
  margin-top: 14px;
  width: 542px;
  min-height: 105px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 30px;
  font-weight: 700;
  font-size: 20px;
}
.sozdaem__media {
  position: absolute;
  left: 632px;
  top: -16px;
  width: 434px;
  height: 428px;
}
.sozdaem__decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 434px;
  height: 428px;
  max-width: none;
}
.sozdaem__man {
  position: absolute;
  z-index: 1;
  left: 53px;
  top: -32px;
  width: 340px;
  max-width: none;
}
.sozdaem__sticker {
  position: absolute;
  z-index: 2;
  left: 348px;
  top: 76px;
  width: 110px;
  height: 110px;
}

/* =================== FEATURES =================== */
.features { padding-top: 150px; }
.features__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 546px);
  gap: 17px 18px;
  justify-content: center;
}
.feature-card {
  height: 276px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray);
  border-radius: 35px;
}
.feature-card__media {
  flex: 0 0 180px;
  height: 236px;
  background: var(--tile);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__media img { width: 180px; height: 180px; }
.feature-card__text { width: 306px; }
.feature-card__text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
.feature-card__text p { font-size: 20px; }

/* =================== REGISTER =================== */
.register { padding-top: 150px; }
.register__cols {
  position: relative;
  min-height: 610px;
  margin-top: 0;
}
.register__media { position: absolute; left: 0; top: 0; }
.register__flame {
  position: absolute;
  left: -20px;
  top: 100px;
  width: 250px;
  transform: rotate(17deg);
}
.register__phone {
  position: relative;
  z-index: 1;
  margin-top: 125px;
  width: 389px;
}
.register__appicon {
  position: absolute;
  z-index: 2;
  left: 251px;
  top: 432px;
  width: 138px;
}
.register__body {
  margin-left: 453px;
  padding-top: 132px;
  min-height: 610px;
}
.register__steps {
  position: relative;
  width: 578px;
  height: 45px;
  background: var(--gray);
  border-radius: 20px;
}
.register__steps-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 179px;
  height: 45px;
  border-radius: 20px;
  background: #dddbff;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.register__step {
  position: absolute;
  top: 0;
  height: 45px;
  border-radius: 20px;
  font-size: 16px;
  background: transparent;
  z-index: 1;
  transition: opacity 0.2s;
}
.register__step:not(.is-active):hover { opacity: 0.6; }
.register__step:nth-of-type(1) { left: 0; width: 179px; }
.register__step:nth-of-type(2) { left: 197px; width: 183px; }
.register__step:nth-of-type(3) { left: 397px; width: 183px; }
.register__info {
  margin-left: 9px;
  margin-top: 40px;
  width: 546px;
}
.register__panel { display: none; }
.register__panel.is-active {
  display: block;
  animation: panel-in 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.register__note { margin-top: 15px; }
.register__list { margin-top: 15px; }
.register__list li {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.register__small {
  margin-top: 15px;
  font-size: 16px;
  opacity: 0.65;
}
.register__info h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  width: 420px;
}
.register__info > p {
  margin-top: 15px;
  width: 452px;
}
.register__stores {
  margin-top: 36px;
  display: flex;
  gap: 15px;
}
.register__stores a {
  width: 30px;
  height: 30px;
  background: #626262;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register__stores img { width: 20px; height: 20px; }
.register__info .btn { margin-top: 20px; width: 193px; }

/* =================== QR =================== */
.qr { padding-top: 130px; }
.qr__banner {
  position: relative;
  margin: 45px auto 0;
  width: 961px;
  height: 314px;
  border-radius: 40px;
}
.qr__stripes {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}
.qr__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qr__card {
  position: absolute;
  z-index: 2;
  left: 54px;
  top: 59px;
  width: 206px;
  height: 195px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr__card img { 
  width: 160px; 
  height: 160px; 
}
.qr__text {
  position: absolute;
  z-index: 2;
  left: 283px;
  top: 66px;
  width: 370px;
}
.qr__text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}
.qr__text p {
  margin-top: 20px;
  width: 250px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.05;
}
.qr__stores {
  margin-top: 26px;
  display: flex;
  gap: 15px;
}
.qr__stores img { width: 40px; height: 40px; }
.qr__iphone {
  position: absolute;
  z-index: 3;
  left: 683px;
  top: -18px;
  width: 222px;
  height: 332px;
  object-fit: cover;
  object-position: top;
}

/* =================== ACCORDION =================== */
.accordion { width: 537px; }
.accordion__item { margin-bottom: 20px; }
.accordion__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 18px 0 35px;
  border-radius: 20px;
}
.accordion__item summary span:first-child {
  font-size: 24px;
  font-weight: 600;
}
.accordion__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 34px;
}
.accordion__toggle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translate(-60%, -50%) rotate(-45deg);
  transition: transform 0.2s;
}
.accordion__item[open] .accordion__toggle::before {
  transform: translate(-50%, -65%) rotate(45deg);
}
.accordion--pink .accordion__item summary { background: var(--pink-light); }
.accordion--pink .accordion__toggle { background: var(--pink); }
.accordion--cream .accordion__item summary { background: var(--cream); }
.accordion--cream .accordion__toggle { background: var(--cream-circle); }
.accordion--cream .accordion__toggle::before {
  border-color: var(--orange);
}
.accordion__body {
  padding: 35px 0 15px 35px;
  width: 537px;
}
.accordion__body > p { margin-bottom: 25px; width: 467px; }
.accordion__body .bullets li { margin-bottom: 12px; width: 440px; }

/* =================== TOPUP =================== */
.topup { padding-top: 130px; }
.topup__cols {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.topup__media {
  width: 546px;
  height: 534px;
  background: var(--pink);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topup__media img { width: 100%; height: 100%; object-fit: contain; }

/* =================== EXCHANGE =================== */
.exchange { padding-top: 150px; }
.exchange__cols {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.exchange__media {
  width: 546px;
  height: 534px;
  background: var(--orange);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exchange__media img { width: 100%; height: 100%; object-fit: contain; }
.exchange__body { width: 537px; padding-top: 0; }
.exchange__lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  width: 438px;
  padding-left: 10px;
  margin-bottom: 25px;
}

/* =================== RATES =================== */
.rates { padding-top: 150px; }
.rates__cols {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}
.rates__table { width: 659px; }
.rates__head {
  display: grid;
  grid-template-columns: 383px 173px 1fr;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  color: #9e9eaf;
}
.rates__row {
  display: grid;
  grid-template-columns: 383px 173px 1fr;
  align-items: center;
  height: 64px;
  border-bottom: 1px solid var(--line);
}
.rates__row:last-of-type { border-bottom: none; }
.rates__cur {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 600;
}
.rates__cur img {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 57, 0.1);
}
.rates__val {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
}
.rates__val img { width: 9px; height: 9px; }
.rates__updated {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #c5c5c5;
}
.rates__tip { position: relative; width: 361px; }
.rates__tip-card {
  width: 361px;
  height: 410px;
  padding: 35px;
  background: #e7ffff;
  border-radius: 40px;
}
.rates__tip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 40px;
  background: var(--teal-dark);
  border-radius: 20px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  filter: drop-shadow(0 10px 10px #c7d7d7);
}
.rates__tip-card h3 {
  margin-top: 25px;
  width: 295px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}
.rates__tip-card p {
  margin-top: 15px;
  width: 274px;
  font-size: 20px;
}
.rates__coin { position: absolute; }
.rates__coin--1 {
  left: 235px;
  top: 362px;
  width: 68px;
  height: 89px;
}
.rates__coin--2 {
  left: 141px;
  top: 440px;
  width: 83px;
  height: 74px;
}

/* =================== NEWS =================== */
.news { padding-top: 150px; }
.news__cards {
  position: relative;
  margin-top: 20px;
  height: 380px;
}
.news-card {
  position: absolute;
  width: 379px;
  height: 245px;
  padding: 34px 40px;
  border-radius: 36px;
}
.news-card h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  width: 268px;
}
.news-card p {
  margin-top: 24px;
  font-size: 20px;
  width: 283px;
}
.news-card--pink { left: 12px; top: 99px; background: var(--pink); transform: rotate(1.63deg); }
.news-card--teal { left: 369px; top: 131px; background: var(--teal); transform: rotate(-2.32deg); }
.news-card--purple { left: 727px; top: 87px; background: var(--purple); transform: rotate(2.15deg); }
.news__fire {
  position: absolute;
  left: 612px;
  top: 75px;
  width: 122px;
  transform: rotate(-16.6deg);
  z-index: 5;
  pointer-events: none;
}
.news__dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  display: none;
}
.news__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9d9d9;
  padding: 0;
}
.news__dots button.is-active { background: var(--teal); }

/* =================== IDEAS =================== */
.ideas { padding-top: 150px; }
.ideas__panel {
  position: relative;
  margin-top: 55px;
  padding: 80px 0;
  background: var(--pink-light);
  border-radius: 40px;
}
.ideas__intro {
  position: relative;
  height: 407px;
}
.ideas__intro-text {
  position: absolute;
  left: 141px;
  top: 0;
  width: 440px;
}
.ideas__intro-lead { margin-top: 25px; margin-bottom: 22px; }
.ideas__intro-text .bullets li { margin-bottom: 14px; }
.ideas__collage {
  position: absolute;
  left: 587px;
  top: -33px;
  width: 386px;
  max-width: none;
}

.idea-form {
  position: relative;
  width: 818px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 33px 70px;
}
.idea-form--purple {
  background: var(--purple-btn);
  box-shadow: 0 15px 30px rgba(145, 145, 145, 0.4);
}
.idea-form--white {
  margin-top: 24px;
  padding: 43px 68px 30px;
  background: #fff;
}
.idea-form__head {
  width: 563px;
  margin-bottom: 24px;
}
.idea-form--purple .idea-form__head h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
}
.idea-form--white .idea-form__head { margin-bottom: 25px; }
.idea-form--white .idea-form__head h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.idea-form__head p { margin-top: 15px; font-size: 20px; }
.idea-form__row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.idea-form__row input {
  width: 335px;
  height: 63px;
  padding: 0 23px;
  background: var(--gray);
  border-radius: 20px;
  font-size: 20px;
}
.idea-form__row input::placeholder,
.idea-form textarea::placeholder { color: rgba(0, 0, 0, 0.5); }
.idea-form textarea {
  display: block;
  width: 678px;
  height: 201px;
  padding: 19px 23px;
  background: var(--gray);
  border-radius: 20px;
  font-size: 20px;
  resize: none;
}
.idea-form__bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 678px;
  margin-top: 30px;
}
.idea-form__bottom .btn { width: 335px; flex: 0 0 335px; }
.idea-form--white .idea-form__row { margin-bottom: 0; }

/* рейтинг 1-5 звезд */
.rating {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.rating__label { font-size: 20px; }
.rating__stars { display: flex; gap: 8px; }
.rating__star {
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  clip-path: polygon(50% 0%, 63% 33%, 98% 37%, 72% 60%, 79% 95%, 50% 76%, 21% 95%, 28% 60%, 2% 37%, 37% 33%);
  transition: background 0.2s, transform 0.15s;
}
.rating__star:hover { transform: scale(1.18); }
.rating__star.is-filled { background: var(--orange); }

.field-error {
    border: 1px solid #ff4d4f !important;
}

.rating-error {
    display: none;
    margin-top: 10px;
    color: #FF4D4F;
    font-size: 14px;
    font-weight: 500;
}

.rating-error.active {
    display: block;
}

.agree__box.field-error {
    border: 2px solid #FF4D4F !important;
    box-shadow: 0 0 0 3px rgba(255,77,79,.15);
}

.field-error-text {
    color: #ff4d4f;
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.3;
}

.shake {
    animation: shake .35s;
}

@keyframes shake {
    0%,100% {transform: translateX(0);}
    20% {transform: translateX(-4px);}
    40% {transform: translateX(4px);}
    60% {transform: translateX(-4px);}
    80% {transform: translateX(4px);}
}

/* прикрепление файлов */
.attach { margin-top: 8px; width: 678px; }
.attach__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 63px;
  padding: 0 23px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-size: 20px;
  color: #000;
  transition: background 0.2s, border-color 0.2s;
}
.attach__btn:hover { background: rgba(255, 255, 255, 0.28); }
.attach__btn.is-dragover {
  background: rgba(255, 255, 255, 0.45);
  border-color: #fff;
  border-style: solid;
}
.attach__btn.is-dragover * { pointer-events: none; }
.attach__btn svg { width: 22px; height: 22px; flex: 0 0 22px; }
.attach__btn em {
  margin-left: auto;
  font-style: normal;
  font-size: 14px;
  opacity: 0.55;
}
.attach__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.attach__list:empty { margin-top: 0; }
.attach__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  animation: chip-in 0.25s ease;
}
@keyframes chip-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: none; }
}
.attach__chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.attach__chip-size { opacity: 0.5; flex: 0 0 auto; }
.attach__chip button {
  padding: 0 2px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.15s, color 0.15s;
}
.attach__chip button:hover { opacity: 1; color: #cc3d00; }
.attach__error[hidden] { display: none; }
.attach__error {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #cc3d00;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}
.idea-form__rocket {
  position: absolute;
  left: 684px;
  top: 10px;
  width: 176px;
  max-width: none;
  z-index: 2;
}
.idea-form__pencil {
  position: absolute;
  left: 679px;
  top: -3px;
  width: 184px;
  max-width: none;
  z-index: 2;
}

/* agree checkbox */
.agree {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
}
.agree input { display: none; }
.agree__box {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  margin-top: 4px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
.idea-form--white .agree__box { background: var(--gray); }
.agree__box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 11px;
  height: 7px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
.agree input:checked + .agree__box::after { opacity: 1; }
.agree__label {
  width: 250px;
  font-size: 14px;
}
.agree__label a { text-decoration: underline; }

/* =================== FAQ =================== */
.faq { padding-top: 150px; }
.faq__bubbles {
  margin: 0 auto 24px;
  width: 177px;
}
.faq__list { margin-top: 55px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 31px 0;
}
.faq__item summary span:first-child {
  font-size: 24px;
  font-weight: 600;
}
.faq__item[open] summary span:first-child { color: var(--orange); }
.faq__item summary span:first-child { transition: color 0.25s; }
.faq__toggle {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-circle);
  position: relative;
}
.faq__toggle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2.5px solid var(--orange);
  border-top: 2.5px solid var(--orange);
  transform: translate(-60%, -50%) rotate(45deg);
  transition: transform 0.2s;
}
.faq__item[open] .faq__toggle { background: var(--orange); }
.faq__item[open] .faq__toggle::before {
  border-color: #fff;
  transform: translate(-50%, -65%) rotate(135deg);
}
.faq__answer { padding: 0 0 40px; }
.faq__answer p { width: 1002px; font-size: 20px; }

/* =================== FOOTER =================== */
.footer {
  margin-top: 150px;
  background: var(--footer-bg);
  padding: 95px 0 90px;
}
.footer__inner {
  width: 1620px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__logo { width: 215px; height: 50px; }
.footer__legal {
  margin-top: 45px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--footer-dark);
}
.footer__copy {
  margin-top: 25px;
  font-size: 14px;
  color: var(--footer-dark);
}
.footer__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--footer-dark);
}
.footer__pills {
  margin: 15px 0 30px;
  display: flex;
  gap: 12px;
}
.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  background: var(--footer-pill);
  border-radius: 15px;
  color: var(--footer-dark);
  font-size: 19px;
  transition: background 0.2s;
}
.footer__pill:hover { background: #dbd8fd; }
.footer__pill svg { width: 22px; height: 22px; }
.footer__link {
  display: inline-block;
  margin-top: 15px;
  font-size: 16px;
  color: var(--footer-dark);
}
.footer__link:hover { text-decoration: underline; }
.footer__icons {
  margin: 15px 0 30px;
  display: flex;
  gap: 12px;
}
.footer__icon {
  width: 44px;
  height: 44px;
  background: var(--footer-pill);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-dark);
  transition: background 0.2s;
}
.footer__icon:hover { background: #dbd8fd; }
.footer__icon svg { width: 22px; height: 22px; }

/* =================== Responsive fallback =================== */

/* rate arrows orientation */
.rates__val .arr--up { transform: rotate(90deg); }
.rates__val .arr--down { transform: rotate(-90deg); }

/* =================== Микроанимации =================== */

/* 1. Аккордеоны и FAQ: стрелки и кружки */
.accordion__toggle,
.faq__toggle {
  transition: background 0.25s, transform 0.2s;
}
.accordion__item summary:hover .accordion__toggle,
.faq__item summary:hover .faq__toggle {
  transform: scale(1.1);
}
.accordion__toggle::before,
.faq__toggle::before {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s;
}
.accordion__body,
.faq__answer { overflow: hidden; }

/* 2. Карточки преимуществ */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.feature-card__media { overflow: hidden; }
.feature-card__media img { transition: transform 0.3s ease; }
.feature-card:hover .feature-card__media img { transform: scale(1.08); }

/* 3. Появление при скролле */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* 4. Кнопки */
.btn,
.hero__btn,
.footer__pill,
.footer__icon,
.register__stores a,
.qr__stores a {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover,
.footer__pill:hover,
.footer__icon:hover,
.register__stores a:hover,
.qr__stores a:hover {
  transform: translateY(-2px);
}
.btn:active,
.hero__btn:active {
  transform: translateY(0) scale(0.98);
}
.btn--purple:hover { box-shadow: 0 10px 24px rgba(158, 151, 245, 0.5); }
.btn--white:hover { box-shadow: 0 10px 24px rgba(255, 255, 255, 0.35); }
.btn img { transition: transform 0.2s ease; }
.btn:hover img { transform: translateX(4px); }

/* 6. Карточки «Что нового» и точки */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: rotate(var(--tilt, 0deg));
}
.news-card--pink { --tilt: 1.63deg; }
.news-card--teal { --tilt: -2.32deg; }
.news-card--purple { --tilt: 2.15deg; }
.news-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.news__dots button {
  transition: background 0.3s, transform 0.2s;
}
.news__dots button:hover { transform: scale(1.3); }

/* 7. Таблица курсов */
.rates__row { transition: background 0.2s; }
.rates__row:hover { background: #fafafa; }
@keyframes arr-pulse-up {
  0%, 100% { transform: rotate(90deg) scale(1); }
  50% { transform: rotate(90deg) scale(1.3); }
}
@keyframes arr-pulse-down {
  0%, 100% { transform: rotate(-90deg) scale(1); }
  50% { transform: rotate(-90deg) scale(1.3); }
}
.rates__row:hover .arr--up { animation: arr-pulse-up 1s ease-in-out infinite; }
.rates__row:hover .arr--down { animation: arr-pulse-down 1s ease-in-out infinite; }

/* 8. Парение декоративных 3D-элементов */
@keyframes floaty {
  0%, 100% { transform: var(--base, none) translateY(0); }
  50% { transform: var(--base, none) translateY(-9px); }
}
.idea-form__rocket { animation: floaty 5s ease-in-out infinite; }
.idea-form__pencil { animation: floaty 6s ease-in-out 0.8s infinite; }
.news__fire { --base: rotate(-16.6deg); animation: floaty 4.5s ease-in-out infinite; }
.faq__bubbles { animation: floaty 5.5s ease-in-out infinite; }
.rates__coin--1 { animation: floaty 5s ease-in-out 0.4s infinite; }
.rates__coin--2 { animation: floaty 6s ease-in-out 1.2s infinite; }
.register__appicon { animation: floaty 5s ease-in-out infinite; }
.sozdaem__sticker { animation: floaty 5s ease-in-out 0.6s infinite; }

/* 9. Хедер: подчеркивание пунктов */
.header__nav a { position: relative; }
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header__nav a:hover { opacity: 1; }
.header__nav a:hover::after { transform: scaleX(1); }

/* 10. Чекбокс: прорисовка галочки */
.agree__box::after {
  transition: opacity 0.1s, clip-path 0.3s ease 0.05s;
  clip-path: inset(-20% 110% -20% -20%);
}
.agree input:checked + .agree__box::after {
  opacity: 1;
  clip-path: inset(-20% -20% -20% -20%);
}
.agree__box { transition: transform 0.15s; }
.agree input:checked + .agree__box { transform: scale(1.08); }

/* Отключение анимаций по системной настройке */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =================== МОБИЛЬНЫЙ АДАПТИВ =================== */

/* элементы только для мобильной версии */
.mobile-only,
.header__burger,
.qr__mobile,
.news-card--orange,
.hero__bg-m,
.hero__phone-m,
.features__dots,
.mobile-menu { display: none; }

/* база для телефонов и планшетов в портретной ориентации */
@media (max-width: 1023px) {
  body { min-width: 320px; font-size: 16px; }
  .container { width: auto; padding: 0 30px; }
  .h2 { font-size: 28px; line-height: 1; }
  .section-sub { font-size: 16px; margin-top: 15px; }
  .mobile-only { display: block; }
  b.mobile-only, span.mobile-only, svg.mobile-only { display: inline-block; }

  /* ---------- header (sticky) ---------- */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* выше оверлея меню: бургер остается на виду и превращается в крестик */
    z-index: 110;
  }
  .header__pill {
    width: 100%;
    height: 75px;
    padding: 0 18px;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
  }
  .header.is-scrolled .header__pill {
    background: rgba(158, 151, 245, 0.92);
  }
  .header__logo img { width: 168px; height: 39px; }
  .header__nav { display: none; }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 2px;
  }
  .header__burger span {
    display: block;
    height: 3.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
  }
  /* полоски сходятся в центр и складываются в крестик */
  .header__burger.is-open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
  .header__burger.is-open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

  /* ---------- мобильное меню ---------- */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--purple);
    /* сверху пропускаем шапку — она лежит поверх меню */
    padding: 115px 30px 40px;
    overflow-y: auto;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 0 10px;
  }
  .mobile-menu__nav a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
  }
  .mobile-menu__nav a::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2.5px solid currentColor;
    border-top: 2.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .mobile-menu__nav a:active::after { transform: translateX(4px) rotate(45deg); }

  /* ---------- hero ---------- */
  .hero {
    height: 776px;
    border-radius: 0 0 32px 32px;
  }
  .hero__stage {
    width: 100%;
    left: 0;
    transform: none;
    height: 776px;
  }
  .hero__bg-img,
  .hero__phone { display: none; }
  .hero__bg { background: var(--purple); }
  .hero__bg-m {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__phone-m {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 387px;
    max-width: 100%;
    z-index: 1;
  }
  .hero__content {
    left: 46px;
    right: 46px;
    top: 161px;
    z-index: 1;
  }
  .hero__logo { width: 235px; height: 53px; }
  .hero__subtitle {
    font-size: 22px;
    margin-top: 10px;
    width: 250px;
    line-height: 1.14;
  }
  .hero__btn {
    margin-top: 28px;
    width: 100%;
    height: 79px;
    font-size: 19px;
    border-radius: 26px;
    gap: 18px;
    padding-left: 10px;
  }
  .hero__btn-icon { width: 58px; height: 58px; }

  /* ---------- создаем искру ---------- */
  .sozdaem { padding-top: 100px; }
  .sozdaem__cols { min-height: 0; margin-top: 40px; }
  .sozdaem__text { width: auto; }
  .sozdaem__text > p { font-size: 16px; margin-bottom: 25px; }
  .bullets li { font-size: 16px; padding-left: 25px; }
  .sozdaem__callout {
    width: auto;
    padding: 20px 25px;
    font-size: 16px;
    border-radius: 24px;
  }
  .sozdaem__media {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 355px;
    margin-top: 40px;
  }
  .sozdaem__decor {
    width: 100%;
    height: 355px;
    object-fit: cover;
    border-radius: 24px;
  }
  .sozdaem__man {
    left: 50%;
    transform: translateX(-56%);
    top: auto;
    bottom: 0;
    width: 268px;
  }
  .sozdaem__sticker {
    left: auto;
    right: -6px;
    top: 62px;
    width: 90px;
    height: 90px;
  }

  /* ---------- карточки преимуществ: горизонтальный свайпер ---------- */
  .features { padding-top: 100px; }
  .features__grid {
    display: flex;
    grid-template-columns: none;
    justify-content: flex-start;
    align-items: stretch;
    margin: 40px -30px 0;
    padding: 0 30px;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .features__grid::-webkit-scrollbar { display: none; }
  .feature-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
    flex-direction: column-reverse;
    height: auto;
    padding: 25px;
    gap: 20px;
    border-radius: 24px;
    align-items: stretch;
  }
  .feature-card:hover { transform: none; box-shadow: none; }
  .features__dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }
  .features__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #d9d9d9;
    transition: background 0.3s;
  }
  .features__dots button.is-active { background: var(--teal); }
  .feature-card__media {
    flex: none;
    width: 100%;
    height: 176px;
    border-radius: 24px;
  }
  .feature-card__media img { width: 157px; height: 157px; }
  .feature-card__text { width: auto; }
  .feature-card__text h3 { font-size: 20px; line-height: 1.1; margin-bottom: 15px; }
  .feature-card__text p { font-size: 16px; }

  /* ---------- регистрация ---------- */
  .register { padding-top: 100px; }
  .register__cols { min-height: 0; }
  .register__media {
    position: relative;
    width: 268px;
    margin: 35px auto 0;
  }
  .register__flame {
    left: -14px;
    top: 4px;
    width: 145px;
    transform: none;
  }
  .register__phone { margin-top: 0; width: 220px; margin-left: 14px; }
  .register__appicon {
    left: auto;
    right: -22px;
    top: 160px;
    width: 90px;
  }
  .register__body {
    margin-left: 0;
    padding-top: 30px;
    min-height: 0;
  }
  .register__steps {
    width: 100%;
    display: flex;
    background: transparent;
    gap: 10px;
    height: 45px;
  }
  .register__step {
    position: static !important;
    flex: 1;
    width: auto !important;
    background: var(--gray);
  }
  .register__steps-indicator { display: none; }
  .register__step.is-active { background: #dddbff; }
  .register__info { margin-left: 0; margin-top: 22px; width: auto; }
  .register__info h3 { width: auto; font-size: 22px; line-height: 1.1; }
  .register__info > p { width: auto; font-size: 16px; }
  .register__list li { font-size: 16px; }
  .register__small { font-size: 14px; }
  .register__info .btn { width: 215px; }

  /* ---------- qr ---------- */
  .qr { padding-top: 100px; }
  .qr__banner { display: none; }
  .qr__mobile { display: block; margin-top: 35px; }
  .qr__mobile-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
  }
  .qr__mobile-img {
    width: 100%;
    height: auto;
  }
  .qr__mobile-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    background: var(--teal);
    border-radius: 20px;
    padding: 10px 20px 10px 10px;
    font-size: 17px;
    font-weight: 700;
  }
  .qr__mobile-btn img { width: 50px; height: 50px; }

  /* ---------- пополнение / обмен ---------- */
  .topup, .exchange { padding-top: 100px; }
  .topup__cols, .exchange__cols {
    flex-direction: column-reverse;
    margin-top: 35px;
    gap: 30px;
  }
  .exchange__cols { flex-direction: column; }
  .topup__media, .exchange__media {
    width: 100%;
    height: 215px;
    border-radius: 24px;
  }
  .topup__media img, .exchange__media img { height: 100%; }
  .accordion { width: 100%; }
  .accordion__item summary {
    height: 70px;
    padding: 0 12px 0 23px;
  }
  .accordion__item summary span:first-child { font-size: 18px; }
  .accordion__toggle {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 16px;
  }
  .accordion__body {
    width: auto;
    padding: 25px 0 10px;
  }
  .accordion__body > p { width: auto; font-size: 16px; }
  .accordion__body .bullets li { width: auto; font-size: 16px; }
  .exchange__body { width: auto; padding-top: 0; }
  .exchange__lead {
    width: auto;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.2;
  }

  /* ---------- курсы валют ---------- */
  .rates { padding-top: 100px; }
  .rates__cols { flex-direction: column; margin-top: 35px; gap: 45px; }
  .rates__table { width: 100%; }
  .rates__head {
    grid-template-columns: 1fr 105px 90px;
    font-size: 14px;
    padding-bottom: 10px;
  }
  .rates__row {
    grid-template-columns: 1fr 105px 90px;
    height: 69px;
  }
  .rates__cur { font-size: 17px; gap: 8px; }
  .rates__cur img { width: 24px; height: 17px; border-radius: 4px; }
  .rates__val { font-size: 17px; gap: 6px; }
  .rates__updated { margin-top: 25px; font-size: 14px; }
  .rates__tip { width: 100%; }
  .rates__tip-card {
    width: 100%;
    height: auto;
    padding: 28px 25px;
    border-radius: 24px;
  }
  .rates__tip-badge { font-size: 17px; width: 168px; height: 39px; }
  .rates__tip-card h3 { width: auto; font-size: 22px; margin-top: 22px; }
  .rates__tip-card p { width: auto; font-size: 16px; }
  .rates__coin--1 {
    left: auto;
    right: 65px;
    top: -46px;
    width: 63px;
    height: 82px;
  }
  .rates__coin--2 {
    left: auto;
    right: -14px;
    top: 8px;
    width: 70px;
    height: 62px;
  }

  /* ---------- что нового ---------- */
  .news { padding-top: 100px; }
  .news__cards {
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .news-card {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    height: auto;
    min-height: 176px;
    padding: 28px 30px;
    border-radius: 28px;
  }
  .news-card--orange { display: block; background: var(--orange); --tilt: -1.4deg; }
  .news-card--pink { --tilt: 1.4deg; }
  .news-card--teal { --tilt: -2deg; }
  .news-card--purple { --tilt: 1.8deg; }
  .news-card h3 { width: auto; font-size: 20px; }
  .news-card p { width: auto; font-size: 16px; margin-top: 14px; }
  .news__fire {
    left: auto;
    right: 12px;
    top: 270px;
    width: 95px;
  }
  .news__dots { display: none; }

  /* ---------- ваши идеи ---------- */
  .ideas { padding-top: 100px; }
  .ideas__panel {
    margin-top: 35px;
    padding: 40px 0 45px;
    border-radius: 28px;
  }
  .ideas__intro { height: auto; padding: 0 25px; }
  .ideas__intro-text { position: static; width: auto; }
  .ideas__intro-text > p { font-size: 16px; }
  .ideas__closer { margin-top: 25px; font-size: 16px; }
  .ideas__collage {
    position: static;
    width: 100%;
    max-width: 342px;
    margin: 30px auto 0;
    display: block;
  }
  .idea-form {
    width: calc(100% - 50px);
    padding: 30px 20px;
    border-radius: 24px;
    margin-top: 40px;
  }
  .idea-form--white { margin-top: 24px; padding: 35px 20px 30px; }
  .idea-form__head { width: auto; margin-bottom: 20px; }
  .idea-form--purple .idea-form__head h3 { font-size: 22px; line-height: 1.05; width: 75%; }
  .idea-form--white .idea-form__head h3 { font-size: 22px; line-height: 1.05; width: 70%; }
  .idea-form__subtitle { margin-top: 12px; font-size: 15px; }
  .idea-form__head p { font-size: 16px; }
  .idea-form__row { flex-direction: column; gap: 8px; }
  .idea-form__row input {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    font-size: 16px;
    padding: 0 17px;
  }
  .idea-form textarea {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    font-size: 16px;
    padding: 14px 17px;
  }
  .idea-form__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
  }
  .idea-form__bottom .btn { width: 100%; flex: none; }
  .agree { align-self: flex-start; }
  .agree__label { width: auto; }
  .idea-form__rocket {
    left: auto;
    right: 12px;
    top: 18px;
    width: 95px;
  }
  .idea-form__pencil {
    left: auto;
    right: 12px;
    top: 20px;
    width: 90px;
  }
  .rating { flex-wrap: wrap; gap: 12px 16px; margin-bottom: 20px; }
  .rating__label { font-size: 16px; }
  .attach { width: 100%; }
  .attach__btn {
    height: auto;
    min-height: 48px;
    padding: 10px 17px;
    flex-wrap: wrap;
    gap: 8px 12px;
    border-radius: 16px;
    font-size: 16px;
  }
  .attach__btn em { margin-left: 0; width: 100%; order: 3; font-size: 12px; }

  /* ---------- faq ---------- */
  .faq { padding-top: 100px; }
  .faq__bubbles { width: 169px; margin-bottom: 18px; }
  .faq__list { margin-top: 35px; }
  .faq__item summary { padding: 26px 0; gap: 16px; }
  .faq__item summary span:first-child { font-size: 18px; }
  .faq__toggle {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 13px;
  }
  .faq__answer { padding: 0 0 30px; max-width: none; }
  .faq__answer p { width: auto; font-size: 16px; }

  /* ---------- footer ---------- */
  .footer { margin-top: 100px; padding: 55px 0 45px; }
  .footer__inner {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 30px;
    flex-direction: column;
  }
  .footer__col--brand { order: 3; margin-top: 45px; }
  .footer__col--contacts { order: 1; }
  .footer__col--social { order: 2; margin-top: 35px; }
  .footer__logo {
    width: 215px;
    height: 50px;
  }
  .footer__legal { margin-top: 25px; font-size: 13px; }
  .footer__copy { margin-top: 20px; font-size: 13px; }
  .footer__pills { flex-wrap: wrap; }
  .footer__pdf {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -3px;
  }
}

/* =================== ПЛАНШЕТ: ПОРТРЕТ (768–1023) =================== */
/* надстройка над мобильной версией: две колонки и крупнее типографика */

@media (min-width: 768px) and (max-width: 1023px) {
  body { font-size: 18px; }
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .h2 { font-size: 36px; }
  .section-sub { font-size: 20px; margin-top: 18px; }
  .bullets li { font-size: 18px; padding-left: 27px; }

  /* ---------- header / меню ---------- */
  .header__pill {
    height: 84px;
    padding: 0 26px;
    border-radius: 0 0 28px 28px;
  }
  .header__logo img { width: 190px; height: 44px; }
  .header__burger { width: 36px; height: 36px; }
  .mobile-menu { padding: 130px 40px 40px; }
  .mobile-menu__nav { gap: 34px; padding: 0 10px; }
  .mobile-menu__nav a { font-size: 26px; gap: 14px; }
  .mobile-menu__nav a::after { width: 11px; height: 11px; }

  /* ---------- hero: контент слева, телефон справа ---------- */
  .hero, .hero__stage { height: 660px; }
  .hero__phone-m {
    left: auto;
    right: -20px;
    transform: none;
    width: 400px;
  }
  .hero__content { left: 55px; right: auto; top: 180px; }
  .hero__logo { width: 280px; height: 63px; }
  .hero__subtitle { font-size: 24px; width: 270px; }
  .hero__btn {
    width: 300px;
    height: 76px;
    font-size: 19px;
    gap: 16px;
  }
  .hero__btn-icon { width: 56px; height: 56px; }

  /* ---------- создаем искру: 2 колонки ---------- */
  .sozdaem { padding-top: 110px; }
  .sozdaem__cols {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    margin-top: 45px;
  }
  .sozdaem__text { flex: 1; }
  .sozdaem__text > p { font-size: 18px; }
  .sozdaem__callout { font-size: 18px; padding: 24px 28px; }
  .sozdaem__media {
    flex: 0 0 38%;
    width: auto;
    height: 400px;
    margin-top: 0;
  }
  .sozdaem__decor { height: 400px; }
  .sozdaem__man { width: 240px; }
  .sozdaem__sticker { right: -10px; top: 45px; width: 100px; height: 100px; }

  /* ---------- преимущества: сетка 2×2 ---------- */
  .features { padding-top: 110px; }
  .features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 45px 0 0;
    padding: 0;
    overflow: visible;
  }
  .feature-card {
    flex: none;
    height: 100%;
    padding: 28px;
  }
  .feature-card__media { height: 200px; }
  .feature-card__media img { width: 170px; height: 170px; }
  .feature-card__text h3 { font-size: 22px; }
  .feature-card__text p { font-size: 17px; }
  .features__dots { display: none; }

  /* ---------- регистрация: 2 колонки ---------- */
  .register { padding-top: 110px; }
  .register__cols {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .register__media {
    flex: 0 0 300px;
    width: 300px;
    margin: 40px 0 0;
  }
  .register__flame { left: -16px; top: 6px; width: 165px; }
  .register__phone { width: 250px; margin-left: 20px; }
  .register__appicon { right: -10px; top: 185px; width: 100px; }
  .register__body { flex: 1; padding-top: 40px; }
  .register__info h3 { font-size: 24px; }
  .register__info > p, .register__list li { font-size: 18px; }
  .register__small { font-size: 15px; }

  /* ---------- qr ---------- */
  .qr { padding-top: 110px; }
  .qr__mobile { max-width: 560px; margin: 45px auto 0; }
  .qr__mobile-btn { justify-content: center; font-size: 19px; }

  /* ---------- пополнение / обмен: 2 колонки ---------- */
  .topup, .exchange { padding-top: 110px; }
  .topup__cols, .exchange__cols {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin-top: 45px;
  }
  .topup__cols .accordion { flex: 1; }
  .topup__media, .exchange__media {
    flex: 0 0 38%;
    width: auto;
    height: 400px;
  }
  .exchange__body { flex: 1; }
  .exchange__lead { font-size: 20px; }
  .accordion__item summary span:first-child { font-size: 20px; }
  .accordion__body > p, .accordion__body .bullets li { font-size: 17px; }

  /* ---------- курсы валют ---------- */
  .rates { padding-top: 110px; }
  .rates__cols { gap: 50px; }
  .rates__head, .rates__row { grid-template-columns: 1fr 140px 140px; }
  .rates__cur { font-size: 20px; gap: 12px; }
  .rates__cur img { width: 30px; height: 22px; }
  .rates__val { font-size: 20px; }
  .rates__tip-card { padding: 32px 30px; }
  .rates__tip-card h3 { font-size: 24px; }
  .rates__tip-card p { font-size: 18px; }
  .rates__coin--1 { right: 100px; top: -50px; }
  .rates__coin--2 { right: 15px; top: 5px; }

  /* ---------- что нового: сетка 2×2 ---------- */
  .news { padding-top: 110px; }
  .news__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .news-card { min-height: 230px; padding: 32px 34px; }
  .news-card h3 { font-size: 22px; }
  .news-card p { font-size: 17px; }
  .news__fire {
    left: 50%;
    right: auto;
    top: 50%;
    width: 110px;
    --base: translate(-50%, -50%) rotate(-16.6deg);
    transform: translate(-50%, -50%) rotate(-16.6deg);
  }

  /* ---------- ваши идеи ---------- */
  .ideas { padding-top: 110px; }
  .ideas__panel { padding: 55px 0 60px; }
  .ideas__intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 0 40px;
  }
  .ideas__intro-text { flex: 1; }
  .ideas__intro-text > p, .ideas__closer { font-size: 18px; }
  .ideas__collage {
    flex: 0 0 300px;
    width: 300px;
    max-width: none;
    margin: 0;
  }
  .idea-form {
    width: calc(100% - 80px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 35px 40px;
  }
  .idea-form--white { padding: 40px 40px 35px; }
  .idea-form--purple .idea-form__head h3 { font-size: 26px; width: 78%; }
  .idea-form--white .idea-form__head h3 { font-size: 24px; width: 75%; }
  .idea-form__head p { font-size: 18px; }
  .idea-form__subtitle { font-size: 17px; }
  .idea-form__row { flex-direction: row; gap: 10px; }
  .idea-form__row input { flex: 1; width: auto; height: 56px; }
  .idea-form textarea { height: 180px; }
  .idea-form__bottom {
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
  }
  .idea-form__bottom .btn { width: 260px; flex: 0 0 260px; }
  .agree__label { width: auto; }
  .idea-form__rocket { right: 25px; top: 15px; width: 120px; }
  .idea-form__pencil { right: 25px; top: 15px; width: 115px; }
  .rating__label { font-size: 18px; }
  .attach__btn { font-size: 17px; }

  /* ---------- faq ---------- */
  .faq { padding-top: 110px; }
  .faq__bubbles { width: 189px; margin-bottom: 22px; }
  .faq__item summary span:first-child { font-size: 20px; }
  .faq__answer p, .faq__answer .bullets li { font-size: 18px; }

  /* ---------- footer ---------- */
  .footer { margin-top: 110px; padding: 65px 0 55px; }
  .footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer__col--contacts { order: 1; }
  .footer__col--social { order: 2; margin-top: 0; }
  .footer__col--brand { order: 3; grid-column: 1 / -1; margin-top: 15px; }
}

/* =================== ПЛАНШЕТ: ЛАНДШАФТ (1024–1279) =================== */
/* десктопная вёрстка, сжатая до контента 920px */

@media (min-width: 1024px) and (max-width: 1279px) {
  body { min-width: 0; }
  .container {
    width: auto;
    max-width: 1000px;
    padding: 0 40px;
  }

  /* ---------- header ---------- */
  .header__pill {
    width: calc(100% - 44px);
    max-width: 1090px;
  }
  .header__logo img { width: 195px; height: 45px; }
  .header__nav { gap: 20px; padding-right: 0; }
  .header__nav a { font-size: 15px; }

  /* ---------- hero: пропорциональное масштабирование сцены ---------- */
  .hero { height: 556px; }
  .hero__stage {
    transform: translateX(-50%) scale(0.9);
    transform-origin: top center;
  }

  /* ---------- создаем искру ---------- */
  .sozdaem__cols { min-height: 430px; }
  .sozdaem__text { width: 50%; }
  .sozdaem__callout { width: 100%; }
  .sozdaem__media {
    left: auto;
    right: 0;
    top: -10px;
    width: 380px;
    height: 375px;
  }
  .sozdaem__decor { width: 380px; height: 375px; }
  .sozdaem__man { left: 46px; top: -28px; width: 298px; }
  .sozdaem__sticker { left: 305px; top: 66px; width: 96px; height: 96px; }

  /* ---------- преимущества ---------- */
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 17px; }
  .feature-card { height: 250px; padding: 18px; gap: 18px; }
  .feature-card__media { flex: 0 0 155px; height: 214px; }
  .feature-card__media img { width: 155px; height: 155px; }
  .feature-card__text { width: auto; }
  .feature-card__text h3 { font-size: 22px; }
  .feature-card__text p { font-size: 18px; }

  /* ---------- регистрация ---------- */
  .register__cols {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    min-height: 0;
  }
  .register__media {
    position: relative;
    flex: 0 0 340px;
    width: 340px;
  }
  .register__flame { left: -18px; top: 90px; width: 215px; }
  .register__phone { margin-top: 105px; width: 335px; }
  .register__appicon { left: 216px; top: 372px; width: 119px; }
  .register__body {
    flex: 1;
    margin-left: 0;
    padding-top: 90px;
    min-height: 0;
  }
  .register__steps {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  .register__step {
    position: static !important;
    flex: 1;
    width: auto !important;
  }
  .register__info { margin-left: 0; width: auto; }
  .register__info h3 { width: auto; }
  .register__info > p { width: auto; }

  /* ---------- qr ---------- */
  .qr__banner { width: 100%; }
  .qr__iphone { left: auto; right: 15px; }

  /* ---------- пополнение / обмен ---------- */
  .topup__cols, .exchange__cols { gap: 30px; }
  .topup__cols .accordion { flex: 1; }
  .accordion { width: auto; }
  .topup__media, .exchange__media {
    flex: 0 0 400px;
    width: 400px;
    height: 470px;
  }
  .exchange__body { flex: 1; width: auto; }
  .exchange__lead { width: auto; }
  .accordion__body { width: auto; }
  .accordion__body > p { width: auto; }
  .accordion__body .bullets li { width: auto; }

  /* ---------- курсы валют ---------- */
  .rates__cols { gap: 40px; }
  .rates__table { flex: 1; width: auto; }
  .rates__head, .rates__row { grid-template-columns: 1fr 140px 140px; }
  .rates__tip { flex: 0 0 320px; width: 320px; }
  .rates__tip-card {
    width: 320px;
    height: auto;
    min-height: 400px;
    padding: 30px 28px;
  }
  .rates__tip-card h3 { width: auto; }
  .rates__tip-card p { width: auto; }
  .rates__coin--1 { left: 200px; top: 350px; }
  .rates__coin--2 { left: 110px; top: 425px; }

  /* ---------- что нового ---------- */
  .news__cards {
    display: flex;
    gap: 20px;
    height: auto;
    margin-top: 30px;
  }
  .news-card {
    position: relative;
    left: auto !important;
    top: auto !important;
    flex: 1;
    width: auto;
    height: auto;
    min-height: 250px;
    padding: 30px 32px;
  }
  .news-card h3 { width: auto; font-size: 24px; }
  .news-card p { width: auto; font-size: 18px; }
  .news__fire { left: 60%; top: 40px; }

  /* ---------- ваши идеи ---------- */
  .ideas__panel { padding: 60px 40px; }
  .ideas__intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    height: auto;
  }
  .ideas__intro-text {
    position: static;
    flex: 1;
    width: auto;
  }
  .ideas__collage {
    position: static;
    flex: 0 0 340px;
    width: 340px;
    max-width: none;
  }
  .idea-form {
    width: 100%;
    max-width: 760px;
    padding: 33px 45px;
  }
  .idea-form__head { width: 70%; }
  .idea-form__row input { flex: 1; width: auto; }
  .idea-form textarea { width: 100%; }
  .idea-form__bottom { width: 100%; }
  .idea-form__bottom .btn { width: 300px; flex: 0 0 300px; }
  .attach { width: 100%; }
  .idea-form__rocket { left: auto; right: 30px; top: 10px; width: 150px; }
  .idea-form__pencil { left: auto; right: 30px; top: 0; width: 155px; }

  /* ---------- faq ---------- */
  .faq__answer p { width: auto; }

  /* ---------- footer ---------- */
  .footer__inner {
    width: auto;
    max-width: 1000px;
    padding: 0 40px;
  }
}

/* узкий ландшафт — сцена hero чуть мельче, чтобы не срезало телефон */
@media (min-width: 1024px) and (max-width: 1151px) {
  .hero { height: 494px; }
  .hero__stage { transform: translateX(-50%) scale(0.8); }
}

@media (max-width: 768px) {
  .agree {
      align-items: center;
      order: -1;
  }
}