:root {
  --emerald: #0A2463;
  --emerald-deep: #07173d;
  --emerald-soft: #153782;
  --gold: #D4A017;
  --gold-soft: rgba(212, 160, 23, 0.14);
  --charcoal: #1C1C1C;
  --text: #2f3034;
  --muted: #656b78;
  --line: rgba(10, 36, 99, 0.1);
  --surface: #ffffff;
  --surface-soft: #f7f5f0;
  --surface-tint: #eef2fb;
  --white: #ffffff;
  --cream: #f7f5f0;
  --rule: rgba(10, 36, 99, 0.1);
  --slate: #656b78;
  --silver: #8a909d;
  --ink: #2f3034;
  --em: #0A2463;
  --em-dark: #06183d;
  --em-mid: #153782;
  --navy: #0A2463;
  --lime: #6fa3ff;
  --em-tint: #eef2fb;
  --shadow-lg: 0 30px 70px rgba(7, 23, 61, 0.16);
  --shadow-md: 0 18px 36px rgba(7, 23, 61, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  /*--container: 1200px;*/
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.1), transparent 25%),
    linear-gradient(180deg, #fcfbf8 0%, #f4f1ea 100%);
}

.frontend-admin-bar {
  position: sticky;
  top: 0;
  z-index: 1100;
  border-top: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(16, 94, 63, 0.96), rgba(9, 71, 47, 0.96));
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.frontend-admin-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.frontend-admin-bar-copy,
.frontend-admin-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.frontend-admin-bar-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.16);
  color: #f5d88b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.frontend-admin-bar-user {
  color: rgba(255, 255, 255, 0.72);
}

.frontend-admin-bar-link,
.frontend-admin-bar-btn {
  text-decoration: none;
}

.frontend-admin-bar-link {
  color: rgba(255, 255, 255, 0.78);
}

.frontend-admin-bar-link:hover {
  color: #fff;
}

.frontend-admin-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2b749, var(--gold));
  color: #201807;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(212, 160, 23, 0.18);
}

.frontend-admin-bar-btn:hover {
  color: #201807;
  transform: translateY(-1px);
}

body.home-page {
  transition: background 0.3s ease, color 0.3s ease;
}

body.theme-dark {
  --text: #eadfc9;
  --ink: #f2e5cd;
  --muted: rgba(233, 220, 196, 0.76);
  --slate: rgba(233, 220, 196, 0.72);
  --silver: rgba(233, 220, 196, 0.58);
  --line: rgba(212, 160, 23, 0.14);
  --rule: rgba(241, 226, 199, 0.12);
  --emerald: #d4a017;
  --emerald-deep: #f2e5cd;
  --emerald-soft: #c1913d;
  --em: #d4a017;
  --em-mid: #e0b75c;
  --em-dark: #8f6520;
  --em-tint: rgba(212, 160, 23, 0.12);
  color: #e9dcc4;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.1), transparent 20%),
    radial-gradient(circle at left center, rgba(70, 39, 21, 0.32), transparent 30%),
    linear-gradient(180deg, #0a0908 0%, #15110f 48%, #100c0b 100%);
}

body.theme-dark .frontend-admin-bar {
  background: linear-gradient(90deg, rgba(13, 79, 53, 0.98), rgba(7, 55, 37, 0.98));
  color: rgba(241, 226, 199, 0.82);
}

body.theme-dark .frontend-admin-bar-user,
body.theme-dark .frontend-admin-bar-link {
  color: rgba(241, 226, 199, 0.74);
}

body.theme-dark .frontend-admin-bar-link:hover {
  color: #f2e5cd;
}

body.theme-dark .frontend-admin-bar-badge {
  background: rgba(212, 160, 23, 0.14);
  color: #f2e5cd;
}

@media (max-width: 767.98px) {
  .frontend-admin-bar-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .frontend-admin-bar-copy,
  .frontend-admin-bar-actions {
    width: auto;
    flex-wrap: nowrap;
  }

  .frontend-admin-bar-copy {
    gap: 8px;
    min-width: 0;
  }

  .frontend-admin-bar-user {
    display: none;
  }

  .frontend-admin-bar-actions {
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .frontend-admin-bar-link,
  .frontend-admin-bar-btn {
    min-height: 30px;
  }

  .frontend-admin-bar-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 11px;
  }

  .frontend-admin-bar-btn {
    flex: 0 0 auto;
    padding: 0 12px;
    font-size: 11px;
    white-space: nowrap;
  }
}

body.theme-dark .topbar {
  background: linear-gradient(90deg, #0b0909, #16110f 55%, #241a14);
  color: rgba(233, 220, 196, 0.72);
  border-bottom-color: rgba(212, 160, 23, 0.1);
}

body.theme-dark .topbar-right a {
  color: rgba(244, 229, 199, 0.86);
}

body.theme-dark .topbar-divider {
  background: rgba(212, 160, 23, 0.2);
}

body.theme-dark .site-header {
  background: rgba(13, 10, 9, 0.88);
  border-bottom-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .nav-links a,
body.theme-dark .brand,
body.theme-dark .theme-toggle {
  color: #f1e2c7;
}

body.theme-dark .nav-home-toggle,
body.theme-dark .nav-home-sublink {
  color: #f1e2c7;
}

body.theme-dark .nav-home-submenu {
  background: rgba(17, 13, 12, 0.98);
  border-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .nav-home-sublink::before {
  background: rgba(241, 226, 199, 0.18);
}

body.theme-dark .nav-home-sublink:hover,
body.theme-dark .nav-home-sublink.active {
  background: rgba(212, 160, 23, 0.12);
  color: #f2e5cd;
}

body.theme-dark .site-header .brand img,
body.home-page.home-dark .site-header .brand img {
  /*background: rgba(255, 255, 255, 0.96);*/
  padding: 5px 10px;
  border-radius: 8px;
}

body.theme-dark .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 23, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.theme-dark .theme-toggle:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

body.theme-dark .btn-secondary,
body.theme-dark .btn-em,
body.theme-dark .form-submit-btn {
  background: linear-gradient(135deg, #c9983f, #d4a017);
  color: #1c140a;
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.22);
}

body.theme-dark .btn-secondary:hover,
body.theme-dark .btn-em:hover,
body.theme-dark .form-submit-btn:hover {
  background: linear-gradient(135deg, #ddb35a, #e5be69);
}

body.theme-dark .btn-outline {
  color: #f1e2c7;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(241, 226, 199, 0.18);
}

body.theme-dark .menu-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: #f1e2c7;
}

body.theme-dark .section-divider::before {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0), rgba(212, 160, 23, 0.14), rgba(241, 226, 199, 0.24), rgba(212, 160, 23, 0.14), rgba(212, 160, 23, 0));
}

body.theme-dark .section-divider::after {
  border-top-color: rgba(212, 160, 23, 0.16);
  border-bottom-color: rgba(212, 160, 23, 0.16);
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.22), rgba(212, 160, 23, 0));
}

body.theme-dark .eyebrow {
  color: #c79a45;
}

body.theme-dark .eyebrow::before {
  background: rgba(212, 160, 23, 0.36);
}

body.theme-dark .page-title,
body.theme-dark .section-title,
body.theme-dark .card-title,
body.theme-dark .service-title,
body.theme-dark .founder-name,
body.theme-dark .audience-card h3,
body.theme-dark .problem-card h3,
body.theme-dark .feature-card h3,
body.theme-dark .process-step-card h3,
body.theme-dark .team-fact-card strong,
body.theme-dark .team-profile-body h3,
body.theme-dark .team-addition-card h3,
body.theme-dark .team-support-card h3,
body.theme-dark .fit-founder-card strong,
body.theme-dark .metric-card span,
body.theme-dark .metric-card strong,
body.theme-dark .service-card p strong {
  color: #f2e5cd;
}

body.theme-dark .section-copy,
body.theme-dark .audience-card p,
body.theme-dark .problem-card p,
body.theme-dark .feature-card p,
body.theme-dark .member-role,
body.theme-dark .team-fact-card span,
body.theme-dark .event-strip-notes span,
body.theme-dark .insight-article p,
body.theme-dark .sched-success p,
body.theme-dark .panel p,
body.theme-dark .callout-card p,
body.theme-dark .stats-card p,
body.theme-dark .founder-copy,
body.theme-dark .team-directory-note span,
body.theme-dark .team-profile-body p,
body.theme-dark .team-addition-card p,
body.theme-dark .team-support-card p,
body.theme-dark .fit-founder-card p,
body.theme-dark .panel .list li,
body.theme-dark .service-card .mini-list li,
body.theme-dark .callout-card .list li,
body.theme-dark .stats-card .list li,
body.theme-dark .timeline-card .list li {
  color: rgba(233, 220, 196, 0.76);
}

body.theme-dark .video-card,
body.theme-dark .audience-card,
body.theme-dark .problem-card,
body.theme-dark .feature-card,
body.theme-dark .team-spotlight,
body.theme-dark .event-strip-shell,
body.theme-dark .scheduler-wrap,
body.theme-dark .insight-article,
body.theme-dark .process-preview-panel,
body.theme-dark .panel,
body.theme-dark .callout-card,
body.theme-dark .stats-card,
body.theme-dark .metric-card,
body.theme-dark .timeline-step,
body.theme-dark .resource-card,
body.theme-dark .scenario-card,
body.theme-dark .service-card,
body.theme-dark .fit-shell,
body.theme-dark .fit-founder-card,
body.theme-dark .contact-form-panel,
body.theme-dark .team-directory-note,
body.theme-dark .team-profile-card,
body.theme-dark .team-addition-card,
body.theme-dark .team-support-card,
body.theme-dark .founder-card,
body.theme-dark .team-cta-shell,
body.theme-dark .proof-pill,
body.theme-dark .contact-form-shell > *,
body.theme-dark .contact-note-shell > * {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.9), rgba(17, 13, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

body.theme-dark .panel,
body.theme-dark .callout-card,
body.theme-dark .stats-card,
body.theme-dark .fit-shell,
body.theme-dark .team-addition-card,
body.theme-dark .team-cta-shell {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.92), rgba(17, 13, 12, 0.96));
}

body.theme-dark .page-hero {
  background: linear-gradient(180deg, #0b0909 0%, #17120f 65%, #120e0c 100%);
}

body.theme-dark .page-hero::before {
  background: repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(212, 160, 23, 0.02) 55px, rgba(212, 160, 23, 0.02) 56px);
}

body.theme-dark .page-hero-ring {
  border-color: rgba(212, 160, 23, 0.08);
}

body.theme-dark .page-hero-kicker {
  color: #d4a017;
}

body.theme-dark .page-hero-kicker::before {
  background: #d4a017;
}

body.theme-dark .page-hero h1,
body.theme-dark .page-hero h1 em,
body.theme-dark .breadcrumb-hero span {
  color: #f2e5cd;
}

body.theme-dark .page-hero-sub,
body.theme-dark .breadcrumb-hero,
body.theme-dark .breadcrumb-hero a {
  color: rgba(233, 220, 196, 0.68);
}

body.theme-dark .page-hero h1 em {
  color: #d4a017;
}

body.theme-dark .trust-badge .icon,
body.theme-dark .feature-card .icon,
body.theme-dark .problem-card .icon,
body.theme-dark .audience-icon,
body.theme-dark .booking-benefit-icon,
body.theme-dark .service-card-top .icon,
body.theme-dark .team-addition-mark,
body.theme-dark .team-profile-placeholder span,
body.theme-dark .sched-confirm-badge,
body.theme-dark .sched-slots-empty-icon {
  background: rgba(212, 160, 23, 0.14);
  color: #d8ac58;
}

body.theme-dark .process-preview-nav-item,
body.theme-dark .sched-step-line,
body.theme-dark .process-step-line {
  border-color: rgba(212, 160, 23, 0.14);
  background: rgba(212, 160, 23, 0.16);
}

body.theme-dark .process-preview-nav-item {
  color: rgba(233, 220, 196, 0.72);
}

body.theme-dark .process-preview-nav-item.active {
  border-left-color: #d4a017;
}

body.theme-dark .process-preview-label,
body.theme-dark .process-step-features span,
body.theme-dark .insight-article h3,
body.theme-dark .footer-editorial-statement,
body.theme-dark .team-cta-shell .eyebrow,
body.theme-dark .team-cta-shell h3,
body.theme-dark .callout-card h3,
body.theme-dark .timeline-card .section-title,
body.theme-dark .timeline-card h3 {
  color: #f2e5cd;
}

body.theme-dark .process-preview-num,
body.theme-dark .process-step-tag,
body.theme-dark .member-role,
body.theme-dark .founder-role,
body.theme-dark .service-card small,
body.theme-dark .resource-card small,
body.theme-dark .scenario-card small,
body.theme-dark .team-profile-body .statline,
body.theme-dark .team-addition-card .statline,
body.theme-dark .team-member-listing .statline {
  color: #d4a017;
}

body.theme-dark .process-step-badge {
  background: #d4a017;
  color: #1c140a;
}

body.theme-dark .process-step-card,
body.theme-dark .team-fact-card,
body.theme-dark .event-strip-notes span,
body.theme-dark .sched-tabs,
body.theme-dark .sched-booking-summary,
body.theme-dark .sched-slots,
body.theme-dark .sched-success-detail,
body.theme-dark .booking-form-wrap,
body.theme-dark .fit-founder-card,
body.theme-dark .team-profile-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 226, 199, 0.12);
}

body.theme-dark .insights-nav,
body.theme-dark .sched-tab,
body.theme-dark .sched-day,
body.theme-dark .sched-time,
body.theme-dark .sched-field input,
body.theme-dark .sched-field select,
body.theme-dark .float-field input,
body.theme-dark .float-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 226, 199, 0.12);
  color: #f2e5cd;
}

body.theme-dark .sched-field label,
body.theme-dark .float-field label,
body.theme-dark .sched-tab,
body.theme-dark .sched-month-label,
body.theme-dark .sched-days-hdr span,
body.theme-dark .sched-slots-title,
body.theme-dark .insight-date,
body.theme-dark .booking-success-copy,
body.theme-dark .booking-benefit span,
body.theme-dark .booking-note,
body.theme-dark .sched-back,
body.theme-dark .sched-back-link,
body.theme-dark .footer-editorial-brand p,
body.theme-dark .footer-editorial-col a,
body.theme-dark .footer-editorial-col span,
body.theme-dark .footer-editorial-bottom p {
  color: rgba(233, 220, 196, 0.72);
}

body.theme-dark .footer-editorial-bottom p,
body.theme-dark .footer-editorial-bottom a {
  color: rgba(233, 220, 196, 0.72) !important;
}

body.theme-dark .sched-day.has-slot,
body.theme-dark .sched-time.selected,
body.theme-dark .sched-tab.active,
body.theme-dark .insights-nav:hover,
body.theme-dark .sched-month-nav button:hover,
body.theme-dark .sched-day:not(.disabled):not(.empty):hover {
  background: rgba(212, 160, 23, 0.16);
  border-color: rgba(212, 160, 23, 0.26);
  color: #f2e5cd;
}

body.theme-dark .sched-day.selected,
body.theme-dark .sched-step.active .sched-step-num,
body.theme-dark .btn-primary {
  background: linear-gradient(135deg, #c9983f, #d4a017);
  border-color: #d4a017;
  color: #1c140a;
}

body.theme-dark .sched-day.selected::after {
  background: #1c140a;
}

body.theme-dark .sched-summary-date,
body.theme-dark .sched-success h4,
body.theme-dark .sched-slots-empty h3,
body.theme-dark .booking-success-title,
body.theme-dark .booking-benefit strong,
body.theme-dark .sched-confirm-date,
body.theme-dark .sched-confirm-time,
body.theme-dark .sched-summary-time,
body.theme-dark .sched-info-title,
body.theme-dark .footer-editorial-title {
  color: #f2e5cd;
}

body.theme-dark .sched-confirm-time,
body.theme-dark .sched-booking-summary i,
body.theme-dark .sched-summary-time,
body.theme-dark .sched-day.has-slot::after,
body.theme-dark .sched-field input:focus ~ label,
body.theme-dark .sched-field select:focus ~ label,
body.theme-dark .sched-field select:valid ~ label,
body.theme-dark .float-field input:focus ~ label,
body.theme-dark .float-field input:not(:placeholder-shown) ~ label,
body.theme-dark .float-field textarea:focus ~ label,
body.theme-dark .float-field textarea:not(:placeholder-shown) ~ label,
body.theme-dark .event-strip-notes i,
body.theme-dark .footer-icon {
  color: #d4a017;
}

body.theme-dark .newsletter-shell,
body.home-page.home-dark .newsletter-shell {
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(32, 23, 20, 0.92), rgba(17, 13, 12, 0.96));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

body.theme-dark .newsletter-points span,
body.home-page.home-dark .newsletter-points span {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 226, 199, 0.12);
  color: #f2e5cd;
}

body.theme-dark .newsletter-panel,
body.home-page.home-dark .newsletter-panel {
  border-color: rgba(212, 160, 23, 0.14);
  background: linear-gradient(180deg, rgba(18, 14, 13, 0.98), rgba(11, 9, 8, 0.98));
}

body.theme-dark .newsletter-panel p,
body.home-page.home-dark .newsletter-panel p {
  color: rgba(241, 226, 199, 0.76);
}

