/* roboto-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/roboto-v51-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v51-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --bg: #050510;
  --surface: #0d0d2b;
  --card: #10103a;
  --accent: #7b5ea7;
  --accent2: #5b8def;
  --gold: #f5c842;
  --gold2: #ffaa00;
  --text: #f0eeff;
  --muted: #8884aa;
  --border: rgba(123, 94, 167, 0.25);
  --glow: rgba(123, 94, 167, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* BG MESH */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 10%,
      rgba(91, 141, 239, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 80%,
      rgba(123, 94, 167, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 50% 50%,
      rgba(245, 200, 66, 0.04) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* STARS */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: twinkle var(--dur) var(--delay) infinite ease-in-out;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: var(--op);
    transform: scale(1);
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 5%;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 16, 0.7);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-gem {
  /* clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); */

  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.6));
  animation: gemRotate 6s ease-in-out infinite;
  img {
    display: flex;
    align-items: center;
    max-width: 40px;
    border-radius: 50%;
  }
}
@keyframes gemRotate {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.08);
  }
}
.logo span {
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition:
    opacity 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 94, 167, 0.15);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(245, 200, 66, 0);
  }
}

.hero h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .line2 {
  background: #eeaeca;
  background: radial-gradient(
    circle,
    rgba(238, 174, 202, 1) 65%,
    rgba(148, 187, 233, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 24px auto 0;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(245, 200, 66, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245, 200, 66, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(123, 94, 167, 0.1);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* SECTION */
section {
  position: relative;
  z-index: 1;
  padding: 90px 5%;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  /* text-transform: uppercase; */
  color: var(--accent2);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-sub {
  color: var(--muted);
  margin-top: 12px;
  max-width: 420px;
}
.center {
  text-align: center;
}
.center .section-sub {
  margin: 12px auto 0;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--accent);
  border-color: var(--accent);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); */
  gap: 22px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.price-card {
  display: grid;
  max-width: 300px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  transition: transform 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
}
/* 3oylik uchun border rangi */
.price-card.popular-3month {
  border-color: pink;
  box-shadow:
    0 0 40px rgba(245, 200, 66, 0.15),
    inset 0 0 40px rgba(245, 200, 66, 0.03);
}
/* 1oylik uchun border rangi */
.price-card.popular-1month {
  border-color: gold;
  box-shadow:
    0 0 40px rgba(245, 200, 66, 0.15),
    inset 0 0 40px rgba(245, 200, 66, 0.03);
}

/* 1oylik uchun border rangi */
.price-card.popular-12month {
  border-color: #1ae85b;
  border-color: radial-gradient(
    circle,
    rgba(26, 232, 91, 1) 33%,
    rgba(148, 187, 233, 1) 100%
  );
  box-shadow:
    0 0 40px rgba(245, 200, 66, 0.15),
    inset 0 0 40px rgba(245, 200, 66, 0.03);
}

/* 3oylik popular ozuv */
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #e81a76;
  background: radial-gradient(
    circle,
    rgba(232, 26, 118, 1) 65%,
    rgba(148, 187, 233, 1) 100%
  );
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Popular badge yani 1oylik yozuvniki */

.popular-badge-gold {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Popular badge yani 12oylik yozuvniki */

.popular-badge-green {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1ae85b;
  background: radial-gradient(
    circle,
    rgba(26, 232, 91, 1) 33%,
    rgba(148, 187, 233, 1) 100%
  );
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/*  */
.plan-name {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.plan-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.plan-price .currency {
  font-size: 1.4rem;
  margin-right: 3px;
}
.plan-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li:last-child {
  border-bottom: none;
}
/* chek 1oy */
.check1 {
  color: var(--gold);
  flex-shrink: 0;
}

/* chek yulduz 3 oy */
.check3 {
  color: #e81a76;
  color: radial-gradient(
    circle,
    rgba(232, 26, 118, 1) 65%,
    rgba(148, 187, 233, 1) 100%
  );
  flex-shrink: 0;
}

/* chek yulduz 12 oy */
.check12 {
  color: #1ae85b;
  color: radial-gradient(
    circle,
    rgba(26, 232, 91, 1) 33%,
    rgba(148, 187, 233, 1) 100%
  );
  flex-shrink: 0;
}
/*       */
.plan-btn {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.plan-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.plan-btn.gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
}
.plan-btn.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.plan-btn.outline:hover {
  border-color: var(--accent);
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 60px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--glow);
}
.step h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 56px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.stars-row {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CTA */
.cta-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 64px 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 200, 66, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.cta-gem {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: gemFloat 4s ease-in-out infinite;
}
@keyframes gemFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FAQ */
.faq-list {
  max-width: 680px;
  margin: 50px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: var(--muted);
}
.faq-q.open .arrow {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  a {
    text-decoration: none;
    color: wheat;
  }
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 20px;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TELEGRAM FLOAT */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(42, 171, 238, 0.4);
  transition: transform 0.2s;
  text-decoration: none;
  img {
    max-width: 56px;
  }
}
.tg-float:hover {
  transform: scale(1.1);
}

/* STARS CALCULATOR */
.stars-calc {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
}
.stars-calc-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.stars-calc-icon {
  font-size: 2.6rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(245, 200, 66, 0.5));
}
.stars-calc-header h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.stars-calc-header p {
  font-size: 0.83rem;
  color: var(--muted);
}

.calc-body {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.calc-input-wrap,
.calc-result-wrap {
  flex: 1;
}
.calc-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.calc-input-row {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.calc-stepper {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  width: 44px;
  height: 52px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}
.calc-stepper:hover {
  color: var(--gold);
  background: rgba(245, 200, 66, 0.08);
}
.calc-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  min-width: 0;
  padding: 0 4px;
  height: 52px;
}
.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.calc-hint {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 7px;
}

.calc-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

.calc-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  transition: transform 0.15s ease;
}
.calc-price.bump {
  transform: scale(1.08);
}
.calc-price-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 5px;
}

/* SLIDER */
.calc-slider-wrap {
  margin-bottom: 24px;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    var(--gold) var(--pct, 5%),
    rgba(255, 255, 255, 0.1) var(--pct, 5%),
    rgba(255, 255, 255, 0.1) 100%
  );
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.5);
  cursor: pointer;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
}

/* QUICK BTNS */
.calc-quick {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}
.calc-quick-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-right: 4px;
}
.calc-quick-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.calc-quick-btn:hover,
.calc-quick-btn.active {
  background: rgba(245, 200, 66, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.calc-order-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  border-radius: 14px;
}


.stars-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 56px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  align-items: center;
}
/* .stars-what {
} */
.stars-icon-big {
  font-size: 3rem;
  margin-bottom: 14px;
}
.stars-what h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.stars-what p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}
.stars-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stars-use-item {
  background: rgba(245, 200, 66, 0.06);
  border: 1px solid rgba(245, 200, 66, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.stars-use-item span {
  color: var(--muted);
}

.stars-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.stars-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.stars-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(245, 200, 66, 0.12);
}
.stars-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.12);
}
.stars-amount {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stars-card-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.stars-card-period {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 22px;
}

  .hero-stats {
    gap: 28px;
  }
  .steps::before {
    display: none;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .stars-info {
    grid-template-columns: 1fr;
  }
  .stars-uses {
    grid-template-columns: 1fr;
  }
}
