:root {
  --red: #e3132c;
  --black: #1f1f1f;
  --black-deep: #1a1a1a;
  --muted: #717171;
  --muted-2: #6b6b6b;
  --muted-3: #8a8a8a;
  --muted-4: #a0a0a0;
  --gray-bg: #f2f2f7;
  --faq-from: #f7f7f9;
  --input-bg: #f2f2f7;
  --input-border: #d0d0d0;
  --faq-border: #e8e8ec;
  --faq-icon-bg: #f2f2f4;
  --blue: #3cb9ff;
  --telegram: #2aabee;
  --green: #54cd03;
  --white: #ffffff;
  --footer-muted: #999999;
  --radius-card: 24px;
  --radius-input: 16px;
  --radius-pill: 100px;
  --pad-x: 64px;
  --section-y: 72px;
  --font: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--gray-bg);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn:active {
  transform: translateY(0);
}

.btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-telegram {
  font-size: 14px;
}

.btn-sm {
  padding: 10px 14px;
  font-size: 15px;
  gap: 0;
}

.btn-full {
  width: 100%;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-black {
  background: #000;
  color: var(--white);
}

.btn-blue {
  background: var(--telegram);
  color: var(--white);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 14px 28px;
  font-size: 15px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--pad-x);
  background: var(--white);
}

.logo img {
  width: 220px;
  height: 32px;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--muted);
}

.nav-desktop a:hover {
  color: var(--black);
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 11px 10px;
  border-radius: 12px;
  background: #f2f2f2;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #000;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__sheet {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  background: var(--white);
  overflow: hidden;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu__header .logo img {
  width: 148px;
  height: 22px;
  object-fit: contain;
}

.mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu__actions .btn-sm {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

.close-btn img {
  width: 36px;
  height: 36px;
  display: block;
}

.mobile-menu__divider {
  height: 1px;
  background: #ebebeb;
  flex-shrink: 0;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  background: var(--white);
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: var(--black);
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu__nav a:last-child {
  border-bottom: none;
}

.mobile-menu__nav span {
  color: #999999;
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
}

.mobile-menu__spacer {
  flex: 1 1 auto;
  min-height: 24px;
}

.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px calc(28px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}

.mobile-menu__bottom .btn-full {
  width: 100%;
}

.mobile-menu__bottom .btn-blue {
  padding: 14px 24px;
  font-size: 14px;
  line-height: 20px;
}

.mobile-menu__bottom .btn-red {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 20px;
}

.mobile-menu__links {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #999999;
}

.mobile-menu__links a:hover {
  color: var(--black);
}

/* Hero */
.hero {
  padding: 56px var(--pad-x) 64px;
  background: linear-gradient(65.59deg, #e3132c 13.64%, #000 104.55%);
  color: var(--white);
  animation: heroIn 0.7s ease both;
}

.hero__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 41px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 620px;
  max-width: 100%;
}

.hero__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.88;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__actions .btn-blue {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
}

.hero__actions .btn-red {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
}

.hero__actions--bottom {
  display: none;
}

.hero__phone {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: auto;
}

.phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  padding: 10px;
  border-radius: 44px;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: phoneFloat 4s ease-in-out infinite;
}

.phone-frame__screen {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 260 / 565;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
}

.phone-frame__island {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 73px;
  height: 22px;
  transform: translateX(-50%);
  pointer-events: none;
  object-fit: contain;
}

.phone-frame__home {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  width: 75px;
  height: 3px;
  border-radius: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Calculator */
.calculator-section {
  padding: 64px;
  background: var(--gray-bg);
}

.calculator-layout {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
}

.calc-card {
  width: 640px;
  flex: 0 1 640px;
  max-width: 100%;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  animation: riseIn 0.6s ease 0.1s both;
}

.calc-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.calc-row {
  display: flex;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.field__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--muted);
}

.select-wrap,
.amount-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-input);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
}

.select-wrap {
  position: relative;
}

.select-wrap--give {
  gap: 8px;
}

.select-wrap--give select {
  flex: 1;
  min-width: 0;
  width: auto;
}

.select-wrap__icon {
  flex-shrink: 0;
  object-fit: contain;
}

.select-wrap__icon--mobile {
  display: none;
}