body.theme-dark .newsletter-field input,
body.home-page.home-dark .newsletter-field input {
  border-color: rgba(241, 226, 199, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #f5ead6;
}

body.theme-dark .newsletter-field input::placeholder,
body.home-page.home-dark .newsletter-field input::placeholder {
  color: rgba(241, 226, 199, 0.5);
}

body.theme-dark .sched-field input:focus,
body.theme-dark .sched-field select:focus,
body.theme-dark .float-field input:focus,
body.theme-dark .float-field textarea:focus {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

body.theme-dark .video-frame::after,
body.theme-dark .services-section-visual::after {
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.08) 0%, rgba(8, 6, 6, 0.24) 34%, rgba(8, 6, 6, 0.52) 100%),
    linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(10, 8, 8, 0.02));
}

body.theme-dark .timeline-card,
body.theme-dark .callout-card,
body.theme-dark .team-cta-shell {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.96), rgba(17, 13, 12, 0.98));
}

body.theme-dark .timeline-card p,
body.theme-dark .timeline-card .list li,
body.theme-dark .callout-card p,
body.theme-dark .callout-card .list li,
body.theme-dark .team-cta-shell p {
  color: rgba(233, 220, 196, 0.76);
  border-top-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .drawer-shell {
  background: linear-gradient(180deg, rgba(11, 9, 9, 0.98), rgba(22, 17, 15, 0.96));
  border-right-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .drawer-shell .offcanvas-header,
body.theme-dark .drawer-link,
body.theme-dark .drawer-shell .btn-primary {
  border-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .drawer-shell .offcanvas-title,
body.theme-dark .drawer-link,
body.theme-dark .drawer-link .nav-icon {
  color: #f1e2c7;
}

body.theme-dark .footer-editorial,
body.theme-dark .footer {
  background: linear-gradient(180deg, #0b0909, #16110f);
}

body.theme-dark .footer-editorial::before,
body.theme-dark .footer::before {
  background:
    linear-gradient(120deg, rgba(212, 160, 23, 0.06), transparent 28%),
    repeating-linear-gradient(90deg, rgba(212, 160, 23, 0.04) 0, rgba(212, 160, 23, 0.04) 1px, transparent 1px, transparent 120px);
}

body.theme-dark .footer-editorial-rule {
  background: rgba(212, 160, 23, 0.12);
}

body.theme-dark .booking-section {
  background: linear-gradient(180deg, rgba(13, 10, 9, 0.18), rgba(13, 10, 9, 0.32));
}

body.theme-dark .sched-step {
  color: rgba(233, 220, 196, 0.42);
}

body.theme-dark .sched-step.active {
  color: #f2e5cd;
}

body.theme-dark .sched-step.done {
  color: #d4a017;
}

body.theme-dark .sched-step-num {
  background: rgba(255, 255, 255, 0.06);
  color: #f2e5cd;
}

body.theme-dark .sched-step.done .sched-step-num {
  background: rgba(212, 160, 23, 0.18);
  color: #f2e5cd;
}

body.theme-dark .founder-quote-section {
  background: linear-gradient(180deg, rgba(17, 13, 12, 0.94), rgba(11, 9, 9, 0.96));
}

body.theme-dark .value-card {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.9), rgba(17, 13, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

body.theme-dark .value-card h3 {
  color: #f2e5cd;
}

body.theme-dark .value-card p {
  color: rgba(233, 220, 196, 0.76);
}

body.theme-dark .legal-card,
body.theme-dark .legal-sidecard {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.9), rgba(17, 13, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

body.theme-dark .legal-pill {
  background: rgba(212, 160, 23, 0.12);
  color: #d4a017;
  border-color: rgba(212, 160, 23, 0.22);
}

body.theme-dark .legal-card h2,
body.theme-dark .legal-sidecard h3 {
  color: #f2e5cd;
}

body.theme-dark .legal-card h3 {
  color: #d4a017;
}

body.theme-dark .legal-card p,
body.theme-dark .legal-card li,
body.theme-dark .legal-sidecard p,
body.theme-dark .legal-sidecard li {
  color: rgba(242, 229, 205, 0.76);
}

body.theme-dark .legal-linkitem {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(212, 160, 23, 0.06));
  border-color: rgba(212, 160, 23, 0.12);
  color: #f2e5cd;
}

body.theme-dark .legal-linkitem:hover {
  border-color: rgba(212, 160, 23, 0.32);
  color: #ffffff;
}

body.theme-dark .legal-note p {
  color: rgba(255, 255, 255, 0.82);
}

body.home-page.home-dark .legal-card,
body.home-page.home-dark .legal-sidecard {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.9), rgba(17, 13, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

body.home-page.home-dark .legal-pill {
  background: rgba(212, 160, 23, 0.12);
  color: #d4a017;
  border-color: rgba(212, 160, 23, 0.22);
}

body.home-page.home-dark .legal-card h2,
body.home-page.home-dark .legal-sidecard h3 {
  color: #f2e5cd;
}

body.home-page.home-dark .legal-card h3 {
  color: #d4a017;
}

body.home-page.home-dark .legal-card p,
body.home-page.home-dark .legal-card li,
body.home-page.home-dark .legal-sidecard p,
body.home-page.home-dark .legal-sidecard li {
  color: rgba(242, 229, 205, 0.76);
}

body.home-page.home-dark .legal-linkitem {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(212, 160, 23, 0.06));
  border-color: rgba(212, 160, 23, 0.12);
  color: #f2e5cd;
}

body.home-page.home-dark .legal-linkitem:hover {
  border-color: rgba(212, 160, 23, 0.32);
  color: #ffffff;
}

body.home-page.home-dark .legal-note p {
  color: rgba(255, 255, 255, 0.82);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  /*display: inline-flex;*/
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(10, 36, 99, 0.3);
}

.page-title,
.section-title,
.card-title,
.service-title,
.founder-name {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--emerald-deep);
  letter-spacing: -0.03em;
}

.page-title {
  font-size: clamp(2.7rem, 5.1vw, 4.9rem);
  line-height: 0.96;
}

.section-title {
  margin-top: 18px;
  /*font-size: clamp(2.2rem, 4vw, 4rem);*/
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 0.98;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-copy {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.topbar {
  background: linear-gradient(90deg, var(--emerald-deep), #0d2258 55%, #163678);
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.82);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.24);
}

.topbar .topbar-mobile-tagline {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 251, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand img {
  width: 228px;
}

.brand-logo-dark {
  display: none;
}

body.theme-dark .brand-logo-light,
body.home-page.home-dark .brand-logo-light {
  display: none;
}

body.theme-dark .brand-logo-dark,
body.home-page.home-dark .brand-logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-home-group {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-home-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald-deep);
  cursor: pointer;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald-deep);
}

.nav-links a .nav-icon {
  font-size: 13px;
  opacity: 0.72;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.nav-home-toggle .nav-icon,
.nav-home-toggle .nav-caret {
  font-size: 13px;
  opacity: 0.72;
  flex-shrink: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
  opacity: 1;
}

.nav-home-group:hover .nav-home-toggle .nav-icon,
.nav-home-group:focus-within .nav-home-toggle .nav-icon,
.nav-home-toggle.active .nav-icon,
.nav-home-group:hover .nav-home-toggle .nav-caret,
.nav-home-group:focus-within .nav-home-toggle .nav-caret,
.nav-home-toggle.active .nav-caret {
  opacity: 1;
}

.nav-home-group:hover .nav-home-toggle .nav-caret,
.nav-home-group:focus-within .nav-home-toggle .nav-caret {
  transform: rotate(180deg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-home-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-home-group:hover .nav-home-toggle::after,
.nav-home-group:focus-within .nav-home-toggle::after,
.nav-home-toggle.active::after {
  transform: scaleX(1);
}

.nav-home-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}

.nav-home-group:hover .nav-home-submenu,
.nav-home-group:focus-within .nav-home-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-home-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-home-sublink::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.16);
  transition: background 0.18s ease;
}

.nav-home-sublink:hover,
.nav-home-sublink.active {
  background: rgba(10, 36, 99, 0.06);
  color: var(--emerald-deep);
}

.nav-home-sublink:hover::before,
.nav-home-sublink.active::before {
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(10, 36, 99, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--emerald-deep);
  box-shadow: 0 10px 24px rgba(7, 23, 61, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 23, 61, 0.12);
}

.theme-toggle-icon {
  font-size: 14px;
}

.theme-toggle-drawer {
  justify-content: flex-start;
  width: 100%;
  margin-top: 12px;
  padding: 0 18px;
}

#section-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 28;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.2);
  border: 1.5px solid rgba(10, 36, 99, 0.3);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.sdot:hover,
.sdot.active {
  background: var(--em);
  border-color: var(--em);
  transform: scale(1.4);
}

.sdot-tip {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--em);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.sdot:hover .sdot-tip {
  opacity: 1;
}

body.theme-dark .sdot,
body.home-page.home-dark .sdot {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

body.theme-dark .sdot:hover,
body.theme-dark .sdot.active,
body.home-page.home-dark .sdot:hover,
body.home-page.home-dark .sdot.active {
  background: var(--gold);
  border-color: var(--gold);
}

body.theme-dark .sdot-tip,
body.home-page.home-dark .sdot-tip {
  background: var(--gold);
  color: #1a1209;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.slot-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.btn-primary {
  color: #201807;
  background: linear-gradient(135deg, #e2b749, var(--gold));
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.24);
}

.btn-secondary {
  color: var(--surface);
  background: var(--emerald);
  box-shadow: 0 14px 28px rgba(10, 36, 99, 0.18);
}

.btn-outline {
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 36, 99, 0.12);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.slot-chip:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: rgba(10, 36, 99, 0.08);
  color: var(--emerald);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.drawer-shell {
  --bs-offcanvas-width: min(86vw, 320px);
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.96));
  color: var(--surface);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-shell.is-open {
  visibility: visible;
  transform: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  border: 0;
  padding: 0;
  background: rgba(7, 23, 61, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.drawer-shell .offcanvas-header {
  padding: 22px 22px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-shell .offcanvas-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1cf73;
}

.drawer-shell .btn-close {
  filter: invert(1) brightness(200%);
  opacity: 0.85;
}

.drawer-shell .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 28px;
  background: transparent;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.drawer-link .nav-icon {
  font-size: 16px;
  opacity: 0.75;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.drawer-link:first-child {
  border-top: 0;
  padding-top: 10px;
}

.drawer-group {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.drawer-group:first-child {
  border-top: 0;
  padding-top: 10px;
}

.drawer-link-parent {
  padding: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.9);
}

.drawer-submenu {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 30px;
}

.drawer-sublink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.drawer-sublink::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.drawer-sublink.active {
  color: #f1cf73;
}

.drawer-sublink.active::before {
  background: #f1cf73;
}

.drawer-contact {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-contact a,
.drawer-contact div {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.drawer-contact a:first-child {
  margin-top: 0;
}

.drawer-shell .btn-primary {
  width: 100%;
  margin-top: 18px;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

main {
  overflow: hidden;
}

section {
  padding: 56px 0;
}

.section-divider {
  position: relative;
  height: 24px;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 36, 99, 0), rgba(10, 36, 99, 0.14), rgba(212, 160, 23, 0.26), rgba(10, 36, 99, 0.14), rgba(10, 36, 99, 0));
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-top: 1px solid rgba(10, 36, 99, 0.12);
  border-bottom: 1px solid rgba(10, 36, 99, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.16), rgba(212, 160, 23, 0));
}

body.home-page.home-dark {
  --text: #eadfc9;
  --ink: #f2e5cd;
  --muted: rgba(233, 220, 196, 0.76);
  --slate: rgba(233, 220, 196, 0.72);
  --silver: rgba(233, 220, 196, 0.58);
  --line: rgba(212, 160, 23, 0.14);
  --rule: rgba(241, 226, 199, 0.12);
  --emerald: #d4a017;
  --emerald-deep: #f2e5cd;
  --emerald-soft: #c1913d;
  --em: #d4a017;
  --em-mid: #e0b75c;
  --em-dark: #8f6520;
  --em-tint: rgba(212, 160, 23, 0.12);
  color: #e9dcc4;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 24%),
    radial-gradient(circle at left center, rgba(70, 39, 21, 0.42), transparent 32%),
    linear-gradient(180deg, #0a0908 0%, #15110f 48%, #100c0b 100%);
}

body.home-page.home-dark .topbar {
  background: linear-gradient(90deg, #0b0909, #16110f 55%, #241a14);
  color: rgba(233, 220, 196, 0.72);
  border-bottom-color: rgba(212, 160, 23, 0.1);
}

body.home-page.home-dark .topbar-right a {
  color: rgba(244, 229, 199, 0.86);
}

body.home-page.home-dark .topbar-divider {
  background: rgba(212, 160, 23, 0.2);
}

body.home-page.home-dark .site-header {
  background: rgba(13, 10, 9, 0.88);
  border-bottom-color: rgba(212, 160, 23, 0.12);
}

body.home-page.home-dark .nav-links a,
body.home-page.home-dark .brand,
body.home-page.home-dark .theme-toggle {
  color: #f1e2c7;
}

body.home-page.home-dark .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 23, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.home-page.home-dark .theme-toggle:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

body.home-page.home-dark .btn-secondary,
body.home-page.home-dark .btn-em,
body.home-page.home-dark .form-submit-btn {
  background: linear-gradient(135deg, #c9983f, #d4a017);
  color: #1c140a;
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.22);
}

body.home-page.home-dark .btn-secondary:hover,
body.home-page.home-dark .btn-em:hover,
body.home-page.home-dark .form-submit-btn:hover {
  background: linear-gradient(135deg, #ddb35a, #e5be69);
}

body.home-page.home-dark .btn-outline {
  color: #f1e2c7;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(241, 226, 199, 0.18);
}

body.home-page.home-dark .menu-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: #f1e2c7;
}

body.home-page.home-dark .section-divider::before {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0), rgba(212, 160, 23, 0.14), rgba(241, 226, 199, 0.24), rgba(212, 160, 23, 0.14), rgba(212, 160, 23, 0));
}

body.home-page.home-dark .section-divider::after {
  border-top-color: rgba(212, 160, 23, 0.16);
  border-bottom-color: rgba(212, 160, 23, 0.16);
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.22), rgba(212, 160, 23, 0));
}

body.home-page.home-dark .hero {
  position: relative;
  padding-top: 82px;
}

body.home-page.home-dark .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 8, 0.92) 0%, rgba(10, 8, 8, 0.76) 42%, rgba(10, 8, 8, 0.18) 100%),
    radial-gradient(circle at 24% 24%, rgba(212, 160, 23, 0.12), transparent 28%);
  pointer-events: none;
}

body.home-page.home-dark .hero > .container {
  position: relative;
  z-index: 1;
}

body.home-page.home-dark .eyebrow,
body.home-page.home-dark .hero-copy .eyebrow {
  color: #c79a45;
}

body.home-page.home-dark .eyebrow::before {
  background: rgba(212, 160, 23, 0.36);
}

body.home-page.home-dark .page-title,
body.home-page.home-dark .section-title,
body.home-page.home-dark .card-title,
body.home-page.home-dark .service-title,
body.home-page.home-dark .founder-name,
body.home-page.home-dark .audience-card h3,
body.home-page.home-dark .problem-card h3,
body.home-page.home-dark .feature-card h3,
body.home-page.home-dark .team-fact-card strong {
  color: #f2e5cd;
}

body.home-page.home-dark .section-copy,
body.home-page.home-dark .audience-card p,
body.home-page.home-dark .problem-card p,
body.home-page.home-dark .feature-card p,
body.home-page.home-dark .member-role,
body.home-page.home-dark .team-fact-card span,
body.home-page.home-dark .event-strip-notes span,
body.home-page.home-dark .insight-article p,
body.home-page.home-dark .sched-success p {
  color: rgba(233, 220, 196, 0.76);
}

body.home-page.home-dark .video-card,
body.home-page.home-dark .audience-card,
body.home-page.home-dark .problem-card,
body.home-page.home-dark .feature-card,
body.home-page.home-dark .team-spotlight,
body.home-page.home-dark .event-strip-shell,
body.home-page.home-dark .scheduler-wrap,
body.home-page.home-dark .insight-article,
body.home-page.home-dark .process-preview-panel {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.9), rgba(17, 13, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

body.home-page.home-dark .video-frame::after {
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.08) 0%, rgba(8, 6, 6, 0.24) 34%, rgba(8, 6, 6, 0.52) 100%),
    linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(10, 8, 8, 0.02));
}

body.home-page.home-dark .trust-row-overlay {
  background: rgba(13, 10, 9, 0.8);
  border-color: rgba(212, 160, 23, 0.14);
}

body.home-page.home-dark .trust-row-overlay .trust-badge strong,
body.home-page.home-dark .trust-badge strong,
body.home-page.home-dark .process-step-features span,
body.home-page.home-dark .sched-confirm-date,
body.home-page.home-dark .sched-confirm-time,
body.home-page.home-dark .insight-article h3,
body.home-page.home-dark .footer-editorial-statement {
  color: #f2e5cd;
}

body.home-page.home-dark .trust-badge .icon,
body.home-page.home-dark .feature-card .icon,
body.home-page.home-dark .problem-card .icon,
body.home-page.home-dark .audience-icon,
body.home-page.home-dark .booking-benefit-icon {
  background: rgba(212, 160, 23, 0.14);
  color: #d8ac58;
}

body.home-page.home-dark .process-preview-nav-item {
  border-color: rgba(212, 160, 23, 0.14);
  color: rgba(233, 220, 196, 0.72);
}

body.home-page.home-dark .process-preview-nav-item.active {
  border-left-color: #d4a017;
}

body.home-page.home-dark .process-preview-label {
  color: #f2e5cd;
}

body.home-page.home-dark .process-preview-num,
body.home-page.home-dark .process-step-tag,
body.home-page.home-dark .member-role {
  color: #d4a017;
}

