/* ═══════════════════════════════════════════
   RATES PAGE
═══════════════════════════════════════════ */
.rates-page {
  --accent: #6FBEF0;
  --accent-2: #3FA7E6;
  --card: #101418;
  --card-2: #161B22;
  --muted: #B8C2CC;
  --muted-ink: #5B6573;
  --ink: #0E0E0E;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 24px 120px;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
/* HEAD */
.rates-page .head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.rates-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
}

.rates-page .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.rates-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  margin: 18px 0 16px;
  letter-spacing: -.015em;
  font-weight: 800;
}

.rates-page h1 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rates-page .sub {
  color: var(--muted-ink);
  max-width: 660px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

.rates-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  text-align: center;
  margin: 88px 0 14px;
  letter-spacing: -.01em;
}

.rates-page .sect-sub {
  text-align: center;
  color: var(--muted-ink);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
}

/* PRICING TRIO */
.rates-page .trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.rates-page .pc {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: rgba(111, 190, 240, .22);
  isolation: isolate;
  overflow: hidden;
  transition: transform .4s ease;
}

.rates-page .pc:hover {
  transform: translateY(-6px);
}

@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes ratesSpin { to { --ang: 360deg; } }

.rates-page .pc::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from var(--ang, 0deg), transparent 0deg, transparent 250deg, var(--accent) 300deg, #fff 330deg, var(--accent) 360deg);
  filter: blur(8px) saturate(1.4);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  animation: ratesSpin 2.4s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}

.rates-page .pc:hover::before {
  opacity: .9;
  animation-play-state: running;
}

.rates-page .pc .in {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 34px 28px 30px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rates-page .pc .in::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(120% 80% at 0% 0%, rgba(111, 190, 240, .10), transparent 55%);
  pointer-events: none;
}

.rates-page .price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rates-page .price sup {
  font-size: 18px;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  vertical-align: super;
  margin-left: 2px;
}

.rates-page .pc .lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent-2);
  letter-spacing: .22em;
  font-weight: 600;
  text-transform: uppercase;
}

.rates-page .pc .ttl {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}

.rates-page .pc .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* COUNTRY TABLE */
.rates-page .tableWrap {
  margin-top: 60px;
  border-radius: 22px;
  padding: 2px;
  background: rgba(111, 190, 240, .22);
  overflow: hidden;
}

.rates-page .tableInner {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border-radius: 20px;
  padding: 8px;
}

.rates-page table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 15px;
}

.rates-page th,
.rates-page td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.rates-page th {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.rates-page td.price-cell {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  font-size: 16px;
}

.rates-page tbody tr {
  transition: background .25s ease;
}

.rates-page tbody tr:hover {
  background: rgba(111, 190, 240, .06);
}

.rates-page tbody tr:last-child td {
  border-bottom: none;
}

.rates-page .flag {
  margin-right: 10px;
  font-size: 20px;
}

/* NOTES */
.rates-page .notes {
  margin: 36px auto 0;
  display: grid;
  gap: 10px;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.6;
  max-width: 880px;
}

.rates-page .notes div {
  padding-left: 22px;
  position: relative;
}

.rates-page .notes div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* CTA */
.rates-page .ctaWrap {
  margin-top: 80px;
  text-align: center;
}

.rates-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #fff);
  color: #0E0E0E;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.rates-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(63, 167, 230, .4);
}

/* REVEAL */
.rates-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.rates-page .reveal.in {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rates-page .trio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rates-page {
    padding: 130px 18px 90px;
  }
  .rates-page th,
  .rates-page td {
    padding: 14px 14px;
    font-size: 14px;
  }
}