.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 189, 248, 0.24), transparent 17rem),
    linear-gradient(145deg, #08111f, var(--background) 52%, #111f3e);
  transition: opacity 650ms var(--ease), visibility 650ms var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.76));
  box-shadow: 0 0 55px rgba(56, 189, 248, 0.42);
  animation: logo-pulse 1.3s var(--ease) infinite alternate;
}

.preloader__mark strong {
  font-size: 30px;
  font-weight: 950;
}

.logo-orbit {
  position: absolute;
  inset: -11px;
  border-radius: 34px;
  border: 2px solid rgba(56, 189, 248, 0.22);
  border-top-color: rgba(248, 250, 252, 0.9);
  animation: orbit 1.05s linear infinite;
}

.preloader__name {
  font-size: 28px;
  font-weight: 950;
}

.preloader__bar {
  width: 176px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.16);
}

.preloader__bar span {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: loading-bar 1s var(--ease) infinite;
}

.ambient-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(248, 250, 252, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 78%);
}

.glow {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.34;
  animation: drift 11s var(--ease) infinite alternate;
}

.glow--one {
  top: -14rem;
  left: -12rem;
  background: var(--primary);
}

.glow--two {
  right: -12rem;
  top: 18%;
  background: var(--accent);
  animation-delay: -3s;
}

.glow--three {
  left: 30%;
  bottom: -18rem;
  background: var(--secondary);
  animation-delay: -6s;
}

.grid-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 22%, transparent, rgba(15, 23, 42, 0.72) 68%);
}

.data-line {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.65), transparent);
  opacity: 0.42;
  animation: scan-line 4.8s linear infinite;
  animation-delay: var(--d);
}

.language-switch {
  position: fixed;
  z-index: 30;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

.language-switch__item {
  position: relative;
  overflow: hidden;
  min-width: 58px;
  height: 38px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms var(--ease), background 220ms var(--ease), transform 180ms var(--ease);
}

.language-switch__item.is-active {
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.language-switch__item:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 100svh;
  padding: 24px 0 88px;
  display: flex;
  align-items: stretch;
}

.hero__inner {
  display: flex;
  flex-direction: column;
}

.topbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 130px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.brand__text {
  font-size: 24px;
  font-weight: 950;
}

.topbar__links {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.topbar__links a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.topbar__links a:hover {
  color: var(--text);
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-1px);
}

.hero-quick-actions {
  position: sticky;
  top: 86px;
  z-index: 6;
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  padding: 8px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

.hero-quick-actions .btn {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 15px;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  color: var(--text);
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 200ms var(--ease),
    box-shadow 240ms var(--ease),
    border-color 240ms var(--ease),
    background 240ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.28);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.btn--secondary {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(56, 189, 248, 0.24);
}

.btn--success {
  background: linear-gradient(135deg, var(--success), #34d399);
}

.btn--soft,
.btn--glass {
  background: rgba(30, 41, 59, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.btn--top {
  display: none;
}

.btn--hero {
  min-height: 58px;
  padding-inline: 26px;
}

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

.hero__layout {
  flex: 1;
  display: grid;
  gap: 46px;
  align-items: center;
  padding-top: 62px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__content h1 {
  margin: 20px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
  font-weight: 950;
}

.hero__content p {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero__metrics span {
  min-height: 86px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 16px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.58);
  border: 1px solid var(--line);
}

.hero__metrics strong {
  color: var(--text);
  font-size: 24px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.phone-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(248, 250, 252, 0.12), rgba(248, 250, 252, 0.02)),
    rgba(30, 41, 59, 0.68);
  border: 1px solid rgba(203, 213, 225, 0.18);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(248, 250, 252, 0.12);
  transition: transform 180ms var(--ease);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 62%);
}

.phone-card__header,
.checkout-strip,
.mini-plans span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.5);
}

.phone-card__header {
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 900;
}

.service-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--success);
  font-size: 14px;
  font-weight: 950;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.14);
  animation: status-pulse 1.35s var(--ease) infinite alternate;
}

.speed-ring {
  position: relative;
  width: min(78vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  margin: 42px auto 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(15, 23, 42, 0.95) 0 58%, transparent 59%),
    conic-gradient(from 15deg, var(--accent), var(--primary), var(--success), var(--accent));
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.28);
}

.speed-ring span {
  font-size: 48px;
  font-weight: 950;
}

.speed-ring small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.speed-ring em {
  max-width: 140px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 950;
  text-align: center;
}

.mini-plans {
  position: relative;
  display: grid;
  gap: 10px;
}