body.home-page.home-dark .process-step-badge {
  background: #d4a017;
  color: #1c140a;
}

body.home-page.home-dark .process-step-line,
body.home-page.home-dark .process-step-card {
  border-color: rgba(212, 160, 23, 0.16);
  background: transparent;
}

body.home-page.home-dark .process-step-card h3 {
  color: #f2e5cd;
}

body.home-page.home-dark .process-step-card p {
  color: rgba(233, 220, 196, 0.76);
}

body.home-page.home-dark .insights-nav,
body.home-page.home-dark .sched-tab,
body.home-page.home-dark .sched-day,
body.home-page.home-dark .sched-time,
body.home-page.home-dark .sched-field input,
body.home-page.home-dark .sched-field select,
body.home-page.home-dark .float-field input,
body.home-page.home-dark .float-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 226, 199, 0.12);
  color: #f2e5cd;
}

body.home-page.home-dark .sched-field label,
body.home-page.home-dark .float-field label,
body.home-page.home-dark .sched-tab,
body.home-page.home-dark .sched-month-label,
body.home-page.home-dark .sched-days-hdr span,
body.home-page.home-dark .sched-slots-title,
body.home-page.home-dark .insight-date {
  color: rgba(233, 220, 196, 0.72);
}

body.home-page.home-dark .sched-day.has-slot,
body.home-page.home-dark .sched-time.selected,
body.home-page.home-dark .sched-tab.active,
body.home-page.home-dark .insights-nav:hover {
  background: rgba(212, 160, 23, 0.16);
  border-color: rgba(212, 160, 23, 0.26);
  color: #f2e5cd;
}

body.home-page.home-dark .insights-nav:disabled {
  opacity: 0.35;
  background: rgba(255, 255, 255, 0.02);
}

body.home-page.home-dark .booking-section {
  background: linear-gradient(180deg, rgba(13, 10, 9, 0.12), rgba(13, 10, 9, 0.3));
}

body.home-page.home-dark .sched-tabs,
body.home-page.home-dark .sched-booking-summary,
body.home-page.home-dark .sched-slots,
body.home-page.home-dark .sched-success-detail,
body.home-page.home-dark .booking-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 226, 199, 0.12);
}

body.home-page.home-dark .sched-body,
body.home-page.home-dark .form-success {
  background: transparent;
}

body.home-page.home-dark .sched-month-nav button,
body.home-page.home-dark .sched-confirm-badge,
body.home-page.home-dark .sched-slots-empty-icon,
body.home-page.home-dark .sched-booking-summary i {
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.18);
  color: #d8ac58;
}

body.home-page.home-dark .sched-month-nav button:hover,
body.home-page.home-dark .sched-day:not(.disabled):not(.empty):hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.28);
  color: #f2e5cd;
}

body.home-page.home-dark .sched-step {
  color: rgba(233, 220, 196, 0.42);
}

body.home-page.home-dark .sched-step.active {
  color: #f2e5cd;
}

body.home-page.home-dark .sched-step.done {
  color: #d4a017;
}

body.home-page.home-dark .sched-step-num {
  background: rgba(255, 255, 255, 0.05);
  color: #f2e5cd;
}

body.home-page.home-dark .sched-step.active .sched-step-num {
  background: #d4a017;
  color: #1c140a;
}

body.home-page.home-dark .sched-step.done .sched-step-num {
  background: rgba(212, 160, 23, 0.18);
  color: #f2e5cd;
}

body.home-page.home-dark .sched-step-line {
  background: rgba(212, 160, 23, 0.16);
}

body.home-page.home-dark .sched-day.selected {
  background: #d4a017;
  border-color: #d4a017;
  color: #1c140a;
}

body.home-page.home-dark .sched-day.selected::after {
  background: #1c140a;
}

body.home-page.home-dark .sched-summary-date,
body.home-page.home-dark .sched-success h4,
body.home-page.home-dark .sched-slots-empty h3,
body.home-page.home-dark .booking-success-title,
body.home-page.home-dark .booking-benefit strong {
  color: #f2e5cd;
}

body.home-page.home-dark .sched-summary-time,
body.home-page.home-dark .booking-success-copy,
body.home-page.home-dark .booking-benefit span {
  color: rgba(233, 220, 196, 0.72);
}

body.home-page.home-dark .sched-confirm-time,
body.home-page.home-dark .sched-booking-summary i,
body.home-page.home-dark .sched-summary-time,
body.home-page.home-dark .sched-day.has-slot::after,
body.home-page.home-dark .sched-field input:focus ~ label,
body.home-page.home-dark .sched-field select:focus ~ label,
body.home-page.home-dark .sched-field select:valid ~ label,
body.home-page.home-dark .float-field input:focus ~ label,
body.home-page.home-dark .float-field input:not(:placeholder-shown) ~ label,
body.home-page.home-dark .float-field textarea:focus ~ label,
body.home-page.home-dark .float-field textarea:not(:placeholder-shown) ~ label {
  color: #d4a017;
}

body.home-page.home-dark .sched-field input:focus,
body.home-page.home-dark .sched-field select:focus,
body.home-page.home-dark .float-field input:focus,
body.home-page.home-dark .float-field textarea:focus {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

body.home-page.home-dark .event-strip-notes span,
body.home-page.home-dark .team-fact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 23, 0.12);
}

body.home-page.home-dark .event-strip-notes i,
body.home-page.home-dark .footer-icon,
body.home-page.home-dark .footer-editorial-title {
  color: #d4a017;
}

body.home-page.home-dark .team-spotlight-body,
body.home-page.home-dark .insight-article-body {
  background: transparent;
}

body.home-page.home-dark .insight-card-image-logo,
body.home-page.home-dark .insight-card-image-placeholder {
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.96), rgba(17, 13, 12, 0.98));
}

body.home-page.home-dark .drawer-shell {
  background: linear-gradient(180deg, rgba(11, 9, 9, 0.98), rgba(22, 17, 15, 0.96));
  border-right-color: rgba(212, 160, 23, 0.12);
}

body.home-page.home-dark .drawer-shell .offcanvas-header,
body.home-page.home-dark .drawer-link,
body.home-page.home-dark .drawer-shell .btn-primary {
  border-color: rgba(212, 160, 23, 0.12);
}

body.home-page.home-dark .drawer-shell .offcanvas-title,
body.home-page.home-dark .drawer-link,
body.home-page.home-dark .drawer-link .nav-icon {
  color: #f1e2c7;
}

body.home-page.home-dark .drawer-link-parent,
body.home-page.home-dark .drawer-sublink,
body.home-page.home-dark .theme-toggle-drawer {
  color: rgba(241, 226, 199, 0.82);
}

body.home-page.home-dark .drawer-sublink::before {
  background: rgba(241, 226, 199, 0.24);
}

body.home-page.home-dark .drawer-sublink.active {
  color: #f1cf73;
}

body.home-page.home-dark .drawer-sublink.active::before {
  background: #f1cf73;
}

body.home-page.home-dark .theme-toggle-drawer {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 23, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.home-page.home-dark .booking-note,
body.home-page.home-dark .sched-slots-empty p,
body.home-page.home-dark .sched-slots-empty h3,
body.home-page.home-dark .footer-editorial-brand p,
body.home-page.home-dark .footer-editorial-col a,
body.home-page.home-dark .footer-editorial-col span,
body.home-page.home-dark .footer-editorial-bottom p {
  color: rgba(233, 220, 196, 0.74);
}

body.home-page.home-dark .footer-editorial {
  background: linear-gradient(180deg, #0b0909, #16110f);
}

body.home-page.home-dark .fee-calculator-section {
  background: linear-gradient(180deg, #0b0909 0%, #15110f 100%);
}

body.home-page.home-dark .calc-card,
body.home-page.home-dark .fee-schedule-card {
  border-color: rgba(212, 160, 23, 0.14);
}

body.home-page.home-dark .fee-calculator-section .section-title em,
body.home-page.home-dark .fee-schedule-row span:last-child,
body.home-page.home-dark .calc-asset-display {
  color: #f1cf73;
}

body.home-page.home-dark .fee-calculator-section .eyebrow,
body.home-page.home-dark .fee-schedule-title,
body.home-page.home-dark .calc-label,
body.home-page.home-dark .calc-result-lbl,
body.home-page.home-dark .calc-slider-range {
  color: rgba(241, 226, 199, 0.58);
}

body.home-page.home-dark .calc-result-val,
body.home-page.home-dark .calc-row span:last-child {
  color: #f1cf73;
}

body.home-page.home-dark .calc-breakdown {
  background: rgba(255, 255, 255, 0.03);
}

body.home-page.home-dark .calc-slider {
  background: linear-gradient(90deg, #d4a017 var(--val, 5.3%), rgba(255, 255, 255, 0.15) var(--val, 5.3%));
}

body.home-page.home-dark .calc-slider::-webkit-slider-thumb {
  background: #d4a017;
  border-color: #15110f;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.34);
}

body.home-page.home-dark .calc-slider::-moz-range-thumb {
  background: #d4a017;
  border-color: #15110f;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.34);
}

body.home-page.home-dark .comparison-section {
  background: #100c0b;
}

body.home-page.home-dark .comp-table th,
body.home-page.home-dark .comp-table td {
  background: #18120f;
  border-bottom-color: rgba(212, 160, 23, 0.1);
}

body.home-page.home-dark .comp-table th {
  color: rgba(242, 229, 205, 0.72);
}

body.home-page.home-dark .comp-table th.col-cmc {
  background: linear-gradient(180deg, rgba(143, 101, 32, 0.96), rgba(95, 67, 24, 0.92));
  color: #f8ecd4;
}

body.home-page.home-dark .comp-table td {
  color: rgba(233, 220, 196, 0.7);
}

body.home-page.home-dark .comp-table td:first-child {
  color: #f2e5cd;
}

body.home-page.home-dark .comp-table td.col-cmc {
  background: rgba(212, 160, 23, 0.08);
  color: #f1cf73;
}

body.home-page.home-dark .comp-icon-yes {
  color: #d4a017;
}

body.home-page.home-dark .comp-icon-neutral {
  color: rgba(233, 220, 196, 0.66);
}

body.home-page.home-dark .footer-editorial::before {
  background:
    linear-gradient(120deg, rgba(212, 160, 23, 0.06), transparent 28%),
    repeating-linear-gradient(90deg, rgba(212, 160, 23, 0.04) 0, rgba(212, 160, 23, 0.04) 1px, transparent 1px, transparent 120px);
}

body.home-page.home-dark .footer-editorial-rule {
  background: rgba(212, 160, 23, 0.12);
}

.hero {
  padding-top: 74px;
  padding-bottom: 18px;
}

body.home-hero-darker:not(.theme-dark) .hero {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 160, 23, 0.12), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(10, 36, 99, 0.08), transparent 26%),
    linear-gradient(180deg, #33261f 0%, #231916 62%, #1a1210 100%);
}

body.home-hero-darker:not(.theme-dark) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 10, 0.9) 0%, rgba(18, 14, 13, 0.74) 40%, rgba(18, 14, 13, 0.2) 100%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.16), rgba(10, 36, 99, 0) 34%),
    radial-gradient(circle at 24% 24%, rgba(212, 160, 23, 0.16), transparent 28%);
  pointer-events: none;
}

body.home-hero-darker:not(.theme-dark) .hero > .container {
  position: relative;
  z-index: 1;
}

body.home-hero-darker:not(.theme-dark) .hero-copy .eyebrow {
  color: #d5ad63;
}

body.home-hero-darker:not(.theme-dark) .hero-copy .eyebrow::before {
  background: rgba(213, 173, 99, 0.46);
}

body.home-hero-darker:not(.theme-dark) .hero .page-title {
  color: #f3e8d1;
}

body.home-hero-darker:not(.theme-dark) .hero .section-copy {
  color: rgba(243, 232, 209, 0.84);
}

body.home-hero-darker:not(.theme-dark) .hero .btn-outline {
  color: #f3e8d1;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(243, 232, 209, 0.22);
  box-shadow: 0 16px 30px rgba(7, 23, 61, 0.08);
}

body.home-hero-darker:not(.theme-dark) .hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.home-hero-darker:not(.theme-dark) .video-card {
  background: linear-gradient(180deg, rgba(26, 20, 18, 0.98), rgba(15, 11, 12, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
}

body.home-hero-darker:not(.theme-dark) .video-frame::after {
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.12) 0%, rgba(8, 6, 6, 0.28) 34%, rgba(8, 6, 6, 0.56) 100%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.08), rgba(212, 160, 23, 0.08), rgba(10, 8, 8, 0.02));
}

body.home-hero-darker:not(.theme-dark) .trust-row-overlay {
  background: rgba(16, 13, 13, 0.84);
  border-color: rgba(212, 160, 23, 0.14);
}

body.home-founder .video-frame {
  min-height: 560px;
}

body.home-founder .founder-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

body.home-founder .video-frame::after {
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.06) 0%, rgba(8, 6, 6, 0.18) 32%, rgba(8, 6, 6, 0.46) 100%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.12), rgba(212, 160, 23, 0.08), rgba(10, 8, 8, 0.02));
}

body.home-founder .hero-copy .eyebrow,
body.home-founder .team-spotlight .eyebrow,
body.home-founder .insights-head .eyebrow,
body.home-founder .event-strip-copy .eyebrow,
body.home-founder .booking-shell .eyebrow {
  letter-spacing: 0.2em;
}

body.home-founder .section-title {
  /*max-width: 24ch;*/
}

body.home-founder .team-spotlight .section-title,
body.home-founder .insights-head .section-title,
body.home-founder .event-strip-copy .section-title,
body.home-founder .booking-title {
  max-width: none;
}

body.home-founder .founder-note-section {
  padding: 8px 0 18px;
}

body.home-founder .founder-note-shell {
  position: relative;
  padding: 30px 34px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(249, 241, 229, 0.94)),
    linear-gradient(180deg, rgba(212, 160, 23, 0.04), rgba(10, 36, 99, 0.03));
  border: 1px solid rgba(212, 160, 23, 0.18);
  box-shadow: 0 22px 44px rgba(24, 18, 16, 0.1);
}

body.home-founder .founder-note-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.04), transparent 40%, rgba(212, 160, 23, 0.06));
  pointer-events: none;
}

body.home-founder .founder-note-meta,
body.home-founder .founder-note-signoff {
  position: relative;
  z-index: 1;
}

body.home-founder .founder-note-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

body.home-founder .founder-note-label {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a2463;
}

body.home-founder .founder-note-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0));
}

body.home-founder .founder-note-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  /*max-width: 42rem;*/
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  color: #231916;
}

body.home-founder .founder-note-signoff {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(35, 25, 22, 0.82);
}

body.home-founder .founder-note-signoff strong {
  font-size: 1rem;
  color: #171111;
}

body.home-founder .problem-card,
body.home-founder .feature-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.home-founder .problem-card:hover,
body.home-founder .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.24);
  box-shadow: 0 20px 36px rgba(23, 17, 17, 0.1);
}

body.home-founder .team-spotlight {
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(246, 238, 228, 0.92)),
    linear-gradient(180deg, rgba(10, 36, 99, 0.02), rgba(212, 160, 23, 0.04));
  border-color: rgba(201, 168, 76, 0.16);
}

body.home-founder .booking-section {
  position: relative;
  overflow: hidden;
}

body.home-founder .booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 168, 76, 0.08), transparent 20%),
    radial-gradient(circle at 88% 28%, rgba(10, 36, 99, 0.05), transparent 22%);
  pointer-events: none;
}

body.home-founder .booking-shell,
body.home-founder .founder-note-shell {
  position: relative;
  z-index: 1;
}

body.home-founder.theme-dark .founder-note-shell {
  background:
    linear-gradient(135deg, rgba(24, 18, 18, 0.96), rgba(17, 13, 14, 0.96)),
    linear-gradient(180deg, rgba(212, 160, 23, 0.05), rgba(10, 36, 99, 0.04));
  border-color: rgba(212, 160, 23, 0.16);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

body.home-founder.theme-dark .founder-note-label {
  color: #d6b36a;
}

body.home-founder.theme-dark .founder-note-rule {
  background: linear-gradient(90deg, rgba(214, 179, 106, 0.56), rgba(214, 179, 106, 0));
}

body.home-founder.theme-dark .founder-note-quote,
body.home-founder.theme-dark .founder-note-signoff strong {
  color: #f2e8d8;
}

body.home-founder.theme-dark .founder-note-signoff {
  color: rgba(242, 232, 216, 0.78);
}

@media (max-width: 991px) {
  body.home-founder .founder-note-shell {
    padding: 24px 22px;
  }

  body.home-founder .founder-note-quote {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }
}

body.home-hero-darker:not(.theme-dark) .audience-card-media {
  position: relative;
}

body.home-hero-darker:not(.theme-dark) .audience-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 13, 12, 0.08), rgba(17, 13, 12, 0.38)),
    linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(10, 36, 99, 0));
  pointer-events: none;
}

body.home-hero-darker:not(.theme-dark) .audience-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 235, 0.88));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 20px 38px rgba(25, 18, 16, 0.12);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--em-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(255,255,255,.013) 55px, rgba(255,255,255,.013) 56px);
  pointer-events: none;
}

.page-hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.page-hero-ring:nth-child(1) { width: 600px; height: 600px; top: -300px; right: -100px; }
.page-hero-ring:nth-child(2) { width: 400px; height: 400px; top: -200px; right: 0px; }
.page-hero-ring:nth-child(3) { width: 200px; height: 200px; bottom: -60px; left: 10%; }