.select-wrap__icon[hidden] {
  display: none;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../assets/chevron-down.svg") center / contain no-repeat;
  pointer-events: none;
}

.select-wrap select {
  appearance: none;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
  padding-right: 20px;
  cursor: pointer;
  outline: none;
}

.select-wrap select:focus,
.select-wrap select:focus-visible,
.amount-box input:focus,
.amount-box input:focus-visible {
  outline: none;
  box-shadow: none;
}

.amount-box {
  width: 100%;
  border: none;
}

.amount-box--sum {
  min-height: 52px;
  padding: 16px;
}

.amount-box--equiv {
  min-height: 52px;
  padding: 16px;
  border: none;
  background: var(--input-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--muted);
  text-align: left;
  cursor: default;
  width: 100%;
  appearance: none;
}

.amount-box input {
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black);
  width: 100%;
  min-width: 0;
  outline: none;
}


.calc-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.calc-rate__info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

.calc-rate__info:hover .calc-rate__icon {
  opacity: 0.85;
}

.calc-rate__icon {
  color: var(--red);
}

.calc-rate strong {
  font-weight: 600;
}

.rate-tooltip {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.rate-tooltip[hidden] {
  display: none;
}

.calc-cta [hidden] {
  display: none !important;
}

.banks-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.banks-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid #e8e8ec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banks-pill__logos {
  display: flex;
  align-items: center;
}

.banks-pill__logos img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: -8px;
  object-fit: cover;
}

.banks-pill__logos img:last-child {
  margin-right: 0;
}

.banks-pill > span {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #5c5c5c;
  white-space: nowrap;
}

.advantages-marquee {
  width: 100%;
  max-width: 1312px;
  margin: 24px auto 0;
  overflow: hidden;
}

.advantages-marquee__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 48px,
    #000 calc(100% - 48px),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 48px,
    #000 calc(100% - 48px),
    transparent
  );
}

.advantages-marquee__track {
  display: flex;
  width: max-content;
  padding: 8px 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.advantages-marquee__group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 12px;
}

.advantage-card {
  flex: 0 0 auto;
  min-width: 160px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #e8e8ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.advantage-card strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: var(--black);
}

.advantage-card span {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--muted);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}

.trust-badges {
  display: none;
}

/* About */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: var(--section-y) var(--pad-x);
  background: var(--white);
  text-align: center;
}

.about h2,
.capabilities h2,
.reviews h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.about__text {
  max-width: 760px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--muted);
}

.about__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  width: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat strong {
  font-size: 35px;
  font-weight: 700;
  line-height: 34px;
  color: var(--red);
  white-space: nowrap;
}

.stat span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--muted);
}

/* Capabilities */
.capabilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: var(--section-y) var(--pad-x);
  background: var(--gray-bg);
}

.capability-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1232px;
}

.capability-card {
  width: 400px;
  max-width: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-card__bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
}

.capability-card--blue .capability-card__bar {
  background: var(--blue);
}

.capability-card--green .capability-card__bar {
  background: var(--green);
}

.capability-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.capability-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--muted);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 96px var(--pad-x);
  background: linear-gradient(180deg, var(--faq-from), var(--gray-bg));
}

.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  width: 100%;
}

.faq__header h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  color: var(--black-deep);
}

.faq__header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted-2);
}

.faq-list {
  width: 760px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--faq-border);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: var(--muted-3);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--faq-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.02), 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item[open] {
  border-color: rgba(227, 19, 44, 0.2);
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black-deep);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--faq-icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before {
  content: "+";
  color: var(--muted-2);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.faq-item[open] .faq-icon {
  background: var(--red);
}

.faq-item[open] .faq-icon::before {
  content: "−";
  color: var(--white);
}

.faq-item__body {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item__body p,
.faq-item__body li,
.faq-item p {
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--muted-2);
}

.faq-item__body ol {
  margin: 0;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item__body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-note {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--muted-4);
}

/* Reviews */
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: var(--section-y) var(--pad-x);
  background: var(--gray-bg);
}

.reviews-carousel {
  width: 100%;
  max-width: 1312px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 360px;
  max-width: calc(100vw - 48px);
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.review-card strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.review-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--muted);
}