.mini-plans span {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  font-weight: 900;
}

.mini-plan--activ {
  color: #fbcfe8;
  border-color: rgba(244, 114, 182, 0.22) !important;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.12), rgba(15, 23, 42, 0.5)) !important;
}

.mini-plan--beeline {
  color: #fde68a;
  border-color: rgba(250, 204, 21, 0.22) !important;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(15, 23, 42, 0.5)) !important;
}

.mini-plan--tele2 {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.24) !important;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.74), rgba(37, 99, 235, 0.16)) !important;
}

.checkout-strip {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 900;
}

.checkout-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(56, 189, 248, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  font-weight: 950;
  animation: chip-float 4s var(--ease) infinite alternate;
}

.floating-chip--one {
  top: 34px;
  right: -8px;
}

.floating-chip--two {
  left: -10px;
  bottom: 54px;
  animation-delay: -1.6s;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 950;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center span {
  margin-inline: auto;
}

.section-heading--row {
  display: grid;
  gap: 18px;
  max-width: none;
}

.section-heading--row > p {
  justify-self: start;
  padding: 14px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.62);
  border: 1px solid var(--line);
}

.operators-grid,
.benefits-grid,
.tariff-grid,
.steps-grid,
.reviews-grid,
.support-grid,
.accounts-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.operator-card,
.benefit-card,
.tariff-card,
.step-card,
.stat-card,
.review-card,
.support-card,
.account-card,
.faq-item,
.footer-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.07), rgba(248, 250, 252, 0.02)),
    rgba(30, 41, 59, 0.66);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(18px);
}

.operator-card,
.benefit-card,
.review-card,
.step-card,
.stat-card,
.support-card,
.account-card {
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.operator-card:hover,
.operator-card.is-selected,
.benefit-card:hover,
.review-card:hover,
.support-card:hover,
.account-card:hover,
.tariff-card:hover,
.tariff-card.is-selected,
.step-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.2);
}

.operators {
  padding-top: 84px;
}

.operators-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operator-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border-radius: 30px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.operator-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: -42% -28% auto;
  height: 72%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.operator-card:hover::before,
.operator-card.is-selected::before,
.package-card:hover::before,
.package-card.is-selected::before {
  opacity: 1;
}

.operator-card__icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  margin-bottom: 28px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
  font-size: 30px;
}

.operator-card__status {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.09);
}

.operator-card__status .status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
}

.operator-card strong,
.operator-card small,
.operator-card__selected,
.operator-card__action {
  position: relative;
  display: block;
}

.operator-card--activ,
.package-card--activ {
  --operator-accent: rgba(244, 114, 182, 0.52);
  --operator-accent-soft: rgba(244, 114, 182, 0.11);
}

.operator-card--beeline,
.package-card--beeline {
  --operator-accent: rgba(250, 204, 21, 0.48);
  --operator-accent-soft: rgba(250, 204, 21, 0.1);
}

.operator-card--tele2,
.package-card--tele2 {
  --operator-accent: rgba(56, 189, 248, 0.42);
  --operator-accent-soft: rgba(15, 23, 42, 0.28);
}

.operator-card--activ .operator-card__icon,
.package-card--activ .operator-badge {
  color: #f9a8d4;
  background: var(--operator-accent-soft);
  border-color: rgba(244, 114, 182, 0.24);
}

.operator-card--beeline .operator-card__icon,
.package-card--beeline .operator-badge {
  color: #fde68a;
  background: var(--operator-accent-soft);
  border-color: rgba(250, 204, 21, 0.24);
}

.operator-card--tele2 .operator-card__icon,
.package-card--tele2 .operator-badge {
  color: #bae6fd;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(37, 99, 235, 0.12));
  border-color: rgba(56, 189, 248, 0.2);
}

.package-card--activ::after,
.package-card--beeline::after,
.package-card--tele2::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--operator-accent-soft);
  box-shadow: 0 0 34px var(--operator-accent);
  opacity: 0.48;
  pointer-events: none;
}

.operator-card__action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--text);
  background: var(--operator-accent-soft);
  box-shadow: 0 0 34px var(--operator-accent);
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.operator-card__action svg {
  width: 20px;
  height: 20px;
}

.operator-card:hover .operator-card__action,
.operator-card.is-selected .operator-card__action {
  opacity: 1;
  transform: scale(1.04);
}

.operator-card strong {
  font-size: 28px;
  font-weight: 950;
}