.page-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}

.page-hero-kicker::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: block; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: #fff; line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 15px; color: rgba(255,255,255,.55);
  line-height: 1.72; max-width: 500px;
}

.breadcrumb-hero {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.38);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 32px;
}

.breadcrumb-hero a { color: rgba(255,255,255,.38); text-decoration: none; }
.breadcrumb-hero a:hover { color: var(--gold); }
.breadcrumb-hero i { font-size: 9px; }
.breadcrumb-hero span { color: rgba(255,255,255,.72); }

/* Page hero entrance animations */
.ha { opacity: 0; }
@keyframes haUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ha1 { animation: haUp .6s .1s cubic-bezier(.22,1,.36,1) forwards; }
.ha2 { animation: haUp .6s .25s cubic-bezier(.22,1,.36,1) forwards; }
.ha3 { animation: haUp .65s .4s cubic-bezier(.22,1,.36,1) forwards; }
.ha4 { animation: haUp .65s .6s cubic-bezier(.22,1,.36,1) forwards; }

/* ─── FOUNDER QUOTE SECTION ─── */
.founder-quote-section { padding: 80px 0; background: var(--surface-soft); }
.founder-quote-shell {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.founder-quote-img {
  position: relative;
  flex-shrink: 0;
}
.founder-quote-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.founder-quote-img::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  z-index: -1;
  opacity: .35;
}
.founder-blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  font-style: italic;
  color: var(--em);
  line-height: 1.5;
  margin: 20px 0 16px;
  padding: 0;
  border: none;
}
.founder-cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 4px;
}

.testimonials-section {
  padding: 80px 0;
}

.testimonial-card {
  position: relative;
  height: 100%;
  padding: 30px 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.92));
  border: 1px solid rgba(201, 168, 76, 0.14);
  box-shadow: 0 18px 34px rgba(19, 16, 15, 0.08);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.03), transparent 42%, rgba(201, 168, 76, 0.05));
  pointer-events: none;
}

.testimonial-mark,
.testimonial-copy,
.testimonial-meta {
  position: relative;
  z-index: 1;
}

.testimonial-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
  font-size: 1.4rem;
}

.testimonial-copy {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(35, 28, 24, 0.84);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.testimonial-meta span {
  font-size: 0.83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(35, 28, 24, 0.5);
}

body.theme-dark .testimonial-card {
  background: linear-gradient(180deg, rgba(22, 18, 18, 0.96), rgba(16, 13, 13, 0.94));
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

body.theme-dark .testimonial-card::before {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.08), transparent 42%, rgba(212, 160, 23, 0.06));
}

body.theme-dark .testimonial-copy {
  color: rgba(242, 232, 216, 0.84);
}

body.theme-dark .testimonial-meta strong {
  color: #f2e8d8;
}

body.theme-dark .testimonial-meta span {
  color: rgba(242, 232, 216, 0.52);
}

@media (max-width: 900px) {
  .founder-quote-shell { grid-template-columns: 1fr; }
  .founder-quote-img img { height: 320px; }
}

.hero-grid,
.two-col,
.cta-grid,
.service-layout,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-copy .eyebrow {
  color: var(--emerald);
}

.hero-copy .section-copy {
  max-width: 630px;
  font-size: 1rem;
}

.hero-actions,
.button-row,
.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-copy .hero-actions {
  margin-bottom: 8px;
}

.trust-row-overlay {
  position: relative;
  z-index: 2;
  margin: -24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 18px;
  border-radius: 0px;
  background: rgba(7, 23, 61, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(7, 23, 61, 0.2);
  backdrop-filter: blur(8px);
}

.trust-row-overlay .trust-badge {
  min-height: 0;
  position: relative;
  padding: 4px 18px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.trust-row-overlay .trust-badge .icon {
  background: rgba(212, 160, 23, 0.18);
  color: #f1cf73;
}

.trust-row-overlay .trust-badge strong {
  color: #ffffff;
}

.trust-row-overlay .trust-badge:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  font-weight: 600;
}

.trust-badge .icon,
.feature-card .icon,
.problem-card .icon,
.timeline-step .icon,
.resource-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--emerald);
  font-size: 15px;
  font-weight: 800;
}

.trust-badge strong,
.founder-meta strong {
  display: block;
  color: var(--emerald-deep);
  font-size: 13px;
  line-height: 1.2;
}

.trust-badge span,
.founder-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.video-card,
.panel,
.founder-card,
.timeline-card,
.service-card,
.resource-card,
.scenario-card,
.callout-card,
.stats-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-lg);
}

.video-card {
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.84));
  color: var(--surface);
}

.video-frame {
  position: relative;
  min-height: 540px;
}

.video-frame img,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 61, 0.06) 0%, rgba(7, 23, 61, 0.12) 34%, rgba(7, 23, 61, 0.34) 100%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.12), rgba(10, 36, 99, 0.02));
}

.metrics-row,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

.audience-strip {
  display: grid;
  gap: 18px;
}

.audience-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.audience-card-media {
  position: relative;
  overflow: hidden;
  margin: -22px -24px 18px;
  border-radius: 24px 24px 18px 18px;
}

.audience-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.04), rgba(7, 23, 61, 0.34));
  pointer-events: none;
}

.audience-card-image {
  display: block;
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.audience-card:hover .audience-card-image {
  transform: scale(1.04);
}

.audience-card-image-owners {
  object-position: center 20%;
}

.audience-card-image-executives {
  object-position: center 14%;
}

.audience-card-image-families {
  object-position: center 18%;
}

.audience-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 13, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1cf73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.audience-card-body {
  position: relative;
}

.audience-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.audience-card-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(212, 160, 23, 0.42);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(10, 36, 99, 0.08);
  color: var(--gold);
  font-size: 18px;
}

.audience-card h3 {
  margin: 16px 0 0;
  color: var(--emerald-deep);
  font-family: "Playfair Display", serif;
}

.audience-card h3 {
  font-size: 1.5rem;
  line-height: 1.05;
}

.audience-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.who-serve-hero-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.92));
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}

.who-serve-hero-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f1cf73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.who-serve-hero-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.who-serve-hero-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.who-serve-hero-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.16);
  color: #f1cf73;
  font-size: 14px;
}

.who-serve-hero-list span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.7;
}

.fit-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 26px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
}

.fit-founder-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(10, 36, 99, 0.04);
}

.fit-founder-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 18px;
}

.fit-founder-card strong {
  display: block;
  color: var(--emerald-deep);
  font-size: 1rem;
}

.fit-founder-card span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-founder-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.contact-note-shell,
.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 26px;
  align-items: start;
}

.contact-form-panel {
  padding: 26px;
}

.contact-form-panel .float-field textarea {
  min-height: 150px;
}

#contact-success {
  display: none;
}

#contact-success.visible {
  display: block;
}

.event-strip-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
}

.event-strip-copy .section-copy {
  max-width: 520px;
}

.event-strip-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.event-strip-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 36, 99, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.event-strip-notes i {
  color: var(--emerald);
  font-size: 14px;
}

.event-strip-poster {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.event-strip-poster img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.fee-calculator-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(180deg, #091833 0%, #081226 100%);
}

.fee-calculator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 55px, rgba(255, 255, 255, 0.012) 55px, rgba(255, 255, 255, 0.012) 56px);
  pointer-events: none;
}

.fee-calculator-section .container {
  position: relative;
  z-index: 1;
}

.fee-calculator-section .eyebrow {
  color: rgba(255, 255, 255, 0.56);
  --rule-color: rgba(255, 255, 255, 0.14);
}

.fee-calculator-section .section-title,
.fee-calculator-section .section-title em {
  color: #fff;
}

.fee-calculator-section .section-title em {
  color: #7fb3ff;
}

.fee-calculator-section .section-copy {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.58);
}

.fee-schedule-card {
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-schedule-title {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fee-schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fee-schedule-row:last-child {
  border-bottom: none;
}

.fee-schedule-row span:last-child {
  color: #7fb3ff;
  font-weight: 700;
}

.calc-card {
  padding: 48px 44px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-label {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calc-asset-display {
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin: 12px 0 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg, #7fb3ff var(--val, 5.3%), rgba(255, 255, 255, 0.15) var(--val, 5.3%));
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7fb3ff;
  border: 3px solid #081226;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(127, 179, 255, 0.4);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7fb3ff;
  border: 3px solid #081226;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(127, 179, 255, 0.4);
}

.calc-slider-range {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.calc-results {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 8px;
}

.calc-result-val {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #7fb3ff;
}

.calc-result-val-sm {
  font-size: 32px;
}

.calc-result-lbl {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.calc-breakdown {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.calc-row span:last-child {
  color: #7fb3ff;
  font-weight: 700;
}

.calc-cta {
  margin-top: 24px;
}

body.theme-dark .fee-calculator-section {
  background: linear-gradient(180deg, #060d11 0%, #090909 100%);
}

body.theme-dark .calc-card,
body.theme-dark .fee-schedule-card {
  border-color: rgba(212, 160, 23, 0.14);
}

body.theme-dark .fee-calculator-section .section-title em,
body.theme-dark .fee-schedule-row span:last-child,
body.theme-dark .calc-asset-display,
body.theme-dark .calc-result-val,
body.theme-dark .calc-row span:last-child {
  color: #f1cf73;
}

body.theme-dark .fee-calculator-section .eyebrow,
body.theme-dark .fee-schedule-title,
body.theme-dark .calc-label,
body.theme-dark .calc-result-lbl,
body.theme-dark .calc-slider-range {
  color: rgba(241, 226, 199, 0.58);
}

body.theme-dark .calc-breakdown {
  background: rgba(255, 255, 255, 0.03);
}

body.theme-dark .calc-slider {
  background: linear-gradient(90deg, #d4a017 var(--val, 5.3%), rgba(255, 255, 255, 0.15) var(--val, 5.3%));
}

body.theme-dark .calc-slider::-webkit-slider-thumb {
  background: #d4a017;
  border-color: #15110f;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.34);
}

body.theme-dark .calc-slider::-moz-range-thumb {
  background: #d4a017;
  border-color: #15110f;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.34);
}

body.home-founder .fee-calculator-section .section-title {
  max-width: none;
}

.comparison-section {
  padding: 88px 0;
  /*background: var(--white);*/
}

.comparison-head {
  text-align: center;
  margin-bottom: 34px;
}

.comparison-head .section-copy {
  max-width: 30rem;
  margin: 12px auto 0;
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comp-table th {
  padding: 16px 18px;
  background: #f4f6fb;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}

.comp-table th:first-child {
  text-align: left;
  border-top-left-radius: 14px;
}

.comp-table th:last-child {
  border-top-right-radius: 14px;
}

.comp-table th.col-cmc {
  background: linear-gradient(180deg, rgba(10, 36, 99, 0.96), rgba(10, 36, 99, 0.88));
  color: #fff;
}

.comp-table td {
  padding: 16px 18px;
  background: var(--white);
  color: var(--slate);
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}

.comp-table td:first-child {
  text-align: left;
  color: var(--charcoal);
  font-weight: 500;
}

.comp-table td.col-cmc {
  background: rgba(10, 36, 99, 0.04);
  color: var(--emerald);
  font-weight: 600;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.comp-table tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

.comp-icon-yes {
  color: #3b82f6;
  font-size: 18px;
}

.comp-icon-no {
  color: #f43f5e;
  font-size: 18px;
}

.comp-icon-neutral {
  color: var(--slate);
  font-size: 16px;
}

.comparison-cta {
  margin-top: 32px;
  text-align: center;
}

body.theme-dark .comparison-section {
  background: #100c0b;
}

body.theme-dark .comp-table th,
body.theme-dark .comp-table td {
  background: #18120f;
  border-bottom-color: rgba(212, 160, 23, 0.1);
}

body.theme-dark .comp-table th {
  color: rgba(242, 229, 205, 0.72);
}

body.theme-dark .comp-table td {
  color: rgba(233, 220, 196, 0.7);
}

body.theme-dark .comp-table td:first-child {
  color: #f2e5cd;
}

body.theme-dark .comp-table td.col-cmc {
  background: rgba(212, 160, 23, 0.08);
  color: #f1cf73;
}

body.theme-dark .comp-icon-yes {
  color: #d4a017;
}

body.theme-dark .comp-icon-neutral {
  color: rgba(233, 220, 196, 0.66);
}

@media (max-width: 767px) {
  .fee-calculator-section {
    padding: 72px 0;
  }

  .calc-card {
    padding: 28px 22px;
  }

  .fee-schedule-card {
    padding: 18px 18px;
  }

  .calc-results {
    gap: 22px;
  }

  .calc-result-val {
    font-size: 38px;
  }

  .calc-result-val-sm {
    font-size: 28px;
  }

  .fee-schedule-row,
  .calc-row {
    font-size: 12px;
  }

  .comparison-section {
    padding: 72px 0;
  }

  .comp-table th,
  .comp-table td {
    padding: 14px 12px;
    font-size: 12px;
    min-width: 132px;
  }

  .comp-table th:first-child,
  .comp-table td:first-child {
    min-width: 190px;
  }
}

.metrics-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.metrics-intro {
  max-width: 720px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.feature-card,
.problem-card,
.timeline-step,
.resource-card,
.scenario-card,
.service-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
}

.metric-card::before,
.feature-card::before,
.problem-card::before,
.timeline-step::before,
.resource-card::before,
.scenario-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 160, 23, 0));
}

.metric-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
}

.metric-card span {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--emerald-deep);
}

.metric-card p,
.feature-card p,
.problem-card p,
.timeline-step p,
.resource-card p,
.scenario-card p,
.service-card p,
.panel p,
.callout-card p,
.stats-card p,
.founder-copy {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

.feature-card h3,
.problem-card h3,
.timeline-step h3,
.resource-card h3,
.scenario-card h3,
.service-card h3,
.panel h3,
.callout-card h3,
.stats-card h3 {
  margin: 18px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald-deep);
}

.panel,
.callout-card,
.stats-card {
  padding: 32px;
}

.panel {
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(10, 36, 99, 0.04), rgba(255, 255, 255, 0.9));
}

.panel .list,
.service-card .mini-list,
.callout-card .list,
.stats-card .list,
.timeline-card .list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.panel .list li,
.service-card .mini-list li,
.callout-card .list li,
.stats-card .list li,
.timeline-card .list li {
  padding: 12px 0;
  border-top: 1px solid rgba(10, 36, 99, 0.08);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.panel .list li:first-child,
.service-card .mini-list li:first-child,
.callout-card .list li:first-child,
.stats-card .list li:first-child,
.timeline-card .list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.founder-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-details {
  padding: 32px;
}

.founder-role {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder-copy {
  margin-top: 18px;
}

.founder-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.timeline-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.9));
  color: var(--surface);
}

.timeline-card .section-title,
.timeline-card h3 {
  color: var(--surface);
}

.timeline-card p,
.timeline-card .list li {
  color: rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.timeline-steps {
  display: grid;
  gap: 18px;
}

.timeline-step h3 {
  font-size: 1.7rem;
}

.service-layout {
  align-items: start;
}

.services-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.services-section-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  min-height: 200px;
}

.services-section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.02), rgba(7, 23, 61, 0.7));
}

.services-section-visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.services-section-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.65;
}

.grid-2-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.service-card-top .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(10, 36, 99, 0.08);
  color: var(--emerald);
  font-size: 22px;
}

.service-card-top h3 {
  margin: 2px 0 0;
  line-height: 1.08;
}

.service-card p strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-preview-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.process-preview-panel {
  position: sticky;
  top: 122px;
  padding: 22px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.process-preview-panel .section-title {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.process-preview-panel .section-title em {
  color: var(--gold);
  font-style: italic;
}

.process-preview-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
}

.process-preview-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-left: 2px solid rgba(10, 36, 99, 0.1);
  color: var(--muted);
  padding-left: 16px;
}

.process-preview-nav-item.active {
  border-left-color: var(--emerald);
}

.process-preview-num {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-preview-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.process-preview-cta {
  margin-top: 18px;
}

.process-preview-steps {
  display: grid;
  gap: 0;
}

.process-preview-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
}

.process-step-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--emerald);
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
}

.process-step-line {
  flex: 1;
  width: 2px;
  min-height: 56px;
  background: linear-gradient(180deg, rgba(10, 36, 99, 0.3), rgba(10, 36, 99, 0.08));
}

.process-step-card {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}

.process-preview-step:last-child .process-step-card {
  border-bottom: none;
  padding-bottom: 0;
}

.process-step-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-step-card h3 {
  margin: 0;
  color: var(--emerald-deep);
  font-family: "Playfair Display", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

.process-step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

.process-step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
}

.process-step-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.process-step-features i {
  color: var(--emerald);
}

.process-step-endnote {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.9));
  box-shadow: var(--shadow-md);
}

.process-step-endnote p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
}

.insights-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.insights-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insights-head-cta {
  white-space: nowrap;
}

.insights-nav {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 36, 99, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--emerald);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.insights-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 36, 99, 0.22);
  background: #ffffff;
}

.insights-nav:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.insights-carousel {
  overflow: hidden;
}