.reviews-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reviews-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d0d0d0;
  cursor: pointer;
}

.reviews-carousel__dots button.is-active {
  width: 18px;
  border-radius: 100px;
  background: var(--red);
}

.reviews-carousel__hint {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #a0a0a0;
}

.reviews-link {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--red);
}

.reviews-link:hover {
  opacity: 0.85;
}

/* Footer */

.footer {
  background: #000;
  color: var(--footer-muted);
  padding: 56px var(--pad-x) 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer__brand {
  width: 360px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand img {
  width: 220px;
  height: 32px;
  object-fit: contain;
}

.footer__desc-desktop {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  max-width: 340px;
}

.footer__desc-mobile {
  display: none;
}

.footer__cols {
  display: flex;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.footer__col h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__link-current {
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.footer__legal {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: 1200px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #333;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.footer__note {
  text-align: right;
  color: var(--footer-muted, #999);
}

.footer__mobile-extra {
  display: none;
}

/* Privacy page */

.page-privacy {
  background: var(--white);
}

.header--subpage {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.privacy {
  background: var(--white);
}

.privacy__content {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px var(--pad-x) 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacy__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.privacy__date {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #999;
}

.privacy__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy__section h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

.privacy__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #4a4a4a;
}

.privacy__text p + p {
  margin-top: 0;
}

.privacy__text a {
  color: var(--red);
  font-weight: 500;
}

.privacy__text a:hover {
  opacity: 0.85;
}

.footer__privacy--current,
.footer__link-current {
  color: var(--red);
  font-weight: 600;
}

.amount-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-equivalent {
  display: flex;
}

.advantages-marquee__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #a0a0a0;
}

/* Animations */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame,
  .hero,
  .calc-card,
  .advantages-marquee__track {
    animation: none;
  }
}

/* Tablet */
@media (max-width: 1280px) {
  :root {
    --pad-x: 32px;
  }

  .hero__main {
    flex-direction: column;
    text-align: center;
  }

  .hero__copy {
    align-items: center;
    width: 100%;
  }

  .hero__text {
    text-align: center;
  }

  .calculator-section {
    padding: 48px 32px;
  }

  .calculator-layout {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
  }

  .calc-card {
    width: 100%;
    flex: none;
    max-width: none;
  }

  .capability-card {
    width: calc(50% - 8px);
    min-width: 280px;
    flex: 1;
  }

  .nav-desktop {
    gap: 16px;
    font-size: 14px;
  }

  .stat {
    width: calc(50% - 8px);
    min-width: 160px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --pad-x: 16px;
    --section-y: 40px;
    --radius-card: 20px;
    --radius-input: 14px;
  }

  .header {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  section[id],
  footer[id] {
    scroll-margin-top: 80px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .logo img {
    width: 140px;
    height: 20px;
  }

  .nav-desktop,
  .header-cta-desktop {
    display: none;
  }

  .header-mobile-actions {
    display: flex;
  }

  .hero {
    padding: 32px 16px 28px;
    background: linear-gradient(80.81deg, #e3132c 17.39%, #000 104.35%);
  }

  .hero__main {
    flex-direction: column;
    gap: 16px;
  }

  .hero__copy {
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
  }

  .hero__badge {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
  }

  .hero__title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero__actions--top {
    display: none !important;
  }

  .hero__text {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.9;
  }

  .hero__phone {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .phone-frame {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 10px;
  }

  .phone-frame__screen {
    border-radius: 28px;
    aspect-ratio: 200 / 435;
  }

  .phone-frame__island {
    top: 13px;
    width: 56px;
    height: 18px;
  }

  .phone-frame__home {
    bottom: 14px;
    width: 57px;
    height: 3px;
    border-radius: 1.5px;
  }

  .hero__actions--bottom {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero__actions--bottom .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero__actions--bottom .btn-red {
    font-size: 15px;
  }

  .banks-pill {
    padding: 4px 12px 4px 4px;
  }

  .banks-pill__logos img {
    width: 26px;
    height: 26px;
    margin-right: -7px;
  }

  .calculator-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 16px 24px;
  }

  .calculator-layout {
    width: 100%;
    max-width: none;
  }

  .calc-card {
    width: 100%;
    padding: 20px 16px;
    gap: 14px;
    border-radius: 20px;
    box-shadow: none;
  }

  .calc-card__title {
    font-size: 20px;
    line-height: 26px;
  }

  .amount-fields {
    gap: 10px;
  }

  .calc-row {
    flex-direction: column;
    gap: 14px;
  }

  .amount-fields {
    gap: 10px;
  }

  .field {
    gap: 6px;
  }

  .field__label {
    font-size: 12px;
  }

  .select-wrap--give {
    gap: 6px;
  }

  .select-wrap__icon--desktop {
    display: none;
  }

  .select-wrap__icon--mobile:not([hidden]) {
    display: block;
  }

  .field-equivalent {
    display: flex;
  }

  .select-wrap,
  .amount-box--sum,
  .amount-box--equiv {
    padding: 12px;
    border: none;
    min-height: 44px;
  }

  .select-wrap select {
    font-size: 15px;
  }

  .amount-box--sum input {
    font-size: 20px;
    line-height: 26px;
  }

  .amount-box--equiv {
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
  }

  .calc-rate {
    display: none;
  }

  .rate-tooltip {
    font-size: 11px;
    line-height: normal;
    padding: 12px;
  }

  .advantages-marquee {
    margin: 0;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }


  .privacy__content {
    padding: 32px 16px 48px;
  }

  .privacy__title {
    font-size: 28px;
  }

  .privacy__section h2 {
    font-size: 16px;
  }

  .privacy__text {
    font-size: 13px;
    line-height: 20px;
  }

  .header--subpage .header-mobile-actions .btn-sm {
    padding: 10px 14px;
    font-size: 13px;
  }

  .about {
    gap: 24px;
    padding: 48px 16px;
  }

  .about h2,
  .capabilities h2,
  .reviews h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .about__text {
    font-size: 15px;
    line-height: 24px;
  }

  .about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }

  .stat {
    width: 100%;
    padding: 16px 12px;
    background: var(--gray-bg);
    border-radius: 16px;
    gap: 8px;
  }

  .stat strong {
    font-size: 24px;
    line-height: 30px;
  }

  .stat span {
    font-size: 13px;
    line-height: 18px;
  }

  .capabilities {
    align-items: stretch;
    gap: 12px;
    padding: 32px 16px;
  }

  .capabilities h2 {
    text-align: center;
  }

  .capability-grid {
    flex-direction: column;
    gap: 12px;
  }

  .capability-card {
    width: 100%;
    padding: 18px 16px;
    border-radius: 16px;
    gap: 10px;
  }

  .capability-card h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .capability-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .faq {
    align-items: stretch;
    gap: 24px;
    padding: 40px 16px;
  }

  .faq__header h2 {
    font-size: 36px;
    line-height: 45px;
  }

  .faq__header p {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .faq-item summary {
    font-size: 15px;
    line-height: 21px;
  }

  .faq-item__body p,
  .faq-item__body li,
  .faq-item p {
    font-size: 13px;
    line-height: 20px;
  }

  .reviews {
    align-items: stretch;
    gap: 12px;
    padding: 32px 16px;
  }

  .reviews-carousel__footer {
    justify-content: center;
  }

  .reviews-carousel__hint {
    display: none;
  }

  .review-card {
    flex-basis: 295px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    gap: 10px;
  }

  .review-card strong {
    font-size: 15px;
    line-height: 20px;
  }

  .review-card p {
    font-size: 13px;
    line-height: 18px;
  }

  .reviews-link {
    font-size: 14px;
    line-height: 18px;
    align-self: flex-start;
  }

  .footer {
    padding: 32px 16px 24px;
    gap: 12px;
  }

  .footer__top {
    flex-direction: column;
    gap: 12px;
  }

  .footer__cols,
  .footer__legal,
  .footer__bottom,
  .footer__desc-desktop {
    display: none;
  }

  .footer__desc-mobile {
    display: block;
    font-size: 11px;
    line-height: 16px;
    color: var(--muted);
  }

  .footer__mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer__brand img {
    width: 180px;
    height: 26px;
  }

  .footer__privacy {
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
  }

  .footer__links-mobile {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--muted);
  }

  .footer__copy-mobile {
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
    color: var(--muted);
  }
}