.operator-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.operator-card__selected {
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: 13px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.operator-card.is-selected .operator-card__selected {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.benefit-card__icon,
.support-card__icon,
.account-card__icon {
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.benefit-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-size: 24px;
}

.benefit-card h3,
.support-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 950;
}

.benefit-card p,
.support-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.tariffs {
  padding-top: 86px;
}

.tariff-grid {
  align-items: stretch;
}

.tariff-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.package-card {
  min-height: 470px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.package-card.is-featured {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.26);
}

.tariff-card__accent {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.tariff-card__top,
.package-card__top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
}

.operator-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
  font-size: 24px;
}

.tariff-card h3,
.package-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 950;
}

.tariff-card__top p,
.package-card__top p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.promo,
.deal-badge {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.28);
  font-size: 13px;
  font-weight: 950;
}

.deal-badge--best {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.32);
}

.deal-badge--recommended {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.34);
}

.deal-badge--quiet {
  color: var(--muted);
  background: rgba(203, 213, 225, 0.08);
  border-color: var(--line);
}

.gb-picker {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.gb-picker__value {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 2px;
}

.gb-picker__value strong {
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.gb-picker__value span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.gb-picker__range {
  width: 100%;
  height: 34px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.gb-picker__range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.12);
}

.gb-picker__range::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -9px;
  border-radius: 50%;
  border: 4px solid var(--text);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
  transition: transform 170ms var(--ease), box-shadow 220ms var(--ease);
}

.gb-picker__range:hover::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 16px 38px rgba(56, 189, 248, 0.42);
}

.gb-picker__range:active::-webkit-slider-thumb {
  transform: scale(0.96);
}

.gb-picker__range::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.gb-picker__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid var(--text);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.gb-hint {
  min-height: 26px;
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.gb-hint.is-changing {
  animation: hint-change 420ms var(--ease);
}

.price-total {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.price-total span {
  color: var(--muted);
  font-weight: 850;
}

.price-total strong {
  color: var(--text);
  font-size: 28px;
  font-weight: 950;
}

.price-total strong.is-updating {
  animation: price-pop 360ms var(--ease);
}

.package-buy {
  min-height: 58px;
  animation: buy-glow 2.4s var(--ease) infinite alternate;
}

.package-buy:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 20px 54px rgba(56, 189, 248, 0.34), 0 0 0 1px rgba(248, 250, 252, 0.12) inset;
}

.package-buy:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.22);
}

.tariffs-page {
  min-height: 100svh;
}

.tariffs-hero {
  min-height: 72svh;
  display: flex;
  align-items: center;
  padding-top: 24px;
}

.tariffs-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.2);
}

.tariffs-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
}

.tariffs-hero__content {
  width: min(100%, 860px);
  margin: 82px auto 0;
  text-align: center;
}

.tariffs-hero__content .eyebrow {
  margin-inline: auto;
}

.tariffs-hero__content h1 {
  margin: 20px 0 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 950;
}

.tariffs-hero__content p {
  width: min(100%, 680px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65;
}

.tariffs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.connection-tariffs {
  padding-top: 42px;
}

.tariff-filter {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 22px;
  padding: 9px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

.tariff-filter__button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(30, 41, 59, 0.58);
  border: 1px solid rgba(203, 213, 225, 0.12);
  cursor: pointer;
  transition:
    transform 190ms var(--ease),
    opacity 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.tariff-filter__button:hover {
  transform: translateY(-2px);
  border-color: var(--filter-accent);
  box-shadow: 0 14px 34px var(--filter-glow);
}

.tariff-filter__button:active {
  transform: translateY(1px) scale(0.98);
}

.tariff-filter__button.is-active {
  background: linear-gradient(135deg, var(--filter-soft), rgba(37, 99, 235, 0.16));
  border-color: var(--filter-accent);
  box-shadow: 0 16px 42px var(--filter-glow), inset 0 1px 0 rgba(248, 250, 252, 0.12);
}

.tariff-filter__button--activ {
  --filter-accent: rgba(168, 85, 247, 0.54);
  --filter-soft: rgba(168, 85, 247, 0.16);
  --filter-glow: rgba(168, 85, 247, 0.2);
}

.tariff-filter__button--beeline {
  --filter-accent: rgba(250, 204, 21, 0.5);
  --filter-soft: rgba(250, 204, 21, 0.13);
  --filter-glow: rgba(250, 204, 21, 0.18);
}

.tariff-filter__button--tele2 {
  --filter-accent: rgba(56, 189, 248, 0.5);
  --filter-soft: rgba(56, 189, 248, 0.15);
  --filter-glow: rgba(56, 189, 248, 0.2);
}

.tariff-filter__button--altel {
  --filter-accent: rgba(244, 114, 182, 0.52);
  --filter-soft: rgba(244, 114, 182, 0.14);
  --filter-glow: rgba(244, 114, 182, 0.19);
}

.connection-tariffs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.connection-tariff-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.07), rgba(248, 250, 252, 0.02)),
    rgba(30, 41, 59, 0.66);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(18px);
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    opacity 260ms var(--ease),
    filter 260ms var(--ease);
}