.insights-track {
  display: flex;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.insight-card-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.insight-article {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.insight-article-media {
  padding: 0;
  overflow: hidden;
}

.insight-card-image {
  display: flex;
  height: 180px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 180px;
  background:
    linear-gradient(160deg, rgba(7, 23, 61, 0.96), rgba(10, 36, 99, 0.88)),
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.22), transparent 28%);
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.insight-card-image-logo {
  background:
    radial-gradient(circle at center, rgba(212, 160, 23, 0.14), transparent 38%),
    linear-gradient(160deg, rgba(7, 23, 61, 0.96), rgba(10, 36, 99, 0.88));
}

.insight-card-image-logo img {
  width: 172px;
  min-height: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.insight-card-image-placeholder {
  background:
    radial-gradient(circle at center, rgba(212, 160, 23, 0.14), transparent 38%),
    linear-gradient(160deg, rgba(7, 23, 61, 0.96), rgba(10, 36, 99, 0.88));
}

.insight-card-image-placeholder img {
  width: 100%;
  min-height: 180px;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.insight-article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.insight-article-media .insight-article-body {
  padding: 22px;
}

.insight-article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.insight-tagline,
.insight-date {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-tagline {
  color: var(--gold);
}

.insight-date {
  color: var(--muted);
}

.insight-article h3 {
  margin: 0;
  color: var(--emerald-deep);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.insight-article h3 {
  font-size: 1.45rem;
}

.insight-title-link {
  color: inherit;
  text-decoration: none;
}

.insight-title-link:hover {
  color: var(--gold);
}

.insight-article p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-link::after {
  content: "+";
  font-size: 15px;
  line-height: 1;
}

.newsletter-section {
  position: relative;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 251, 0.82));
  box-shadow: var(--shadow-lg);
}

.newsletter-copy {
  display: grid;
  align-content: center;
}

.newsletter-copy .section-title,
.newsletter-panel h3 {
  margin: 0;
}

.newsletter-copy .section-copy {
  max-width: 640px;
  margin-top: 14px;
}

.newsletter-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 22px;
}

.newsletter-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 36, 99, 0.08);
  color: var(--emerald-deep);
  font-size: 13px;
  font-weight: 700;
}

.newsletter-points i,
.newsletter-panel-label {
  color: var(--gold);
}

.newsletter-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  background: linear-gradient(160deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.9));
  box-shadow: var(--shadow-md);
}

.newsletter-panel-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-panel h3 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  line-height: 1.05;
}

.newsletter-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.7;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.newsletter-field {
  flex: 1 1 220px;
}

.newsletter-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.95rem;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-field input:focus {
  border-color: rgba(212, 160, 23, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.14);
}

.newsletter-field input.is-invalid {
  border-color: rgba(220, 53, 69, 0.8);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.14);
}

.newsletter-submit {
  min-width: 152px;
  justify-content: center;
}

.newsletter-alert {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.newsletter-alert-success {
  background: rgba(102, 187, 106, 0.14);
  border: 1px solid rgba(102, 187, 106, 0.3);
  color: #dff5d8;
}

.newsletter-alert-error {
  background: rgba(220, 53, 69, 0.14);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ffd7dd;
}

.newsletter-alert-inline {
  margin-top: 10px;
}

.newsletter-actions .btn-primary,
.newsletter-actions .btn-outline {
  min-width: 180px;
  justify-content: center;
}

.newsletter-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.newsletter-footnote {
  font-size: 0.84rem;
}

.service-stack {
  display: grid;
  gap: 20px;
}

.team-showcase {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-lg);
}

.team-showcase img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.team-showcase-body {
  padding: 28px 30px 30px;
}

.team-showcase-body h3,
.team-member-card h3,
.value-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald-deep);
}

.team-showcase-body p,
.team-member-card p,
.value-card p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

.team-mini-grid,
.team-grid {
  display: grid;
  gap: 20px;
}

.team-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.team-member-card,
.value-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: var(--shadow-md);
}

.team-member-card img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.member-role {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-member-card .statline,
.team-showcase-body .statline {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.proof-pill {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238, 242, 251, 0.88), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.proof-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.proof-pill strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: var(--emerald-deep);
}

.distinction-card {
  position: relative;
  padding-top: 72px;
}

.distinction-check {
  position: absolute;
  top: 24px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.team-hero-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 251, 0.78));
  box-shadow: var(--shadow-lg);
}

.team-hero-stat {
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.9));
  color: #ffffff;
}

.team-hero-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 0.9;
}

.team-hero-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.75;
}

.team-hero-pillars {
  display: grid;
  gap: 14px;
}

.team-hero-pillar {
  padding: 18px 20px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.team-hero-pillar h3,
.team-spotlight-body h3,
.team-directory-note strong,
.team-profile-body h3,
.team-addition-card h3,
.team-support-card h3,
.team-cta-shell h3 {
  margin: 0;
  color: var(--emerald-deep);
  font-family: "Playfair Display", serif;
}

.team-hero-pillar h3 {
  font-size: 1.45rem;
}

.team-hero-pillar p,
.team-directory-note span,
.team-profile-body p,
.team-addition-card p,
.team-support-card p,
.team-cta-shell p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.team-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.team-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.team-spotlight-body {
  padding: 28px;
}

.team-spotlight-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.team-fact-card {
  padding: 14px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 18px;
  background: rgba(238, 242, 251, 0.55);
}

.team-fact-card strong {
  display: block;
  color: var(--emerald);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-fact-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.team-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.team-directory-note {
  max-width: 340px;
  padding: 20px 22px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.team-directory-note strong {
  display: block;
  font-size: 1.35rem;
}

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.team-profile-card,
.team-addition-card,
.team-support-card {
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.team-profile-card {
  overflow: hidden;
}

.team-profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.team-profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(238, 242, 251, 0.88), rgba(247, 245, 240, 0.96));
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}

.team-profile-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(10, 36, 99, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-profile-body {
  padding: 24px;
}

.team-profile-body h3,
.team-addition-card h3,
.team-support-card h3 {
  margin-top: 12px;
  font-size: 1.7rem;
  line-height: 1;
}

.team-profile-body .statline,
.team-addition-card .statline {
  display: block;
  margin-top: 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
}

.team-addition-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-style: dashed;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 242, 251, 0.66));
}

.team-addition-mark {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.08);
  color: var(--emerald);
  font-size: 2rem;
  font-weight: 400;
}

.team-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-support-card {
  padding: 24px;
}

.team-member-listing .statline {
  display: block;
  margin-top: 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
}

.team-portrait-farzana {
  object-position: center 12%;
}

.team-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(7, 23, 61, 0.98), rgba(10, 36, 99, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.team-cta-shell .eyebrow,
.team-cta-shell h3 {
  color: #ffffff;
}

.team-cta-shell p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card small,
.resource-card small,
.scenario-card small {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.callout-card {
  background: linear-gradient(180deg, rgba(10, 36, 99, 0.88), rgba(7, 23, 61, 0.98));
  color: var(--surface);
}

.callout-card h3 {
  color: var(--surface);
}

.callout-card p,
.callout-card .list li {
  color: rgba(255, 255, 255, 0.76);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.event-strip {
  padding-top: 0;
}

.booking-section {
  padding-top: 0;
  background: var(--cream);
}

.booking-shell {
  padding-top: 16px;
}

.booking-title em {
  font-style: italic;
  color: var(--gold);
}

.booking-copy {
  margin-bottom: 28px;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--em-tint);
  color: var(--em);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.booking-benefit strong,
.booking-benefit span {
  display: block;
}

.booking-benefit strong {
  font-size: 13px;
  color: var(--charcoal);
}

.booking-benefit span {
  margin-top: 3px;
  font-size: 12px;
  color: var(--slate);
}

.booking-note {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--silver);
  text-align: center;
}

.booking-note-center {
  font-size: 11px;
  margin-top: 12px;
}

.booking-edit-btn {
  margin-left: auto;
  font-size: 11px;
}

.booking-form-frame {
  border: none;
  padding: 0;
  border-radius: 0;
}

.booking-success-title {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--charcoal);
}

.booking-success-copy {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}

.btn-em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  background: var(--em);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(10, 36, 99, 0.2);
}

.btn-em:hover {
  background: var(--em-mid);
  transform: translateY(-1px);
}

.scheduler-wrap {
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.sched-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
}

.sched-tab {
  flex: 1;
  padding: 14px 12px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sched-tab.active {
  color: var(--em);
  border-bottom-color: var(--em);
}

.sched-tab.sched-tab-disabled {
  color: rgba(101, 107, 120, 0.55);
}

.sched-tab.sched-tab-disabled:not(.active) {
  cursor: not-allowed;
}

.sched-body {
  padding: 20px;
}

#schedCal {
  max-width: none;
}

.sched-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.9fr);
  align-items: start;
  gap: 22px;
}

.sched-layout.has-slots {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.9fr);
}

.sched-calendar-pane {
  max-width: 520px;
}

.sched-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 4px;
  padding: 16px 20px 0;
}

.sched-step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.sched-step.active {
  color: var(--em);
}

.sched-step.done {
  color: var(--gold);
}

.sched-step-num {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  font-size: 10px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.sched-step.active .sched-step-num {
  background: var(--em);
  color: #ffffff;
}

.sched-step.done .sched-step-num {
  background: var(--gold);
  color: #000000;
}

.sched-step-line {
  flex: 1;
  max-width: 32px;
  height: 1px;
  margin: 0 4px;
  background: rgba(0, 0, 0, 0.1);
}

.sched-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sched-month-nav button {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: none;
  color: var(--em);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sched-month-nav button:hover {
  background: var(--em-tint);
}

.sched-month-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.sched-days-hdr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.sched-days-hdr span {
  color: var(--silver);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.sched-day {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background: none;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sched-day:not(.disabled):not(.empty):hover {
  border-color: var(--em);
  background: var(--em-tint);
  color: var(--em);
}

.sched-day.selected {
  border-color: var(--em);
  background: var(--em);
  color: #ffffff;
}

.sched-day.today {
  border-color: var(--gold);
}

.sched-day.disabled,
.sched-day.empty {
  opacity: 0.3;
  cursor: default;
}

.sched-day.has-slot::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--em);
  transform: translateX(-50%);
}

.sched-day.selected::after {
  background: #ffffff;
}

.sched-slots {
  display: block;
  align-self: start;
  min-height: 372px;
  padding: 18px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 14px;
  background: rgba(238, 242, 251, 0.55);
}

.sched-slots.visible {
  display: block;
}

.sched-slots:not(.visible) .sched-slots-title,
.sched-slots:not(.visible) .sched-time-grid,
.sched-slots:not(.confirm-visible) .sched-confirm {
  display: none;
}

.sched-slots.visible .sched-slots-empty {
  display: none;
}

.sched-slots.confirm-visible .sched-slots-empty,
.sched-slots.confirm-visible .sched-slots-title,
.sched-slots.confirm-visible .sched-time-grid {
  display: none;
}

.sched-slots-empty {
  display: flex;
  min-height: 334px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sched-slots-empty-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.08);
  color: var(--em);
  font-size: 24px;
}

.sched-slots-empty h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 800;
}

.sched-slots-empty p {
  max-width: 240px;
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.sched-slots-title {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sched-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.booking-selected-slot {
  margin-bottom: 18px;
}

.sched-time {
  padding: 9px 6px;
  border: 1.5px solid rgba(10, 36, 99, 0.15);
  border-radius: 8px;
  background: var(--em-tint);
  color: var(--em);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sched-time:hover,
.sched-time.selected {
  border-color: var(--em);
  background: var(--em);
  color: #ffffff;
}

.sched-confirm {
  display: none;
  min-height: 334px;
  padding: 24px 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sched-confirm.visible {
  display: flex;
}

.sched-confirm-badge {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--em-tint);
  color: var(--em);
  font-size: 26px;
}

.sched-confirm-date {
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
}

.sched-confirm-time {
  margin-bottom: 20px;
  color: var(--em);
  font-size: 13px;
  font-weight: 700;
}

.sched-back {
  border: none;
  background: none;
  color: var(--slate);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.sched-client-info {
  display: none;
  padding: 16px 20px 20px;
}

.sched-client-info.visible {
  display: block;
}

.sched-booking-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(10, 36, 99, 0.15);
  border-radius: 10px;
  background: var(--em-tint);
}

.sched-booking-summary i {
  flex-shrink: 0;
  color: var(--em);
  font-size: 20px;
}

.sched-summary-date {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.sched-summary-time {
  color: var(--em);
  font-size: 11px;
  font-weight: 600;
}

.sched-info-title {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sched-field {
  position: relative;
  margin-bottom: 12px;
}

.sched-field input,
.sched-field select {
  width: 100%;
  padding: 18px 12px 6px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sched-field input:focus,
.sched-field select:focus {
  border-color: var(--em);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.08);
}

.sched-field label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--slate);
  font-size: 12px;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}

.sched-field input:focus ~ label,
.sched-field input:not(:placeholder-shown) ~ label,
.sched-field select:focus ~ label,
.sched-field select:valid ~ label {
  top: 4px;
  color: var(--em);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sched-submit-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 13px;
  border: none;
  border-radius: 50px;
  background: var(--em);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 36, 99, 0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sched-submit-btn:hover {
  background: var(--em-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.35);
}

.sched-back-link {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: none;
  background: none;
  color: var(--slate);
  font-size: 11px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.sched-success {
  display: none;
  padding: 32px 20px;
  text-align: center;
}

.sched-success.visible {
  display: block;
}

.sched-success-icon {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--em), var(--em-mid));
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.3);
}

.sched-success h4 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--charcoal);
}

.sched-success p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

/* Outlook Calendar Buttons */
.outlook-cal-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.outlook-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.outlook-btn-primary {
  background: #0078D4;
  color: #fff;
  border: 1.5px solid #0078D4;
}

.outlook-btn-primary:hover {
  background: #005fa3;
  border-color: #005fa3;
  color: #fff;
}

.outlook-btn-secondary {
  background: transparent;
  color: var(--em);
  border: 1.5px solid rgba(10, 36, 99, 0.25);
}

.outlook-btn-secondary:hover {
  background: rgba(10, 36, 99, 0.06);
  color: var(--em);
}

.outlook-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 3px;
}

body.theme-dark .outlook-btn-secondary,
body.home-page.home-dark .outlook-btn-secondary {
  color: #f1e2c7;
  border-color: rgba(255, 255, 255, 0.2);
}

body.theme-dark .outlook-btn-secondary:hover,
body.home-page.home-dark .outlook-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f1e2c7;
}

.sched-success-detail {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--em-tint);
  color: var(--em);
  font-size: 12px;
  font-weight: 600;
}

.booking-form-wrap {
  /*padding: 48px 44px;*/
  border: 0px solid var(--rule);
  border-radius: 20px;
  background: var(--white);
}

.booking-section-calendly .booking-shell {
  align-items: stretch;
}

.calendly-booking-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(10, 36, 99, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 245, 238, 0.94));
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 20px;
  padding: 0px;
  box-shadow: 0 18px 42px rgba(10, 36, 99, 0.07);
}

.calendly-booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.14), transparent 26%),
    linear-gradient(315deg, rgba(10, 36, 99, 0.05), transparent 24%);
  pointer-events: none;
}

.calendly-booking-header {
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  padding: 2px 4px 0;
    display: none;
}

.calendly-booking-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(10, 36, 99, 0.07);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.calendly-booking-header h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.calendly-booking-header p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.94rem;
  line-height: 1.45;
}

.calendly-booking-widget {
  position: relative;
  z-index: 1;
  min-width: 320px;
  height: 700px;
  margin-top: 4px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(10, 36, 99, 0.04);
}

.calendly-booking-fallback {
  min-height: 320px;
  border-radius: 14px;
  border: 1px dashed rgba(10, 36, 99, 0.16);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  margin-top: 4px;
}

.calendly-booking-fallback h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.calendly-booking-fallback p {
  margin: 0;
  color: var(--muted);
}

body.theme-dark .calendly-booking-card,
body.home-page.home-dark .calendly-booking-card {
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.15), transparent 28%),
    radial-gradient(circle at bottom right, rgba(72, 104, 180, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 24, 42, 0.96), rgba(10, 13, 24, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

body.theme-dark .calendly-booking-badge,
body.home-page.home-dark .calendly-booking-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #f3dd9a;
}

body.theme-dark .calendly-booking-header h3,
body.home-page.home-dark .calendly-booking-header h3,
body.theme-dark .calendly-booking-fallback h4,
body.home-page.home-dark .calendly-booking-fallback h4 {
  color: #f7f3eb;
}

body.theme-dark .calendly-booking-header p,
body.home-page.home-dark .calendly-booking-header p,
body.theme-dark .calendly-booking-fallback p,
body.home-page.home-dark .calendly-booking-fallback p {
  color: rgba(247, 243, 235, 0.72);
}

body.theme-dark .calendly-booking-widget,
body.home-page.home-dark .calendly-booking-widget {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.theme-dark .calendly-booking-fallback,
body.home-page.home-dark .calendly-booking-fallback {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.float-field {
  position: relative;
  margin-bottom: 18px;
}

.float-field input,
.float-field select,
.float-field textarea {
  width: 100%;
  padding: 22px 16px 8px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.float-field input:focus,
.float-field select:focus,
.float-field textarea:focus {
  border-color: var(--em);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.08);
}

.float-field label {
  position: absolute;
  top: 15px;
  left: 16px;
  color: var(--slate);
  font-size: 14px;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}

.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label,
.float-field select:focus ~ label,
.float-field select:valid ~ label,
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  color: var(--em);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.float-field textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 24px;
}

.form-submit-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: var(--em);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
  background: var(--em-mid);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  padding: 32px;
  text-align: center;
}

.form-success i {
  margin-bottom: 12px;
  color: #3b82f6;
  font-size: 48px;
}

.slot-chip {
  color: var(--emerald-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 36, 99, 0.1);
  box-shadow: var(--shadow-md);
}

.footer {
  position: relative;
  padding: 34px 0 14px;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 20%),
    radial-gradient(circle at left 20%, rgba(84, 116, 194, 0.1), transparent 24%),
    linear-gradient(180deg, #08152d 0%, #0b1e45 56%, #0c2558 100%);
  color: var(--surface);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 120px);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(170px, 0.62fr)) minmax(240px, 0.92fr);
  gap: 32px;
  padding: 0;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-links a,
