/* Core-funnel UI (homepage hero success state, /fees/ page). Loaded by index.html and fees/index.html. */

/* Homepage hero: actions after a career-call request */
.home-thanks__actions { display: grid; gap: 10px; justify-items: stretch; }
.home-thanks__actions .btn { width: 100%; justify-content: center; text-align: center; }
.home-thanks__wa { border-color: #1F8F4E !important; color: #17753F !important; }
.home-thanks__link { font-size: 13px; font-weight: 700; color: var(--maroon, #8B1A1A); text-decoration: underline; text-underline-offset: 3px; }
.booking-card .thank-you-card p strong,
.booking-card__form p strong { color: var(--ink, #1C1410); }

/* ── /fees/ page ─────────────────────────────────────────── */
.fees-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border, #E2DDD8); }
.fees-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; margin: 0 0 20px; }
.fees-hero__lede { font-size: 18px; line-height: 1.7; color: var(--ink-mid, #4A3F38); margin: 0 0 28px; }
.fees-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fees-section { padding: 64px 0; }
.fees-section h2 { margin-bottom: 20px; }

.fees-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--border, #E2DDD8); border-radius: 12px; }
.fees-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.fees-table th, .fees-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border, #E2DDD8); }
.fees-table thead th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted, #7A726C); background: var(--off-white, #FAF8F5); }
.fees-table tbody tr:last-child th, .fees-table tbody tr:last-child td { border-bottom: 0; }
.fees-table tbody th a { color: var(--ink, #1C1410); font-weight: 700; text-decoration: none; }
.fees-table tbody th a:hover { color: var(--crimson, #8B1A1A); }
.fees-table strong { font-size: 17px; }
.fees-table__apply { font-weight: 700; color: var(--crimson, #8B1A1A); text-decoration: none; white-space: nowrap; }
.fees-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.fees-note { font-size: 13px; color: var(--muted, #7A726C); margin-top: 14px; }

.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fees-card { position: relative; }
.fees-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.fees-card p { font-size: 14px; line-height: 1.7; color: var(--ink-mid, #4A3F38); margin: 0; }
.fees-card .fees-card__price { font-family: var(--serif, Georgia, serif); font-size: 2rem; color: var(--ink, #1C1410); margin: 4px 0 10px; }
.fees-card .fees-card__price--text { font-size: 1.5rem; }
.fees-card--highlight { border-color: var(--crimson, #8B1A1A); background: var(--crimson-tint, #FDF5F5); }
.fees-card .fees-card__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--crimson, #8B1A1A); padding: 3px 8px; border-radius: 4px; margin-bottom: 10px; }
.fees-steps { margin-top: 40px; }
.fees-steps h3 { font-size: 1.1rem; margin: 0 0 12px; }
.fees-steps ol { margin: 0; padding-left: 20px; display: grid; gap: 10px; font-size: 15px; line-height: 1.6; color: var(--ink-mid, #4A3F38); }

.fees-included, .fees-refund { margin: 0; padding-left: 20px; display: grid; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--ink-mid, #4A3F38); max-width: 760px; }
.fees-refund { margin-bottom: 20px; }

.fees-faq { display: grid; gap: 10px; }
.fees-faq__item { background: #fff; border: 1px solid var(--border, #E2DDD8); border-radius: 10px; padding: 16px 20px; }
.fees-faq__item summary { cursor: pointer; font-weight: 700; color: var(--ink, #1C1410); }
.fees-faq__item p { margin: 10px 0 0; font-size: 15px; line-height: 1.7; color: var(--ink-mid, #4A3F38); }

.fees-cta { padding: 72px 0; }
.fees-cta__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.fees-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0; }
.fees-cta__text { color: rgba(255, 255, 255, .7); font-size: 16px; line-height: 1.7; margin: 0 0 28px; }
.fees-cta__form { margin: 0; }

@media (max-width: 900px) {
  .fees-grid, .fees-cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fees-hero { padding: 48px 0 40px; }
  .fees-section { padding: 48px 0; }
  .fees-hero__actions .btn { width: 100%; justify-content: center; }
  /* Fee table becomes stacked cards on phones */
  .fees-table-wrap { background: transparent; border: 0; overflow: visible; }
  .fees-table thead { display: none; }
  .fees-table, .fees-table tbody, .fees-table tr, .fees-table th, .fees-table td { display: block; width: 100%; }
  .fees-table tr { background: #fff; border: 1px solid var(--border, #E2DDD8); border-radius: 12px; margin-bottom: 12px; padding: 6px 0; }
  .fees-table th, .fees-table td { border: 0; padding: 8px 16px; }
  .fees-table td[data-label]:not([data-label=""])::before { content: attr(data-label) ": "; color: var(--muted, #7A726C); font-size: 13px; }
}
