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

:root {
  --yellow: #FFD600;
  --yellow-light: #FFE033;
  --dark: #111111;
  --card: #1C1C1C;
  --card2: #242424;
  --text: #FFFFFF;
  --muted: #888888;
  --red: #E53935;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03);
  background: var(--yellow-light);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.3);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--yellow);
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: #fff;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(17,17,17,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav__mobile.open {
  display: flex;
}

.mobile-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: #fff;
}

.mobile-btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* LANG SWITCH */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}

.lang-switch button.active {
  background: var(--yellow);
  color: #111;
}

.lang-switch button:not(.active):hover {
  color: #fff;
}

.lang-switch--mobile {
  margin-top: 12px;
  align-self: flex-start;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 40%, var(--dark) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 214, 0, 0.12);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 214, 0, 0.2);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--yellow);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
}

/* STATS */
.stats {
  padding: 0;
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  cursor: default;
  transition: background 0.25s ease;
  position: relative;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.3s ease;
}

.stat-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.stat-card:hover {
  background: rgba(255, 214, 0, 0.04);
}

.stat-card__num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* BENEFITS */
.benefits {
  background: var(--dark);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 214, 0, 0.2);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 214, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* SELFEMPLOYED */
.selfemployed {
  background: var(--yellow);
  color: #111;
}

.selfemployed .section__title {
  color: #111;
}

.selfemployed__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.selfemployed__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #111;
}

.selfemployed__text > p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 28px;
}

.warning-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 32px;
}

.warning-block__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}

.warning-block p {
  font-size: 0.875rem;
  color: #222;
  line-height: 1.5;
}

.selfemployed .btn {
  background: #111;
  color: var(--yellow);
}

.selfemployed .btn:hover {
  background: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.selfemployed__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step__line {
  width: 2px;
  height: 32px;
  background: rgba(0,0,0,0.15);
  margin-left: 19px;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.step__text p {
  font-size: 0.85rem;
  color: #444;
}

/* HOW TO */
.howto {
  background: var(--card);
}

.howto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.howto-step {
  padding: 32px 24px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.howto-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.howto-step__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.howto-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.howto-step p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* FORM */
.form-section {
  background: var(--dark);
}

.form-wrap {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.form-wrap h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.form-wrap > p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.form__field {
  position: relative;
}

.form__field input {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.form__field input::placeholder {
  color: #555;
}

.form__field input:focus {
  border-color: var(--yellow);
}

.form__field input.error {
  border-color: var(--red);
}

.form__error {
  display: none;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
  padding-left: 4px;
}

.form__error.show {
  display: block;
}

.form .btn {
  margin-top: 8px;
}

/* KASPI QR */
.kaspi {
  background: var(--card);
}

.kaspi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kaspi__badge {
  display: inline-block;
  background: rgba(255, 0, 60, 0.12);
  color: #ff3c5f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 0, 60, 0.2);
  margin-bottom: 20px;
}

.kaspi__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.kaspi__text > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.kaspi__steps {
  margin-bottom: 32px;
}

.kaspi__step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kaspi__step span {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ccc;
}

.kaspi__step svg {
  color: var(--muted);
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kaspi__btn {
  background: #ff3c5f;
  color: #fff;
}

.kaspi__btn:hover {
  background: #ff5573;
  box-shadow: 0 8px 24px rgba(255, 60, 95, 0.35);
}

.kaspi__card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kaspi__qr-mock {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-grid {
  width: 120px;
  height: 120px;
  position: relative;
}

.qr-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 4px solid #111;
}

.qr-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.qr-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.qr-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 4px; }

.qr-dots {
  position: absolute;
  inset: 10px;
  background-image:
    radial-gradient(circle, #111 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.6;
}

.kaspi__qr-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.kaspi-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ff3c5f;
}

.kaspi__qr-label span:last-child {
  font-size: 0.75rem;
  color: #666;
}

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

.kaspi__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}

.kaspi__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
  max-width: 220px;
}

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

.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact p {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.footer__wa:hover {
  opacity: 0.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
}

.footer__bottom p {
  color: #444;
  font-size: 0.8rem;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FLOATING CARS */
.hero__floats {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.float-car {
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  user-select: none;
  will-change: transform;
  pointer-events: auto;
  touch-action: none;
  transition: opacity 0.4s ease;
}

.float-car:active {
  cursor: grabbing;
}

/* SHINE BUTTON */
.btn--shine {
  position: relative;
  overflow: hidden;
}

.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: none;
}

.btn--shine:hover::after {
  animation: shine 0.55s ease forwards;
}

@keyframes shine {
  to { left: 130%; }
}

/* TYPING CURSOR */
.typing-cursor {
  display: inline-block;
  animation: blink 0.9s step-end infinite;
  color: var(--yellow);
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s ease-out infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.float-wa:hover .float-wa__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.float-wa__tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* COUNTDOWN */
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 52px;
}

.countdown__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 0.65rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.countdown__sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: #444;
  margin-bottom: 14px;
}

/* SELFEMPLOYED button override */
.selfemployed-btn {
  background: #111;
  color: var(--yellow);
}

.selfemployed-btn:hover {
  background: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* REVIEWS */
.reviews {
  background: var(--dark);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 214, 0, 0.25);
}

.review-card__stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.7;
  flex: 1;
}

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

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: #fff;
}

.review-card__author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CALCULATOR */
.calc {
  background: var(--card);
}

.calc__inner {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px;
}

.calc__sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.calc__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.calc__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc__field label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.calc__field label strong {
  color: var(--yellow);
}

.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  accent-color: var(--yellow);
}

.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,214,0,0.15);
  transition: box-shadow 0.2s;
}

