/* Feyihere rate card — standalone page */

.rate-page {
  margin: 0;
  min-height: 100svh;
  background: #FFB7CE;
  color: #1a1216;
  font-family: var(--sans, "Manrope", sans-serif);
  font-size: var(--t-body, 1rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.rate-page__waves {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 0% 50%, transparent 42%, rgba(0 0 0 / 0.12) 100%),
    repeating-radial-gradient(
      circle at 0% 50%,
      transparent 0,
      transparent 18px,
      rgba(255 255 255 / 0.14) 18px,
      rgba(255 255 255 / 0.14) 19px
    );
  opacity: 0.55;
}

.rate-header {
  position: relative;
  z-index: 2;
  padding: 1.25rem var(--pad, 1.25rem);
  max-width: 40rem;
  margin: 0 auto;
}

.rate-header__brand {
  font-family: var(--display, "Syne", sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: inherit;
  text-decoration: none;
}

.rate-sheet {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--pad, 1.25rem) clamp(3rem, 8vh, 5rem);
  display: grid;
  gap: clamp(1.25rem, 3vh, 1.75rem);
}

.rate-sheet__hero {
  text-align: center;
  padding: clamp(1rem, 4vh, 2.5rem) 0 clamp(0.5rem, 2vh, 1rem);
}

.rate-sheet__title {
  margin: 0 0 1rem;
  font-family: var(--display, "Syne", sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 1rem + 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 1px 24px rgba(0 0 0 / 0.08);
}

.rate-sheet__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.rate-sheet__social .social-link {
  color: #fff;
  font-family: var(--mono, "IBM Plex Mono", monospace);
  font-size: var(--t-label, 0.72rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.rate-sheet__social .social-icon {
  width: 1rem;
  height: 1rem;
}

.rate-block__label {
  margin: 0 0 0.5rem;
  color: rgba(26 18 22 / 0.5);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.88rem, 0.84rem + 0.2vw, 1rem);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26 18 22 / 0.08);
}

.rate-table thead {
  background: #1a1216;
  color: #fff;
}

.rate-table th,
.rate-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26 18 22 / 0.08);
}

.rate-table th:last-child,
.rate-table td:last-child {
  text-align: right;
  font-family: var(--mono, "IBM Plex Mono", monospace);
  font-size: 0.92em;
  white-space: nowrap;
}

.rate-table tbody tr:last-child td { border-bottom: 0; }

.rate-table td:first-child {
  font-weight: 600;
  line-height: 1.35;
}

.rate-terms {
  background: #1a1216;
  color: #fff;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 4px;
}

.rate-terms__title {
  margin: 0 0 0.65rem;
  font-family: var(--mono, "IBM Plex Mono", monospace);
  font-size: var(--t-label, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rate-terms p {
  margin: 0;
  font-size: clamp(0.88rem, 0.84rem + 0.15vw, 0.98rem);
  line-height: 1.55;
  color: rgba(255 255 255 / 0.92);
}

.rate-contact {
  display: grid;
  gap: 0.65rem;
  background: #fff;
  padding: 1rem 1.15rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(26 18 22 / 0.08);
}

.rate-contact__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.02rem);
}

.rate-contact__item:hover { color: var(--ac, hsl(350 48% 96%)); }

.rate-contact__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  background: #1a1216;
  color: #fff;
  border-radius: 50%;
}

.rate-contact__icon svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 600px) {
  .rate-header,
  .rate-sheet {
    max-width: 34rem;
  }
}