.footer-meta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  margin: 0;
}

.footer-feature {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-feature h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--surface);
}

.footer-feature p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.5);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3d98f;
}

.footer-title {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1cf73;
}

.footer-accordion {
  margin: 0;
  border-top: 0;
  padding-top: 6px;
}

.footer-accordion summary {
  list-style: none;
}

.footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: default;
  min-height: 0;
  padding: 0;
}

.footer-accordion-toggle::after {
  content: "+";
  display: none;
  font-size: 18px;
  font-weight: 600;
  color: #f1cf73;
}

.footer-accordion[open] .footer-accordion-toggle::after {
  content: "-";
}

.footer-accordion-body {
  margin-top: 14px;
}

.footer-accordion-body:not(.footer-links) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  min-height: 42px;
}

.footer-link-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  min-height: 24px;
  min-width: 0;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 4px;
  color: rgba(241, 207, 115, 0.9);
}

.footer-link-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 4px;
  color: rgba(241, 207, 115, 0.78);
}

.footer-link-item a {
  margin: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.76);
}

.footer-link-item a {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

.footer-link-item a:hover,
.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contact-item span {
  margin: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.mobile-sticky-cta {
  display: none !important;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 26;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2b749, var(--gold));
  color: #231905;
  box-shadow: 0 18px 34px rgba(212, 160, 23, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-grid,
  .two-col,
  .cta-grid,
  .process-preview-shell,
  .service-layout,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .process-preview-panel {
    position: static;
    top: auto;
  }

  .team-spotlight,
  .team-support-grid {
    grid-template-columns: 1fr;
  }

  .team-directory-head,
  .team-cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-directory-note {
    max-width: none;
  }

  .insights-head {
    align-items: start;
  }

  .insight-card-slide {
    flex-basis: calc((100% - 22px) / 2);
  }

  .metrics-row,
  .grid-4,
  .audience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row-overlay {
    margin: -22px 0 0;
  }

  .event-strip-shell {
    grid-template-columns: 1fr;
  }

  .fit-shell {
    grid-template-columns: 1fr;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .trust-row,
  .grid-3,
  .founder-meta,
  .audience-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .process-preview-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step-card h3 {
    font-size: 1.7rem;
  }

  .trust-row-overlay {
    margin: -18px 0 0;
    display: grid;
    justify-content: stretch;
    padding: 10px 12px;
  }

  .trust-row-overlay .trust-badge {
    padding: 8px 4px;
  }

  .trust-row-overlay .trust-badge:not(:last-child)::after {
    content: none;
  }

  .insights-head {
    flex-direction: column;
  }

  .insight-article h3 {
    font-size: 1.35rem;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    max-height: 380px;
  }

  .topbar .container,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    gap: 12px;
  }

  .topbar-divider {
    display: none;
  }

  .team-grid,
  .team-mini-grid {
    grid-template-columns: 1fr;
  }

  .team-spotlight-facts,
  .team-directory-grid {
    grid-template-columns: 1fr;
  }

  .team-hero-stat strong {
    font-size: 2.7rem;
  }

  .event-strip-shell {
    padding: 24px;
    gap: 18px;
  }

  .fit-shell {
    padding: 24px;
  }

  .fit-founder-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .newsletter-shell {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  #section-dots {
    top: auto;
    bottom: 14px;
    left: 50%;
    right: auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(7, 23, 61, 0.16);
    transform: translateX(-50%);
  }

  body.theme-dark #section-dots,
  body.home-page.home-dark #section-dots {
    background: rgba(17, 13, 12, 0.9);
    border: 1px solid rgba(212, 160, 23, 0.12);
  }

  .sdot-tip {
    right: 50%;
    top: auto;
    bottom: 18px;
    transform: translateX(50%);
    font-size: 9px;
    padding: 4px 8px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .proof-pill,
  .panel,
  .callout-card,
  .stats-card {
    padding: 24px;
  }

  .section-divider {
    height: 18px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-divider::after {
    width: 56px;
    height: 12px;
  }

  .process-preview-panel,
  .process-step-endnote {
    padding: 22px;
  }

  .process-preview-step {
    grid-template-columns: 1fr;
  }

  .process-step-rail {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .process-step-line {
    width: 100%;
    min-height: 2px;
    height: 2px;
  }

  .trust-row-overlay {
    margin: -14px 0 0;
  }

  .trust-badge {
    padding: 10px 12px;
  }

  .insights-head-actions {
    width: 100%;
    justify-content: space-between;
  }

  .insights-head-cta {
    display: none;
  }

  .insight-card-slide {
    flex-basis: 100%;
  }

  .insight-card-image,
  .insight-card-image img {
    min-height: 160px;
  }

  .booking-form-wrap {
    padding: 0;
  }

  .calendly-booking-card {
    padding: 6px;
  }

  .calendly-booking-widget {
    height: 660px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-hero-panel,
  .team-spotlight-body,
  .team-profile-body,
  .team-addition-card,
  .team-support-card,
  .team-cta-shell {
    padding: 22px;
  }

  .team-spotlight {
    border-radius: 24px;
  }

  .team-profile-body h3,
  .team-addition-card h3,
  .team-support-card h3 {
    font-size: 1.45rem;
  }

  .audience-card,
  .event-strip-shell {
    padding: 18px;
  }

  .who-serve-hero-card,
  .fit-shell {
    padding: 20px;
  }

  .fit-founder-card {
    grid-template-columns: 1fr;
  }

  .fit-founder-card img {
    max-width: 140px;
  }

  .sched-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sched-calendar-pane {
    max-width: none;
  }

  .sched-slots {
    min-height: 0;
    padding: 14px;
  }

  .sched-slots-empty {
    min-height: 180px;
  }

  .sched-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sched-steps {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sched-step {
    font-size: 10px;
  }

  .topbar .container {
    gap: 6px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: none;
  }

  .topbar > .container > div:first-child {
    display: none;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    flex-wrap: nowrap;
  }

  .topbar-right a {
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .topbar .topbar-mobile-tagline {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    border-bottom-color: rgba(10, 36, 99, 0.06);
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

  section {
    padding: 42px 0;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 14px;
  }

  .brand img {
    width: 164px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .theme-toggle {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .theme-toggle:not(.theme-toggle-drawer) .theme-toggle-label {
    display: none;
  }

  .drawer-shell {
    --bs-offcanvas-width: min(88vw, 308px);
  }

  .drawer-shell .offcanvas-header {
    padding: 18px 18px 10px;
  }

  .drawer-shell .offcanvas-body {
    padding: 16px 18px 24px;
  }

  .drawer-shell .offcanvas-title {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .drawer-link {
    padding: 13px 0;
    font-size: 15px;
  }

  .drawer-contact {
    margin-top: 12px;
    padding-top: 16px;
  }

  .topbar .topbar-mobile-tagline {
    display: block !important;
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
  }

  .metrics-row,
  .grid-4,
  .grid-2-services {
    grid-template-columns: 1fr;
  }

  .services-section-intro {
    grid-template-columns: 1fr;
  }

  .contact-note-shell,
  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .services-section-visual,
  .services-section-visual img {
    min-height: 260px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-accordion {
    padding: 0;
    border: 1px solid rgba(212, 160, 23, 0.38);
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }

  .footer-accordion-toggle {
    cursor: pointer;
    min-height: 24px;
    padding: 12px 14px;
  }

  .footer-accordion-toggle::after {
    display: block;
    font-size: 18px;
    line-height: 1;
  }

  .footer-accordion:not([open]) .footer-accordion-body {
    display: none;
  }

  .footer-accordion[open] .footer-accordion-body {
    padding: 0 14px 12px;
  }

  .footer-feature {
    padding: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.62);
    box-shadow: none;
  }

  .video-frame {
    min-height: 420px;
  }

  .panel,
  .callout-card,
  .stats-card,
  .metric-card,
  .feature-card,
  .problem-card,
  .timeline-step,
  .resource-card,
  .scenario-card,
  .service-card,
  .founder-details,
  .timeline-card {
    padding: 24px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .newsletter-shell {
    padding: 22px 18px;
  }

  .newsletter-panel {
    padding: 22px 18px;
  }

  .newsletter-panel h3 {
    font-size: 1.55rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-submit,
  .newsletter-actions .btn-primary,
  .newsletter-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 641px) {
  .footer-accordion > .footer-accordion-body {
    display: block !important;
  }

  .footer-accordion > .footer-accordion-body.footer-links {
    display: flex !important;
    flex-direction: column;
  }
}

.footer-ledger {
  padding: 38px 0 14px;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.1), transparent 18%),
    linear-gradient(180deg, #08152d 0%, #0a1b3d 58%, #0b2455 100%);
}

.footer-ledger::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 26%);
}

.footer-ledger-shell,
.footer-ledger-shell-v2,
.footer-ledger-compact {
  position: relative;
  z-index: 1;
}

.footer-ledger-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(170px, 0.62fr)) minmax(220px, 0.9fr);
  gap: 34px;
}

.footer-ledger-brand img,
.footer-ledger-compact-brand img {
  width: 176px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-ledger-brand p,
.footer-ledger-col a,
.footer-ledger-col span,
.footer-ledger-compact p,
.footer-ledger-compact-links a,
.footer-ledger-compact-contact a,
.footer-ledger-compact-contact span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.72;
}

.footer-ledger-brand p,
.footer-ledger-compact-brand p {
  max-width: 320px;
  margin: 0;
}

.footer-ledger-title,
.footer-ledger-kicker {
  margin: 0 0 14px;
  color: #f1cf73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-ledger-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-ledger-col a,
.footer-ledger-compact-links a,
.footer-ledger-compact-contact a {
  transition: color 0.2s ease;
}

.footer-ledger-col a:hover,
.footer-ledger-compact-links a:hover,
.footer-ledger-compact-contact a:hover {
  color: #ffffff;
}

.footer-ledger-contact span,
.footer-ledger-compact-contact span {
  display: block;
}

.footer-ledger-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ledger-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.footer-ledger-v1 .footer-ledger-col {
  padding-top: 8px;
}

.footer-ledger-v2 .footer-ledger-statement {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
}

.footer-ledger-v2 .footer-ledger-statement h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.02;
}

.footer-ledger-shell-v2 {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.62fr));
  gap: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ledger-v3 .footer-ledger-compact {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.25fr) minmax(220px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.footer-ledger-compact-brand,
.footer-ledger-compact-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-ledger-compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  padding-top: 16px;
}

.footer-ledger-v3 .footer-ledger-bottom {
  margin-top: 20px;
}

.footer-ledger-v3 .footer-ledger-bottom .footer-social {
  margin-top: 0;
}

@media (max-width: 900px) {
  .footer-ledger-shell,
  .footer-ledger-shell-v2,
  .footer-ledger-v3 .footer-ledger-compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-ledger-v3 .footer-ledger-compact-links {
    justify-content: flex-start;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .footer-ledger-shell,
  .footer-ledger-shell-v2,
  .footer-ledger-v3 .footer-ledger-compact {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-ledger-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-ledger-v2 .footer-ledger-statement {
    margin-bottom: 22px;
  }
}

.footer-statement {
  padding: 42px 0 14px;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 18%),
    linear-gradient(180deg, #07132a 0%, #0b1a3c 54%, #0c2457 100%);
}

.footer-statement::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%);
}

.footer-statement-top {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: 24px;
}

.footer-statement-kicker {
  margin: 0 0 12px;
  color: #f1cf73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-statement-top h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.footer-statement-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(170px, 0.72fr)) minmax(230px, 0.9fr);
  gap: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-statement-brand img {
  width: 176px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-statement-brand p,
.footer-statement-col a,
.footer-statement-col span {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.72;
}

.footer-statement-brand p {
  max-width: 320px;
}

.footer-statement-title {
  margin: 0 0 14px;
  color: #f1cf73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-statement-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-statement-col a {
  transition: color 0.2s ease;
}

.footer-statement-col a:hover {
  color: #ffffff;
}

.footer-statement-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-statement-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .footer-statement-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-statement {
    padding-top: 32px;
  }

  .footer-statement-top {
    padding-bottom: 18px;
  }

  .footer-statement-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-statement-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-editorial {
  padding: 40px 0 14px;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.1), transparent 18%),
    linear-gradient(180deg, #071328 0%, #0a1a3b 58%, #0b224f 100%);
}

.footer-editorial::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%);
}

.footer-editorial-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 22px;
}

.footer-editorial-brand img {
  width: 180px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-editorial-brand .brand-logo-editorial {
  display: block;
  filter: none;
}

.footer-editorial-brand .brand-logo-dark {
  display: none;
}

body.theme-dark .footer-editorial-brand .brand-logo-light,
body.home-page.home-dark .footer-editorial-brand .brand-logo-light {
  display: none;
}

body.theme-dark .footer-editorial-brand .brand-logo-dark,
body.home-page.home-dark .footer-editorial-brand .brand-logo-dark {
  display: block;
}

.footer-editorial-brand p {
  margin: 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.72;
}

.footer-editorial-statement {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.02;
  text-align: right;
}

.footer-editorial-statement-line {
  display: block;
}

.footer-editorial-statement-emphasis {
  font-style: italic;
}

.footer-editorial-rule {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(241, 207, 115, 0.18), rgba(255, 255, 255, 0.08));
}

.footer-editorial-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-editorial-col {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-editorial-title {
  margin: 0 0 0px;
  color: #f1cf73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-editorial-col a,
.footer-editorial-col span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.72;
  transition: color 0.2s ease;
}

.footer-editorial-col a:hover {
  color: #ffffff;
}

.footer-icon {
  font-size: 11px;
  width: 14px;
  text-align: center;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.footer-editorial-col a:hover .footer-icon {
  opacity: 1;
}

.footer-editorial-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-editorial-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.footer-editorial-bottom .footer-social {
  margin-top: 0;
}

.legal-hero {
  padding: 84px 0 54px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.legal-card,
.legal-sidecard {
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.legal-card {
  padding: 34px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(238, 242, 251, 0.9);
  border: 1px solid rgba(10, 36, 99, 0.08);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 26px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald-deep);
}

.legal-card h3 {
  margin: 20px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--emerald);
}

.legal-card p,
.legal-card li,
.legal-sidecard p,
.legal-sidecard li {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
}

.legal-card p + p,
.legal-card ul + p,
.legal-card p + ul,
.legal-card ul + ul {
  margin-top: 14px;
}

.legal-card ul,
.legal-sidecard ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card li + li,
.legal-sidecard li + li {
  margin-top: 8px;
}

.legal-sidecard {
  padding: 26px;
  position: sticky;
  top: 108px;
}

.legal-sidecard h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--emerald-deep);
}

.legal-sidecard + .legal-sidecard {
  margin-top: 18px;
}

.legal-linklist {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.legal-linkitem {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 251, 0.72));
  color: var(--emerald-deep);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.legal-linkitem:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 36, 99, 0.18);
}

.legal-note {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.96), rgba(21, 55, 130, 0.96));
}

.legal-note p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.payment-hero .section-copy {
  max-width: 820px;
}

.payment-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.payment-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 36, 99, 0.08);
  color: var(--emerald-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(7, 23, 61, 0.08);
}

.payment-overview,
.payment-main,
.payment-faq {
  padding: 96px 0;
}

.payment-overview {
  padding-bottom: 40px;
}

.payment-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-info-card,
.payment-panel,
.payment-summary-card,
.payment-faq-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(7, 23, 61, 0.08);
}

.payment-info-card {
  padding: 30px;
}

.payment-card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.12), rgba(212, 160, 23, 0.22));
  color: var(--emerald);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.payment-info-card h2,
.payment-panel h2,
.payment-summary-card h3,
.payment-faq-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--emerald-deep);
  letter-spacing: -0.02em;
}

.payment-info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.payment-info-card p,
.payment-panel p,
.payment-faq-card p,
.payment-summary-note,
.payment-check-item span,
.payment-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.payment-panel {
  padding: 34px;
}

.payment-panel-head p {
  margin-top: 16px;
}

.payment-checklist {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.payment-check-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 242, 251, 0.78), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.payment-check-item strong,
.payment-step strong,
.payment-summary-row strong {
  display: block;
  color: var(--emerald-deep);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.payment-process {
  margin-top: 34px;
}

.payment-process h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--emerald-deep);
}

.payment-step-list {
  display: grid;
  gap: 16px;
}

.payment-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.payment-step span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  font-weight: 800;
}

.payment-sidebar {
  display: grid;
  gap: 20px;
}

.payment-summary-card {
  padding: 30px;
  background: linear-gradient(160deg, var(--emerald-deep), #102a69 70%, #173f92);
  color: rgba(255, 255, 255, 0.82);
}

.payment-summary-card .legal-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.payment-summary-card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-top: 16px;
}

.payment-summary-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.payment-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-summary-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.payment-summary-row strong {
  margin: 0;
  color: #fff;
  text-align: right;
}

