.eko-price-hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 82% 16%, rgba(58, 146, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #061626, #0b2d4a);
  color: rgba(255, 255, 255, 0.76);
}

.eko-price-hero h1 {
  max-width: 920px;
  color: #fff;
}

.eko-price-hero p {
  max-width: 760px;
  font-size: 19px;
  margin: 0 0 28px;
}

.eko-price-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eko-price-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.eko-price-info {
  background: #061626;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eko-price-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.eko-price-info-grid div {
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.eko-price-info-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.eko-price-info-grid strong {
  display: block;
  font-family: var(--eko-head);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 2px;
}

.eko-price-info-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.eko-price-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(58, 146, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f9fd 0%, #fff 100%);
}

.eko-price-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.eko-price-heading p {
  font-size: 18px;
  color: var(--eko-muted);
  margin: 0;
}

.eko-price-list {
  display: grid;
  gap: 14px;
}

.eko-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(213, 226, 237, 0.95);
  box-shadow: 0 16px 42px rgba(5, 22, 38, 0.065);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eko-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 146, 255, 0.44);
  box-shadow: 0 22px 56px rgba(5, 22, 38, 0.11);
}

.eko-price-card-main span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--eko-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eko-price-card-main h3 {
  font-size: 22px;
  margin: 0;
}

.eko-price-card-price {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0b2d4a;
  font-family: var(--eko-head);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.eko-price-note-section {
  padding: 0 0 92px;
  background: #fff;
}

.eko-price-note-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 18%, rgba(58, 146, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #061626, #0b2d4a);
  color: rgba(255, 255, 255, 0.78);
}

.eko-price-note-card h2 {
  color: #fff;
}

.eko-price-note-card p {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
}

.eko-price-note-card .btn {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .eko-price-hero {
    padding: 70px 0 56px;
  }

  .eko-price-section {
    padding: 72px 0;
  }

  .eko-price-info-grid {
    grid-template-columns: 1fr;
  }

  .eko-price-info-grid div,
  .eko-price-info-grid div:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .eko-price-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eko-price-card-price {
    justify-self: start;
  }

  .eko-price-note-card {
    display: block;
  }

  .eko-price-note-card .btn {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .eko-price-hero {
    padding: 52px 0 44px;
  }

  .eko-price-section {
    padding: 56px 0;
  }

  .eko-price-card {
    padding: 22px;
    border-radius: 22px;
  }

  .eko-price-card-main h3 {
    font-size: 20px;
  }

  .eko-price-card-price {
    width: 100%;
    white-space: normal;
  }

  .eko-price-note-section {
    padding-bottom: 64px;
  }

  .eko-price-note-card {
    padding: 26px;
    border-radius: 26px;
  }
}