/* Bloom CSS Logistics: Payment Terms Page */
.es-terms-page {
  width: 100%;
  padding: clamp(64px, 7vw, 110px) 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,201,40,0.10), transparent 24%),
    radial-gradient(circle at 8% 18%, rgba(0,174,234,0.07), transparent 26%),
    linear-gradient(135deg, #f4f8fb 0%, #ffffff 48%, #f5efe1 100%);
  color: #071827;
}

.es-terms-page *,
.es-terms-page *::before,
.es-terms-page *::after {
  box-sizing: border-box;
}

.es-terms-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.es-terms-header {
  margin-bottom: 28px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(7,24,39,0.96), rgba(3,17,29,0.96));
  color: #fff;
  box-shadow: 0 28px 80px rgba(7,24,39,0.14);
}

.es-terms-kicker {
  margin: 0 0 14px;
  color: #ffc928;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.es-terms-header h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.es-terms-header p {
  margin: 20px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.es-terms-card {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(7,24,39,0.08);
  box-shadow: 0 16px 50px rgba(7,24,39,0.06);
}

.es-terms-card--important {
  border-left: 5px solid #00aeea;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,254,0.96));
}

.es-terms-card h2 {
  margin: 0 0 18px;
  color: #071827;
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.es-terms-card p {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.75;
  font-size: 0.98rem;
}

.es-terms-card p:last-child {
  margin-bottom: 0;
}

.es-terms-highlight {
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(0,174,234,0.09);
  border: 1px solid rgba(0,174,234,0.15);
  color: #071827 !important;
  font-weight: 800;
}

.es-terms-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.es-terms-card li {
  color: #334155;
  line-height: 1.7;
}

.es-terms-card li strong {
  color: #071827;
}

.es-terms-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(7,24,39,0.06);
  border: 1px solid rgba(7,24,39,0.08);
}

.es-terms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7,24,39,0.1);
  color: #071827;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 900;
  transition: 0.22s ease;
}

.es-terms-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0,174,234,0.22);
}

.es-terms-btn--primary {
  background: linear-gradient(135deg, #ffc928, #ff9f1c);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(255,201,40,0.22);
}

@media (max-width: 640px) {
  .es-terms-page {
    padding: 48px 16px;
  }

  .es-terms-header {
    border-radius: 22px;
  }

  .es-terms-card {
    border-radius: 18px;
  }

  .es-terms-footer {
    flex-direction: column;
  }

  .es-terms-btn {
    width: 100%;
  }
}