.connection-tariff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.2);
}

.connection-tariff-card.is-muted {
  opacity: 0.5;
  filter: saturate(0.82) blur(0.2px);
}

.connection-tariff-card.is-highlighted {
  opacity: 1;
  filter: none;
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.22), 0 26px 78px rgba(37, 99, 235, 0.28);
}

.connection-tariff-card::before {
  content: "";
  position: absolute;
  inset: -46% -28% auto;
  height: 72%;
  opacity: 0.75;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.17), transparent 68%);
  pointer-events: none;
}

.connection-tariff-card--activ {
  --plan-accent: rgba(244, 114, 182, 0.52);
  --plan-accent-soft: rgba(244, 114, 182, 0.11);
}

.connection-tariff-card--beeline {
  --plan-accent: rgba(250, 204, 21, 0.46);
  --plan-accent-soft: rgba(250, 204, 21, 0.1);
}

.connection-tariff-card--tele2 {
  --plan-accent: rgba(56, 189, 248, 0.42);
  --plan-accent-soft: rgba(15, 23, 42, 0.28);
}

.connection-tariff-card--altel {
  --plan-accent: rgba(37, 99, 235, 0.48);
  --plan-accent-soft: rgba(37, 99, 235, 0.13);
}

.connection-tariff-card__top,
.connection-tariff-card__price,
.connection-features,
.connect-tariff-btn {
  position: relative;
  z-index: 1;
}

.connection-tariff-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.connection-tariff-card__operator {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: var(--accent);
  background: var(--plan-accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow: 0 0 34px var(--plan-accent);
}

.connection-tariff-card__top h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.connection-tariff-card__top p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.connection-tariff-card__price {
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: 0;
}

.connection-features {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.connection-features li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(203, 213, 225, 0.11);
}

.connection-features span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}

.connection-features em {
  min-width: 0;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.connection-features strong {
  color: var(--text);
  font-weight: 950;
  text-align: right;
}

.connect-tariff-btn:hover {
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.3);
}

.tariff-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
}

.tariff-modal.is-open,
.tariff-modal.is-closing {
  visibility: visible;
}

.tariff-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tariff-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.tariff-modal__panel {
  position: relative;
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.09), rgba(248, 250, 252, 0.03)),
    rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.18);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.97);
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.tariff-modal.is-open .tariff-modal__panel {
  transform: translateY(0) scale(1);
}

.tariff-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
  cursor: pointer;
  transform: rotate(45deg);
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.tariff-modal__close:hover {
  transform: rotate(45deg) scale(1.06);
  background: rgba(37, 99, 235, 0.24);
}

.tariff-modal__panel h2 {
  margin: 18px 54px 0 0;
  font-size: 34px;
  line-height: 1.1;
}

.tariff-modal__panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tariff-modal__plan {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid var(--line);
}

.tariff-modal__plan span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.tariff-modal__plan strong {
  font-size: 19px;
}

.tariff-modal__field {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 850;
}

.tariff-modal__field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(203, 213, 225, 0.16);
  font: inherit;
  font-weight: 900;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.tariff-modal__field input:focus {
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 34px 0 24px;
}

.price-row strong {
  font-size: 52px;
  line-height: 1;
  font-weight: 950;
}

.price-row del {
  color: var(--muted);
  font-size: 21px;
  font-weight: 900;
  text-decoration-thickness: 2px;
}

.features {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.features svg {
  flex: 0 0 auto;
  color: var(--success);
  margin-top: 2px;
}

.expires {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.tariff-card__actions {
  display: grid;
  gap: 12px;
}

.reviews__inner {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.16), transparent 28rem),
    rgba(30, 41, 59, 0.32);
  border: 1px solid var(--line);
}

.how {
  padding-top: 80px;
}

.steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: 26px;
}

.step-card__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(203, 213, 225, 0.18);
  font-size: 46px;
  font-weight: 950;
}

.step-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
  font-size: 24px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 950;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stats {
  padding-block: 54px;
}