.payment-summary-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.payment-sidebar-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.payment-sidebar-actions .btn-secondary {
  background: linear-gradient(135deg, #e2b749, var(--gold));
  color: #201807;
}

.payment-sidebar-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.payment-sidebar-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.payment-sidecard ul {
  margin: 18px 0 0;
}

.payment-sidecard a {
  color: var(--emerald);
  font-weight: 700;
}

.payment-faq {
  padding-top: 40px;
}

.payment-faq-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.payment-faq-card {
  padding: 28px;
}

.payment-faq-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-sidecard {
    position: static;
  }

  .payment-card-grid,
  .payment-layout,
  .payment-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .payment-overview,
  .payment-main,
  .payment-faq {
    padding: 72px 0;
  }

  .payment-panel,
  .payment-summary-card,
  .payment-info-card,
  .payment-faq-card {
    padding: 24px;
    border-radius: 24px;
  }

  .payment-step {
    grid-template-columns: 1fr;
  }

  .payment-step span {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 900px) {
  .footer-editorial-top {
    grid-template-columns: 1fr;
  }
  .footer-editorial-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-editorial-statement {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer-editorial {
    padding-top: 32px;
  }

  .footer-editorial-top {
    gap: 22px;
    padding-bottom: 18px;
  }

  .footer-editorial-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-editorial-rule {
    margin-bottom: 18px;
  }

  .footer-editorial-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.theme-toggle-label{
    display: none;
}

/* ── Frontend Utilities & Shared Page Patterns ─────────────────────────── */
.page-hero-content,
.section-overlay-container {
  position: relative;
  z-index: 2;
}

.section-gap-top { margin-top: 34px; }
.section-gap-y { margin-top: 34px; margin-bottom: 34px; }
.button-row-offset { margin-top: 26px; }
.eyebrow-gold {
  color: var(--gold);
  --rule-color: var(--gold);
}
.action-row-center {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.action-row-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.content-hidden {
  display: none !important;
}
.frontend-honeypot {
  display: none !important;
}

.hero-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.hero-stat-card--wide {
  padding: 22px;
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-value--compact {
  font-size: 36px;
}
.hero-stat-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.hero-stat-label--compact {
  font-size: 11px;
  margin-top: 4px;
}
.hero-stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.hero-feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px 22px;
}
.hero-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.hero-feature-icon--gold {
  background: rgba(212,160,23,.15);
  color: var(--gold);
}
.hero-feature-icon--lime {
  background: rgba(111,163,255,.15);
  color: var(--lime);
}
.hero-feature-icon--navy {
  background: rgba(10,36,99,.4);
  color: #8fb8ff;
}
.hero-feature-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-feature-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.hero-feature-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.hero-feature-inline-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  line-height: 1.35;
}

/* Home hero slider */
.hero-fullslider { position:relative; min-height:75vh; display:flex; align-items:center; overflow:hidden; }
.hero-fullslider-bg { position:absolute; inset:0; background-image:url('/images/fs-slider.jpeg'); background-size:cover; background-position:center 29%; background-repeat:no-repeat; z-index:0; }
.hero-fullslider-overlay { position:absolute; inset:0; background: linear-gradient(105deg, rgba(8,18,50,.82) 0%, rgba(8,18,50,.55) 55%, rgba(8,18,50,.15) 100%), linear-gradient(to top, rgba(8,18,50,.65) 0%, transparent 40%); z-index:1; }
.hero-fullslider-content { position:relative; z-index:2; width:100%; padding:100px 0 80px; }
.hero-fullslider-inner { max-width:840px; }
.hero-fullslider .eyebrow { color:var(--gold,#D4A017); border-color:var(--gold,#D4A017); opacity:.9; }
.hero-fullslider .page-title { color:#fff; font-size:clamp(1.7rem,4vw,3rem); line-height:1.18; margin-bottom:1.1rem; }
.hero-fullslider .section-copy { color:rgba(255,255,255,.82); font-size:1.07rem; max-width:520px; margin-bottom:2rem; }
.hero-fullslider .hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-fullslider .btn-outline, body .hero-fullslider .btn-outline { color:#fff !important; border-color:rgba(255,255,255,.55) !important; background:transparent !important; }
.hero-fullslider .btn-outline:hover, body .hero-fullslider .btn-outline:hover { background:rgba(255,255,255,.12) !important; border-color:#fff !important; color:#fff !important; }
.hero-fullslider-trust { display:none !important; }
.hero-scroll-hint { display:none; position:absolute; bottom:86px; left:50%; transform:translateX(-50%); z-index:4; flex-direction:column; align-items:center; gap:5px; color:rgba(255,255,255,.55); pointer-events:none; }
.hero-scroll-hint-line { width:1px; height:30px; background:linear-gradient(to bottom,transparent,rgba(255,255,255,.55)); animation:scrollPulse 2s ease-in-out infinite; }
.hero-scroll-hint i { font-size:.8rem; animation:scrollPulse 2s ease-in-out .3s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.35;transform:translateY(-3px);}50%{opacity:1;transform:translateY(3px);} }

.hero-checklist-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 32px 28px;
}
.hero-checklist-title {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.35);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-checklist-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-checklist-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-checklist-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.hero-portrait-card {
  position: relative;
}
.hero-portrait-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,.14);
}
.hero-portrait-image--tall {
  height: 370px;
  object-position: top center;
}
.hero-portrait-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(to top,rgba(6,24,61,.95) 0%,transparent 100%);
  padding: 32px 24px 24px;
}
.hero-portrait-overlay--compact {
  padding: 32px 24px 22px;
}
.hero-portrait-kicker {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-portrait-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.hero-portrait-name--large {
  font-size: 16px;
  margin-bottom: 2px;
}
.hero-portrait-role {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 600;
  margin-top: 2px;
}
.hero-portrait-role--spaced {
  letter-spacing: .1em;
  margin-top: 0;
}
.hero-portrait-copy {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  line-height: 1.5;
}
.hero-badge-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero-badge-pill {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.social-icon-list {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(10,36,99,.07);
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  transition: all .18s ease;
}
.social-icon-btn:hover {
  background: rgba(10,36,99,.12);
  color: var(--gold);
}

.media-cover-rounded {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.media-cover-rounded--event {
  height: 190px;
  margin-bottom: 18px;
}
.media-cover-rounded--poster {
  height: 280px;
  object-position: top;
}
.media-cover-rounded--hero {
  object-position: top;
}

.breadcrumb-bar {
  background: rgba(10,36,99,.04);
  border-bottom: 1px solid rgba(10,36,99,.08);
  padding: 12px 0;
}
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb-link {
  color: #c89b3c;
  text-decoration: none;
}
.breadcrumb-sep {
  color: rgba(10,36,99,.35);
}
.breadcrumb-sep i {
  font-size: 11px;
}
.breadcrumb-current {
  color: #0a2463;
  font-weight: 500;
}

.content-section-spacious {
  padding: 60px 0 80px;
}
.article-hero-title {
  font-size: clamp(1.6rem,4vw,2.6rem);
  line-height: 1.25;
}
.article-hero-sub {
  max-width: 640px;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.article-meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.article-cover-wrap {
  margin-bottom: 40px;
}
.article-cover-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(10,36,99,.08);
}
.article-share-shell {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,36,99,.08);
}
.article-share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-share-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.article-share-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(10,36,99,.15);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: transparent;
  transition: all .18s ease;
}
.article-share-link:hover {
  border-color: rgba(10,36,99,.28);
  background: rgba(10,36,99,.04);
}
.article-sidebar-stack {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 18px;
  border: 1px solid rgba(10,36,99,.12);
  border-radius: 12px;
  transition: all .18s ease;
}
.article-back-link:hover {
  background: rgba(10,36,99,.04);
}
.article-sidebar-card {
  background: #f8f9ff;
  border-radius: 16px;
  padding: 24px;
}
.article-sidebar-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 18px;
}
.article-related-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-related-link {
  text-decoration: none;
  color: inherit;
}
.article-related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.article-related-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.article-related-thumb-placeholder {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-related-thumb-placeholder i {
  color: var(--gold);
  font-size: 18px;
}
.article-related-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}
.article-related-meta {
  font-size: 11px;
  color: #888;
}
.article-download-title {
  margin: 0;
  color: var(--emerald-deep);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.3;
}
.article-download-copy {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.article-download-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  gap: 8px;
}
.article-sidebar-cta {
  background: linear-gradient(135deg,var(--navy) 0%,#153782 100%);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.article-sidebar-cta .article-sidebar-kicker {
  margin-bottom: 10px;
}
.article-sidebar-cta h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}
.article-sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0 0 18px;
  line-height: 1.6;
}
.article-sidebar-cta .btn-primary {
  display: inline-flex;
  text-align: center;
  font-size: 13px;
  justify-content: center;
  align-items: center;
}
.article-sidebar-cta-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  text-transform: none;
  letter-spacing: .02em;
  line-height: 1;
}

.search-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}
.search-toolbar-input {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-toolbar-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
}
.search-toolbar-input input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid rgba(10,36,99,.15);
  border-radius: 10px;
  font-size: 14px;
  color: #2f3034;
  outline: none;
  background: #fff;
}
.search-toolbar-input input:focus {
  border-color: rgba(10,36,99,.35);
  box-shadow: 0 0 0 3px rgba(10,36,99,.06);
}
.filter-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-chip {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(10,36,99,.15);
  background: transparent;
  color: var(--navy);
}
.filter-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.filter-submit-btn {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
}

body.theme-dark .search-toolbar-input i,
body.home-page.home-dark .search-toolbar-input i {
  color: rgba(241, 226, 199, 0.6);
}

body.theme-dark .search-toolbar-input input,
body.home-page.home-dark .search-toolbar-input input {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 226, 199, 0.16);
  color: #f5ead6;
}

body.theme-dark .search-toolbar-input input::placeholder,
body.home-page.home-dark .search-toolbar-input input::placeholder {
  color: rgba(241, 226, 199, 0.5);
}

body.theme-dark .search-toolbar-input input:focus,
body.home-page.home-dark .search-toolbar-input input:focus {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

body.theme-dark .filter-chip,
body.home-page.home-dark .filter-chip {
  border-color: rgba(241, 226, 199, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #f1e2c7;
}

body.theme-dark .filter-chip:hover,
body.home-page.home-dark .filter-chip:hover {
  border-color: rgba(212, 160, 23, 0.5);
  color: #fff;
}

body.theme-dark .filter-chip.is-active,
body.home-page.home-dark .filter-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #1c140a;
}
.filter-submit-btn:hover {
  opacity: .92;
}
.empty-search-state {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.empty-search-state i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
  opacity: .4;
}
.empty-search-state p {
  font-size: 16px;
  margin: 0;
}
.empty-search-state a {
  color: var(--gold);
}
.pagination-shell {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.pagination-inline {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.pagination-pill {
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(10,36,99,.15);
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}
.pagination-pill--wide {
  padding: 9px 16px;
}
.pagination-pill.is-active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-weight: 700;
}
.pagination-pill.is-disabled {
  border-color: rgba(10,36,99,.12);
  color: #bbb;
}

.faq-body-wrap {
  max-width: 800px;
}
.faq-empty-state {
  text-align: center;
  padding: 60px 0;
  color: #6b7ea4;
}
.faq-empty-state i {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  opacity: .4;
}
.faq-empty-state p {
  font-size: 16px;
}
.faq-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-cta-link-alt {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  box-shadow: 0 14px 28px rgba(4, 11, 29, 0.18);
}
.faq-cta-link-alt:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255,255,255,.72);
  color: #fff;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #0a2463;
  border-top: 1px solid rgba(200,155,60,.3);
  padding: 16px 24px;
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-copy {
  margin: 0;
  color: rgba(232,224,208,.85);
  font-size: 14px;
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}
.cookie-banner-copy strong,
.cookie-banner-copy a {
  color: #c89b3c;
}
.cookie-banner-copy a {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}
.cookie-btn-accept {
  background: #c89b3c;
  color: #0a2463;
  border: none;
  font-weight: 700;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(232,224,208,.6);
  border: 1px solid rgba(232,224,208,.25);
}

.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c89b3c;
  color: #0a2463;
  border: none;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: opacity .2s, transform .2s;
}
.back-to-top-btn.is-visible {
  display: flex;
}

.footer-powered {
  font-size: .78rem;
  color: #a0a8b8;
}
.footer-powered a {
  color: #c9a84c;
}
.footer-social.footer-social-tight {
  margin-top: 0;
}

/* FAQ page */
.faq-breadcrumb {
  margin-bottom: 24px;
}

/* Event detail page */
.event-detail-copy {
  font-size: 1.08rem;
  line-height: 1.8;
}
.event-detail-back-link {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.event-detail-meta i { margin-right: 5px; color: var(--gold); }
.event-detail-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.event-detail-poster img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(10,36,99,.14);
}

/* Home page */
.comparison-col-focus {
  width: 35%;
}

/* Payment page */
.pay-required-inline {
  color: #e74c3c;
  font-weight: 700;
}
.pay-optional-inline {
  font-weight: 400;
  color: #8a94a8;
}
.pay-alert-top {
  margin-top: 18px;
}
.pay-success-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pay-summary-stripe {
  color: #635bff;
}

/* Blog detail page */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),#e8c068);
  z-index: 9999;
  transition: width .1s linear;
}
.blog-body {
  font-size: 16px;
  line-height: 1.8;
  color: #2f3034;
}
.blog-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.blog-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 .75rem;
}
.blog-body p { margin: 0 0 1.4rem; }
.blog-body ul, .blog-body ol { padding-left: 1.5rem; margin: 0 0 1.4rem; }
.blog-body li { margin-bottom: .5rem; }
.blog-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 16px 24px;
  background: rgba(200,155,60,.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #444;
}
.blog-body a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.blog-body a:hover { color: var(--gold); }
.blog-body img { max-width: 100%; border-radius: 12px; margin: 1.5rem 0; }
.blog-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.blog-body th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.blog-body td { padding: 10px 14px; border-bottom: 1px solid rgba(10,36,99,.08); }
.blog-body tr:last-child td { border-bottom: none; }
.blog-body hr { border: none; border-top: 1px solid rgba(10,36,99,.1); margin: 2.5rem 0; }
.blog-body code { background: #f4f4f8; padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.blog-body pre { background: #f4f4f8; padding: 16px; border-radius: 8px; overflow-x: auto; margin: 1.5rem 0; }

body.theme-dark .breadcrumb-bar {
  background: rgba(255,255,255,.03);
  border-bottom-color: rgba(212,160,23,.12);
}
body.theme-dark .breadcrumb-link {
  color: #d4a017;
}
body.theme-dark .breadcrumb-sep {
  color: rgba(233,220,196,.45);
}
body.theme-dark .breadcrumb-current {
  color: #f2e5cd;
}
body.theme-dark .article-cover-image {
  border-color: rgba(212,160,23,.12);
}
body.theme-dark .article-share-shell {
  border-top-color: rgba(212,160,23,.12);
}
body.theme-dark .article-share-title,
body.theme-dark .article-back-link,
body.theme-dark .article-related-title,
body.theme-dark .article-download-title {
  color: #f2e5cd;
}
body.theme-dark .article-share-link,
body.theme-dark .article-back-link {
  color: #f2e5cd;
  border-color: rgba(241,226,199,.14);
  background: rgba(255,255,255,.03);
}
body.theme-dark .article-share-link:hover,
body.theme-dark .article-back-link:hover {
  border-color: rgba(212,160,23,.24);
  background: rgba(212,160,23,.08);
}
body.theme-dark .article-sidebar-card {
  background: linear-gradient(180deg, rgba(32,23,20,.9), rgba(17,13,12,.94));
  border: 1px solid rgba(212,160,23,.12);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
body.theme-dark .article-sidebar-cta {
  background:
    radial-gradient(circle at top left, rgba(212,160,23,.14), transparent 34%),
    linear-gradient(135deg, rgba(27,20,16,.96) 0%, rgba(15,12,11,.98) 100%);
  border: 1px solid rgba(212,160,23,.14);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
body.theme-dark .article-sidebar-cta h3 {
  color: #f2e5cd;
}
body.theme-dark .article-sidebar-cta p {
  color: rgba(233,220,196,.74);
}
body.theme-dark .article-sidebar-cta .btn-primary {
  width: 100%;
  border: 1px solid rgba(212,160,23,.3);
}
body.theme-dark .article-related-meta,
body.theme-dark .article-download-copy {
  color: rgba(233,220,196,.72);
}
body.theme-dark .blog-body {
  color: rgba(233,220,196,.88);
}
body.theme-dark .blog-body h2,
body.theme-dark .blog-body h3 {
  color: #f2e5cd;
}
body.theme-dark .blog-body blockquote {
  background: rgba(212,160,23,.08);
  color: rgba(233,220,196,.82);
}
body.theme-dark .blog-body a {
  color: #d4a017;
}
body.theme-dark .blog-body a:hover {
  color: #f2e5cd;
}
body.theme-dark .blog-body th {
  background: rgba(212,160,23,.16);
  color: #f2e5cd;
  border-bottom: 1px solid rgba(212,160,23,.2);
}
body.theme-dark .blog-body td {
  border-bottom-color: rgba(241,226,199,.12);
}
body.theme-dark .blog-body hr {
  border-top-color: rgba(212,160,23,.14);
}
body.theme-dark .blog-body code {
  background: rgba(255,255,255,.06);
  color: #f5ead6;
}
body.theme-dark .blog-body pre {
  background: rgba(255,255,255,.04);
  color: #f5ead6;
  border: 1px solid rgba(241,226,199,.12);
}

/* FAQ page block moved from inline section */
.faq-hero {
  position: relative;
  background: linear-gradient(135deg, #06183d 0%, #0a2463 60%, #0d2d73 100%);
  padding: 100px 0 72px;
  overflow: hidden;
}
.faq-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,155,60,.12);
  pointer-events: none;
}
.faq-hero-ring:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.faq-hero-ring:nth-child(2) { width: 400px; height: 400px; top: -80px; right: 80px; }
.faq-hero-ring:nth-child(3) { width: 240px; height: 240px; top: 20px; right: 220px; }
.faq-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 16px;
}
.faq-hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #c89b3c;
}
.faq-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.faq-hero-sub {
  font-size: 17px;
  color: rgba(232,224,208,.75);
  max-width: 560px;
  line-height: 1.7;
}
.faq-section {
  padding: 80px 0;
  background: #f8f6f1;
}
.faq-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 20px;
  margin-top: 48px;
}
.faq-category-label:first-child { margin-top: 0; }
.faq-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,155,60,.25);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(10,36,99,.08);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .18s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(10,36,99,.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a2463;
  line-height: 1.5;
  transition: color .18s ease;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: #c89b3c; }
.faq-question[aria-expanded="true"] { border-bottom: 1px solid rgba(10,36,99,.06); }
.faq-icon {
  flex-shrink: 0;
  font-size: 16px;
  color: #c89b3c;
  transition: transform .25s ease;
}
.faq-answer { padding: 0 24px 20px; display: none; }
.faq-answer p {
  font-size: 15px;
  color: #3a4a6b;
  line-height: 1.75;
  margin: 0;
  white-space: pre-wrap;
}
.faq-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #06183d 0%, #0a2463 100%);
  text-align: center;
}
.faq-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 16px;
}
.faq-cta-eyebrow::before,
.faq-cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #c89b3c;
}
.faq-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.faq-cta p {
  font-size: 16px;
  color: rgba(232,224,208,.7);
  margin-bottom: 32px;
}

