/* ─── FEES PAGE STYLES ─── */

/* Fees Hero Section */
.fees-hero {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}

.fees-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.fees-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.fees-hero .hero-subtitle {
  font-size: 18px;
  max-width: 100%;
}

/* Pricing Section */
.pricing {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 40px rgba(90, 128, 104, 0.12);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--sage);
  background: linear-gradient(180deg, var(--white) 0%, rgba(221, 231, 226, 0.25) 100%);
  box-shadow: 0 8px 32px rgba(90, 128, 104, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 48px rgba(90, 128, 104, 0.2);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 10px 10px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}

.currency {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage-dark);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 13px;
}

.pricing-card .cta-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: auto;
}

/* Additional Fees Table */
.additional-fees {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.fees-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.fees-table thead {
  background: var(--sage-pale);
}

.fees-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  padding: 16px 24px;
  text-align: left;
}

.fees-table td {
  padding: 20px 24px;
  color: var(--text);
  font-weight: 300;
  border-top: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.fees-table tbody tr {
  transition: background 0.2s ease;
}

.fees-table tbody tr:hover {
  background: rgba(221, 231, 226, 0.25);
}

.fees-table td:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  white-space: nowrap;
}

.table-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* Payment Info Section */
.payment-info {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  border-color: var(--sage-light);
  box-shadow: 0 8px 28px rgba(90, 128, 104, 0.1);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.info-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 920px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .fees-hero {
    margin-bottom: 40px;
    padding: 24px 0;
  }

  .fees-hero .hero-title {
    font-size: 2rem;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .fees-table th,
  .fees-table td {
    padding: 14px 16px;
  }
}