.calc__slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(255,214,0,0.2);
}

.calc__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #444;
}

.calc__note {
  font-size: 0.78rem;
  color: #444;
}

.calc__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 220px;
}

.calc__result {
  text-align: center;
  background: rgba(255,214,0,0.06);
  border: 1px solid rgba(255,214,0,0.15);
  border-radius: 16px;
  padding: 24px 32px;
  width: 100%;
}

.calc__result-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.calc__result-amount {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: all 0.15s ease;
}

.calc__result-currency {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selfemployed__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .stat-card:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .kaspi__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .calc__body {
    grid-template-columns: 1fr;
  }

  .calc__right {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .nav__inner > .btn--sm:not(.mobile-btn) {
    display: none;
  }

  .nav__inner > .lang-switch {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Hero - по центру */
  .hero__content {
    text-align: center;
  }

  .hero__sub {
    max-width: 100%;
  }

  .hero__content .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats - центр */
  .stat-card {
    text-align: center;
  }

  /* Benefits - центр */
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    text-align: center;
  }

  .benefit-card__icon {
    margin: 0 auto 16px;
  }

  /* Section titles */
  .section__title {
    text-align: center;
  }

  /* Howto - центр */
  .howto__grid {
    grid-template-columns: 1fr;
  }

  .howto-step {
    text-align: center;
  }

  /* Reviews - центр */
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review-card__author {
    justify-content: center;
  }

  /* Calculator */
  .calc__inner {
    padding: 32px 20px;
  }

  .calc__body {
    grid-template-columns: 1fr;
  }

  .calc__right {
    min-width: unset;
    width: 100%;
    align-items: center;
  }

  .calc__inner h2 {
    text-align: center;
  }

  .calc__sub {
    text-align: center;
  }

  .calc__result {
    width: 100%;
  }

  .calc__right .btn {
    width: 100%;
    justify-content: center;
  }

  /* Kaspi */
  .kaspi__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kaspi__text {
    text-align: center;
  }

  .kaspi__steps {
    display: flex;
    justify-content: center;
  }

  .kaspi__step {
    justify-content: center;
    flex-wrap: wrap;
  }

  .kaspi__text .btn {
    width: 100%;
    justify-content: center;
  }

  /* Selfemployed */
  .selfemployed__text {
    text-align: center;
  }

  .selfemployed__text .btn {
    width: 100%;
    justify-content: center;
  }

  .warning-block {
    text-align: left;
  }

  .countdown {
    justify-content: center;
  }

  /* Form */
  .form-wrap {
    text-align: center;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 64px 0;
  }
}