body.theme-dark .faq-cta,
body.home-page.home-dark .faq-cta {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(212, 160, 23, 0.14), transparent 30%),
    linear-gradient(135deg, #15100d 0%, #0d1f4f 55%, #142b69 100%);
  border-top: 1px solid rgba(212, 160, 23, 0.12);
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}

body.theme-dark .faq-cta h2,
body.home-page.home-dark .faq-cta h2 {
  color: #f7efe0;
}

body.theme-dark .faq-cta p,
body.home-page.home-dark .faq-cta p {
  color: rgba(241, 226, 199, 0.76);
}

body.theme-dark .faq-cta-eyebrow,
body.home-page.home-dark .faq-cta-eyebrow {
  color: #d8b45f;
}

body.theme-dark .faq-cta-eyebrow::before,
body.theme-dark .faq-cta-eyebrow::after,
body.home-page.home-dark .faq-cta-eyebrow::before,
body.home-page.home-dark .faq-cta-eyebrow::after {
  background: rgba(216, 180, 95, 0.9);
}

body.theme-dark .faq-section,
body.home-page.home-dark .faq-section {
  background: #120f0d;
}

body.theme-dark .faq-hero,
body.home-page.home-dark .faq-hero {
  background:
    radial-gradient(circle at top center, rgba(212, 160, 23, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0909 0%, #17120f 58%, #120e0c 100%);
}

body.theme-dark .faq-hero-ring,
body.home-page.home-dark .faq-hero-ring {
  border-color: rgba(212, 160, 23, 0.08);
}

body.theme-dark .faq-hero-kicker,
body.home-page.home-dark .faq-hero-kicker {
  color: #d4a017;
}

body.theme-dark .faq-hero-kicker::before,
body.home-page.home-dark .faq-hero-kicker::before {
  background: #d4a017;
}

body.theme-dark .faq-hero h1,
body.home-page.home-dark .faq-hero h1 {
  color: #f2e5cd;
}

body.theme-dark .faq-hero-sub,
body.home-page.home-dark .faq-hero-sub {
  color: rgba(233, 220, 196, 0.72);
}

body.theme-dark .faq-category-label,
body.home-page.home-dark .faq-category-label {
  color: #d8b45f;
}

body.theme-dark .faq-category-label::after,
body.home-page.home-dark .faq-category-label::after {
  background: rgba(212, 160, 23, 0.2);
}

body.theme-dark .faq-item,
body.home-page.home-dark .faq-item {
  background: #1a1411;
  border-color: rgba(212, 160, 23, 0.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

body.theme-dark .faq-item:hover,
body.home-page.home-dark .faq-item:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

body.theme-dark .faq-question,
body.home-page.home-dark .faq-question {
  color: #f4e6cc;
}

body.theme-dark .faq-question:hover,
body.theme-dark .faq-question[aria-expanded="true"],
body.home-page.home-dark .faq-question:hover,
body.home-page.home-dark .faq-question[aria-expanded="true"] {
  color: #d8b45f;
}

body.theme-dark .faq-question[aria-expanded="true"],
body.home-page.home-dark .faq-question[aria-expanded="true"] {
  border-bottom-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .faq-icon,
body.home-page.home-dark .faq-icon {
  color: #d8b45f;
}

body.theme-dark .faq-answer p,
body.home-page.home-dark .faq-answer p {
  color: rgba(241, 226, 199, 0.78);
}

body.theme-dark .faq-empty-state,
body.home-page.home-dark .faq-empty-state {
  color: rgba(241, 226, 199, 0.82);
}

body.theme-dark .faq-empty-state i,
body.home-page.home-dark .faq-empty-state i {
  color: #d8b45f;
}

/* Payment page block moved from inline section */
.pay-section { padding: 72px 0 96px; background: #f7f8fc; }
.pay-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.pay-panel {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 4px 32px rgba(10,36,99,.06);
}
.pay-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: #0a2463;
  margin-bottom: 6px;
}
.pay-panel-sub {
  font-size: .9rem;
  color: #5a6a8a;
  margin-bottom: 32px;
}
.pay-section-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8ecf5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-section-label:first-of-type { margin-top: 0; }
.pay-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pay-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.pay-field label { font-size: .78rem; font-weight: 700; color: #374151; letter-spacing: .02em; }
.pay-field label .req { color: #e74c3c; margin-left: 2px; }
.pay-field input,
.pay-field select,
.pay-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d8e8;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .875rem;
  color: #1a2540;
  background: #fafbff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.pay-field input:focus,
.pay-field select:focus,
.pay-field textarea:focus {
  border-color: #0a2463;
  box-shadow: 0 0 0 3px rgba(10,36,99,.08);
  background: #fff;
}
.pay-field input::placeholder { color: #aab0c2; }
.pay-field input[readonly] {
  background: #f4f7ff;
  color: #1a2540;
  opacity: 1;
  cursor: default;
}
.pay-field input.is-invalid,
.pay-field select.is-invalid,
.pay-field textarea.is-invalid,
.stripe-card-wrap.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.12);
  background: #fff;
}
.pay-field-error { color: #e74c3c; font-size: .78rem; line-height: 1.4; min-height: 18px; }
.pay-amount-wrap { position: relative; }
.pay-amount-wrap .currency-sym {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  font-weight: 700;
  color: #374151;
  pointer-events: none;
}
.pay-amount-wrap input { padding-left: 48px; font-weight: 700; }
.stripe-card-wrap {
  background: #fafbff;
  border: 1.5px solid #d1d8e8;
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.stripe-card-wrap.focused {
  border-color: #0a2463;
  box-shadow: 0 0 0 3px rgba(10,36,99,.08);
  background: #fff;
}
#card-errors { color: #e74c3c; font-size: .8rem; margin-top: 6px; min-height: 18px; }
.pay-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(10,36,99,.25);
}
.pay-submit-btn:hover:not(:disabled) {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10,36,99,.3);
}
.pay-submit-btn:disabled { opacity: .65; cursor: not-allowed; }
.pay-submit-btn .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.pay-submit-btn.loading .spinner { display: block; }
.pay-submit-btn.loading .btn-label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.pay-disclaimer { font-size: .74rem; color: #8a94a8; text-align: center; margin-top: 14px; line-height: 1.5; }
.pay-disclaimer i { color: #c9a84c; }
.pay-success { display: none; text-align: center; padding: 48px 24px; }
.pay-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0a2463, #1e3a8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #fff;
}
.pay-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #0a2463;
  margin-bottom: 10px;
}
.pay-success p { color: #5a6a8a; font-size: .9rem; }
.pay-success-ref {
  display: inline-block;
  background: #f0f3fa;
  border: 1px solid #d1d8e8;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  color: #0a2463;
  font-size: .85rem;
  margin: 18px 0;
}
.pay-sidebar { display: flex; flex-direction: column; gap: 24px; }
.pay-summary-card {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,36,99,.06);
}
.pay-summary-head {
  background: linear-gradient(135deg, #0a2463 0%, #1a3570 100%);
  padding: 28px 28px 24px;
}
.pay-summary-head .eyebrow { color: #c9a84c; font-size: .7rem; }
.pay-summary-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin: 6px 0 0; }
.pay-summary-body { padding: 24px 28px; }
.pay-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f3fa;
  font-size: .85rem;
}
.pay-summary-row:last-child { border-bottom: none; }
.pay-summary-row span { color: #5a6a8a; }
.pay-summary-row strong { color: #1a2540; }
.pay-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid #0a2463;
}
.pay-summary-total span { font-size: .85rem; font-weight: 700; color: #0a2463; }
.pay-summary-total strong { font-size: 1.4rem; font-weight: 800; color: #0a2463; }
.pay-trust-card,
.pay-help-card {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(10,36,99,.06);
}
.pay-trust-card h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a94a8;
  margin-bottom: 18px;
}
.pay-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-trust-badge {
  background: #f7f8fc;
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.pay-trust-badge i { font-size: 1.3rem; color: #0a2463; margin-bottom: 6px; display: block; }
.pay-trust-badge strong { display: block; font-size: .72rem; font-weight: 800; color: #1a2540; letter-spacing: .03em; }
.pay-trust-badge span { display: block; font-size: .68rem; color: #8a94a8; margin-top: 3px; }
.pay-powered-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid #e8ecf5;
  font-size: .75rem;
  color: #8a94a8;
}
.pay-powered-row svg { height: 22px; width: auto; }
.pay-help-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #0a2463;
  margin-bottom: 8px;
}
.pay-help-card p { font-size: .83rem; color: #5a6a8a; margin-bottom: 14px; }
.pay-help-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  font-weight: 600;
  color: #0a2463;
  text-decoration: none;
  padding: 6px 0;
  transition: color .15s;
}
.pay-help-card a:hover { color: #c9a84c; }
.pay-help-card a i { font-size: .85rem; color: #c9a84c; width: 16px; }

body.theme-dark .pay-section,
body.home-page.home-dark .pay-section {
  background: #120f0d;
}

body.theme-dark .pay-panel,
body.theme-dark .pay-summary-card,
body.theme-dark .pay-trust-card,
body.theme-dark .pay-help-card,
body.home-page.home-dark .pay-panel,
body.home-page.home-dark .pay-summary-card,
body.home-page.home-dark .pay-trust-card,
body.home-page.home-dark .pay-help-card {
  background: #1a1411;
  border-color: rgba(212, 160, 23, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

body.theme-dark .pay-panel-title,
body.home-page.home-dark .pay-panel-title {
  color: #f4e6cc;
}

body.theme-dark .pay-panel-sub,
body.theme-dark .pay-disclaimer,
body.theme-dark .pay-help-card p,
body.home-page.home-dark .pay-panel-sub,
body.home-page.home-dark .pay-disclaimer,
body.home-page.home-dark .pay-help-card p {
  color: rgba(241, 226, 199, 0.68);
}

body.theme-dark .pay-section-label,
body.home-page.home-dark .pay-section-label {
  color: #d8b45f;
  border-bottom-color: rgba(212, 160, 23, 0.12);
}

body.theme-dark .pay-field label,
body.home-page.home-dark .pay-field label {
  color: #eadfc9;
}

body.theme-dark .pay-field input,
body.theme-dark .pay-field select,
body.theme-dark .pay-field textarea,
body.home-page.home-dark .pay-field input,
body.home-page.home-dark .pay-field select,
body.home-page.home-dark .pay-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 226, 199, 0.16);
  color: #f5ead6;
}

body.theme-dark .pay-field input::placeholder,
body.theme-dark .pay-field textarea::placeholder,
body.home-page.home-dark .pay-field input::placeholder,
body.home-page.home-dark .pay-field textarea::placeholder {
  color: rgba(241, 226, 199, 0.42);
}

body.theme-dark .pay-field input:focus,
body.theme-dark .pay-field select:focus,
body.theme-dark .pay-field textarea:focus,
body.home-page.home-dark .pay-field input:focus,
body.home-page.home-dark .pay-field select:focus,
body.home-page.home-dark .pay-field textarea:focus {
  border-color: rgba(212, 160, 23, 0.46);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

body.theme-dark .pay-field input[readonly],
body.home-page.home-dark .pay-field input[readonly] {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(241, 226, 199, 0.75);
}

body.theme-dark .pay-amount-wrap .currency-sym,
body.home-page.home-dark .pay-amount-wrap .currency-sym {
  color: rgba(241, 226, 199, 0.7);
}

body.theme-dark #card-element-wrap,
body.home-page.home-dark #card-element-wrap,
body.theme-dark .stripe-card-wrap,
body.home-page.home-dark .stripe-card-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 226, 199, 0.16);
}

body.theme-dark .pay-success h3,
body.home-page.home-dark .pay-success h3 {
  color: #f4e6cc;
}

body.theme-dark .pay-success p,
body.home-page.home-dark .pay-success p {
  color: rgba(241, 226, 199, 0.72);
}

body.theme-dark .pay-success-ref,
body.home-page.home-dark .pay-success-ref {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 226, 199, 0.16);
  color: #f4e6cc;
}

body.theme-dark .pay-summary-head,
body.home-page.home-dark .pay-summary-head {
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.16), transparent 38%),
    linear-gradient(135deg, #15100d 0%, #0d1f4f 58%, #142b69 100%);
}

body.theme-dark .pay-summary-row,
body.home-page.home-dark .pay-summary-row {
  border-bottom-color: rgba(212, 160, 23, 0.1);
}

body.theme-dark .pay-summary-row span,
body.home-page.home-dark .pay-summary-row span {
  color: rgba(241, 226, 199, 0.62);
}

body.theme-dark .pay-summary-row strong,
body.theme-dark .pay-trust-badge strong,
body.theme-dark .pay-help-card h4,
body.home-page.home-dark .pay-summary-row strong,
body.home-page.home-dark .pay-trust-badge strong,
body.home-page.home-dark .pay-help-card h4 {
  color: #f4e6cc;
}

body.theme-dark .pay-summary-total span,
body.theme-dark .pay-summary-total strong,
body.home-page.home-dark .pay-summary-total span,
body.home-page.home-dark .pay-summary-total strong {
  color: #f4e6cc;
}

body.theme-dark .pay-trust-badge,
body.home-page.home-dark .pay-trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 160, 23, 0.1);
}

body.theme-dark .pay-trust-badge i,
body.home-page.home-dark .pay-trust-badge i {
  color: #d8b45f;
}

body.theme-dark .pay-trust-badge span,
body.home-page.home-dark .pay-trust-badge span {
  color: rgba(241, 226, 199, 0.62);
}

body.theme-dark .pay-powered-row,
body.home-page.home-dark .pay-powered-row {
  border-top-color: rgba(212, 160, 23, 0.1);
}

body.theme-dark .pay-help-card a,
body.home-page.home-dark .pay-help-card a {
  color: #f1e2c7;
}

@media (max-width: 1024px) {
  .pay-layout { grid-template-columns: 1fr 340px; gap: 28px; }
  .pay-panel { padding: 36px 36px; }
}
@media (max-width: 860px) {
  .pay-layout { grid-template-columns: 1fr; }
  .pay-sidebar { order: -1; }
  .pay-summary-card, .pay-trust-card, .pay-help-card { max-width: 560px; }
  .pay-section { padding: 48px 0 72px; }
}
@media (max-width: 600px) {
  .pay-panel { padding: 28px 22px; }
  .pay-field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }
  .article-sidebar-stack {
    position: static;
  }
  .event-detail-shell { grid-template-columns: 1fr; gap: 32px; }
}

@media(max-width:768px){
  .hero-fullslider{min-height:92vh;align-items:flex-end;}
  .hero-fullslider-bg{background-position:55% 12%;background-size:cover;}
  .hero-fullslider-overlay{background:linear-gradient(to bottom,rgba(8,18,50,.15) 0%,rgba(8,18,50,.40) 38%,rgba(8,18,50,.88) 72%,rgba(8,18,50,.97) 100%);}
  .hero-fullslider-content{padding:0 0 64px;}
  .hero-fullslider-inner{max-width:100%;text-align:center;}
  .hero-fullslider .eyebrow{justify-content:center;margin-left:auto;margin-right:auto;}
  .hero-fullslider .page-title{font-size:clamp(1.75rem,6.5vw,2.6rem);}
  .hero-fullslider .section-copy{max-width:100%;font-size:.97rem;}
  .hero-fullslider .hero-actions{justify-content:center;}
  .hero-scroll-hint{display:flex;}
}
@media(max-width:480px){
  .hero-fullslider{min-height:100svh;}
  .hero-fullslider-bg{background-position:55% 10%;}
  .hero-fullslider-content{padding:0 0 56px;}
}

/* ── Print Styles ────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-nav, footer, .footer,
  #back-to-top, #cookie-banner,
  .blog-share, .blog-sidebar, .section-cta,
  .reading-progress-bar, .adm-fab,
  .page-hero, nav[aria-label="breadcrumb"] + *:not(.blog-content-wrap) { display: none !important; }

  body { background: #fff !important; color: #000 !important; font-size: 12pt; }
  .blog-body { max-width: 100% !important; padding: 0 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}
