.es-fee-page {
  padding: clamp(72px, 8vw, 120px) 20px;
  background:
    linear-gradient(
      135deg,
      #f4f8fb 0%,
      #f7f7f2 52%,
      #f5efe1 100%
    );
}

.es-fee-page *,
.es-fee-page *::before,
.es-fee-page *::after {
  box-sizing: border-box;
}

.es-fee-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(7,24,39,0.08);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(7,24,39,0.08);
  backdrop-filter: blur(8px);
}

.es-fee-header {
  margin-bottom: 34px;
}

.es-fee-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.es-fee-header h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #071827;
}

.es-fee-hours {
  margin: 0;
  font-size: 1rem;
  color: #334155;
}

.es-fee-hours strong {
  color: #071827;
}

.es-fee-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.es-fee-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7,24,39,0.05);
  border: 1px solid rgba(7,24,39,0.08);
}

.es-fee-row--blue {
  background: rgba(0, 169, 255, 0.08);
  border-color: rgba(0, 169, 255, 0.14);
}

.es-fee-price {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #071827;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.es-fee-row--blue .es-fee-price {
  background: #00a9ff;
}

.es-fee-row p {
  margin: 0;
  line-height: 1.7;
  color: #334155;
}

.es-fee-note {
  margin-bottom: 26px;
}

.es-fee-note p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: #334155;
}

.es-fee-warning {
  font-weight: 700;
  color: #00a9ff !important;
}

.es-fee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.es-fee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: 0.22s ease;
}

.es-fee-btn:hover {
  transform: translateY(-2px);
}

.es-fee-btn--primary {
  background: #071827;
  color: #fff;
  box-shadow: 0 12px 24px rgba(7,24,39,0.16);
}

.es-fee-btn--primary:hover {
  background: #0d2539;
}

.es-fee-btn--review {
  background: #ffc928;
  color: #071827;
}

.es-fee-btn--review:hover {
  background: #ffcf3d;
}

.es-fee-terms {
  padding: 26px;
  border-radius: 20px;
  background: rgba(7,24,39,0.04);
  border-left: 4px solid #00a9ff;
  margin-bottom: 26px;
}

.es-fee-terms h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #071827;
}

.es-fee-terms ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.es-fee-terms li {
  line-height: 1.7;
  color: #334155;
}

.es-fee-footer {
  padding-top: 8px;
}

.es-fee-footer p {
  margin: 0;
  line-height: 1.7;
  color: #475569;
}

.es-fee-footer a {
  color: #071827;
  font-weight: 700;
  text-decoration: none;
}

.es-fee-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {

  .es-fee-page {
    padding: 56px 16px;
  }

  .es-fee-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .es-fee-row {
    flex-direction: column;
    gap: 14px;
  }

  .es-fee-price {
    min-width: 84px;
  }

  .es-fee-actions {
    flex-direction: column;
  }

  .es-fee-btn {
    width: 100%;
  }

  .es-fee-terms {
    padding: 22px 18px;
  }
}