.stats-panel {
  display: grid;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 10%, rgba(56, 189, 248, 0.18), transparent 24rem),
    rgba(30, 41, 59, 0.5);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-card {
  min-height: 142px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-radius: 24px;
}

.stat-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  font-weight: 950;
}

.stat-card > span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.review-card {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.review-card__stars svg {
  fill: currentColor;
  stroke-width: 1.4;
}

.review-card p {
  color: var(--text);
  font-size: 18px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__author > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 950;
}

.review-card__author strong,
.review-card__author small {
  display: block;
}

.review-card__author small {
  margin-top: 3px;
  color: var(--muted);
}

.support-grid {
  margin-top: 34px;
}

.support-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.support-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 24px;
  font-size: 25px;
}

.support-card__button {
  margin-top: 24px;
}

.accounts-grid {
  margin-top: 22px;
}

.account-card {
  min-height: 76px;
  padding: 0 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 950;
}

.account-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.account-card__icon svg {
  fill: currentColor;
}

.account-card__icon--pink {
  color: #fb7185;
}

.account-card__icon--telegram {
  color: var(--accent);
}

.account-card__icon--whatsapp {
  color: var(--success);
}

.faq__inner {
  display: grid;
  gap: 24px;
}

.faq-list {
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.faq-item__question {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
}

.faq-item__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(37, 99, 235, 0.22);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 22px;
}

.site-footer {
  padding-bottom: 40px;
}

.footer-shell {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.footer-cta {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-cta h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 950;
}

.footer-cta p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-cta .btn {
  width: max-content;
  margin-top: 6px;
}

.footer-columns {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.footer-columns nav,
.footer-columns address {
  display: grid;
  gap: 13px;
  align-content: start;
  font-style: normal;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.footer-columns a,
.footer-columns span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  color: var(--muted);
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-columns a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transform: translateY(12px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact__item {
  position: relative;
  overflow: hidden;
  min-width: 132px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(56, 189, 248, 0.26);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
  font-weight: 950;
  animation: contact-enter 520ms var(--ease) both, contact-pulse 2.4s var(--ease) infinite alternate;
  transition: transform 200ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.floating-contact__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.floating-contact__icon svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 8px 14px rgba(56, 189, 248, 0.24));
}

.floating-contact__item--whatsapp .floating-contact__icon {
  color: var(--success);
}

.floating-contact__item--whatsapp {
  animation-delay: 120ms, 260ms;
}

.floating-contact__item:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(56, 189, 248, 0.48);
  background: rgba(37, 99, 235, 0.28);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(56, 189, 248, 0.3);
}

.ambient-clicks {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: visible;
}

.heart-particle {
  position: absolute;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  filter: drop-shadow(0 8px 12px rgba(56, 189, 248, 0.22));
  will-change: transform, opacity;
  animation: heart-burst var(--d, 1120ms) cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-pulse {
  to {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 0 78px rgba(56, 189, 248, 0.58);
  }
}

@keyframes loading-bar {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(210%);
  }
}

@keyframes drift {
  to {
    transform: translate3d(4rem, 2rem, 0) scale(1.08);
  }
}

@keyframes status-pulse {
  to {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2), 0 0 18px rgba(16, 185, 129, 0.38);
  }
}

@keyframes scan-line {
  0% {
    transform: translateX(-24px);
    opacity: 0;
  }
  35%,
  65% {
    opacity: 0.44;
  }
  100% {
    transform: translateX(42px);
    opacity: 0;
  }
}

@keyframes chip-float {
  to {
    transform: translateY(-12px);
  }
}

@keyframes heart-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62);
  }
  16% {
    opacity: 1;
    transform: translate(calc(-50% + var(--tx) * 0.2), calc(-50% + var(--ty) * 0.2)) scale(1);
  }
  68% {
    opacity: 0.86;
    transform: translate(calc(-50% + var(--tx) * 0.78), calc(-50% + var(--ty) * 0.78)) scale(0.92);
  }
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.7);
  }
}

@keyframes hint-change {
  45% {
    opacity: 0.45;
    transform: translateY(-3px);
  }
}

@keyframes price-pop {
  45% {
    transform: scale(1.09);
    color: var(--accent);
  }
}

@keyframes buy-glow {
  to {
    box-shadow: 0 18px 44px rgba(56, 189, 248, 0.28);
  }
}

@keyframes contact-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contact-pulse {
  to {
    box-shadow: 0 20px 58px rgba(56, 189, 248, 0.3);
  }
}
