* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f7fb;
  color: #111827;
}

.elton-pricing {
  width: 100%;
  padding: 70px 18px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #0b63ce;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
  color: #0f172a;
}

.pricing-header p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: #64748b;
}

.pricing-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  min-height: 410px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.13);
  border-color: #bfdbfe;
}

.plan-label {
  display: block;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.15;
  color: #111827;
}

.price {
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: #020617;
}

.price span {
  margin-left: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}

.desc {
  min-height: 48px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin-bottom: 22px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.45;
  color: #243042;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b63ce;
  font-weight: 900;
}

.pricing-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  background: #0b63ce;
}

.featured {
  border: 2px solid #0b63ce;
  background: #ffffff;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 999px;
  background: #0b63ce;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.featured-btn {
  background: #0b63ce;
}

.featured-btn:hover {
  background: #084da1;
}

.dark-card {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.dark-card h3,
.dark-card .price,
.dark-card li {
  color: #ffffff;
}

.dark-card .plan-label,
.dark-card .desc,
.dark-card .price span {
  color: #b5b5b5;
}

.dark-card li::before {
  color: #ffffff;
}

.light-btn {
  background: #ffffff;
  color: #111111;
}

.light-btn:hover {
  background: #e5e7eb;
}

.pricing-note {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}

.pricing-note p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .elton-pricing {
    padding: 54px 0 46px;
  }

  .pricing-header {
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .pricing-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 20px 20px;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid::-webkit-scrollbar {
    height: 6px;
  }

  .pricing-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

  .pricing-card {
    flex: 0 0 86%;
    min-width: 280px;
    max-width: 360px;
    min-height: 390px;
    padding: 24px;
    scroll-snap-align: center;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-note {
    padding: 0 20px;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .pricing-card {
    flex-basis: 88%;
    padding: 22px;
    border-radius: 22px;
  }

  .pricing-card h3 {
    font-size: 23px;
  }

  .price {
    font-size: 36px;
  }
}
