/* ═══════════════════════════════════════════════════════════
   ADVOCATE PRO SUITE — Main Stylesheet
   Aesthetic: Refined Legal Gold × Deep Navy
   Fonts: Playfair Display (headings) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162336;
  --navy-light: #1E3350;
  --gold:       #C9A843;
  --gold-light: #E8C96A;
  --gold-pale:  #FDF8EC;
  --gold-dark:  #8A6E20;
  --white:      #FFFFFF;
  --off-white:  #F8F6F0;
  --text:       #1A1A2E;
  --text-mid:   #4A5568;
  --text-soft:  #718096;
  --border:     #E2D9C8;
  --red:        #C0392B;
  --green:      #1E7E34;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', monospace;

  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(13,27,42,.08);
  --shadow:     0 4px 24px rgba(13,27,42,.12);
  --shadow-lg:  0 12px 48px rgba(13,27,42,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-1 { font-family: var(--font-head); font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; line-height: 1.15; }
.display-2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; line-height: 1.2; }
.heading-1 { font-family: var(--font-head); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 600; }
.heading-2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.label-caps { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.gold { color: var(--gold); }
.navy { color: var(--navy); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: min(1180px, 94%); margin-inline: auto; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,67,.2);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(13,27,42,.98); box-shadow: var(--shadow); }
.nav-inner {
  width: min(1180px,94%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0; height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-size: 1.25rem; color: var(--white);
  text-decoration: none;
}
.brand-text em   { color: var(--gold); font-style: normal; }
.brand-suite     { color: rgba(255,255,255,.5); font-size: .85em; font-style: italic; letter-spacing: .02em; }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,67,.1); }
.nav-login {
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,67,.4) !important;
}
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 600 !important; padding: .5rem 1.1rem !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* User menu */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  padding: .4rem .75rem; border-radius: 8px;
  background: rgba(201,168,67,.12); border: 1px solid rgba(201,168,67,.25);
  transition: var(--transition);
}
.nav-user-btn:hover { background: rgba(201,168,67,.2); }
.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .75rem;
  display: grid; place-items: center;
}
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-width: 180px; overflow: hidden; z-index: 100;
}
.nav-dropdown.open { display: block; animation: fadeDown .2s ease; }
.nav-dropdown a {
  display: block; padding: .7rem 1.1rem;
  font-size: .875rem; color: var(--text-mid);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--gold-pale); color: var(--navy); }
.dropdown-divider { height: 1px; background: var(--border); margin: .3rem 0; }
.logout-link { color: var(--red) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

@keyframes fadeDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #1a2f4a 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(201,168,67,.07) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(201,168,67,.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,67,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,67,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  width: min(1180px,94%); margin-inline: auto; padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,67,.15); border: 1px solid rgba(201,168,67,.35);
  color: var(--gold); border-radius: 100px;
  padding: .35rem 1rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem,5vw,4.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,.68); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.stat-item { text-align: left; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,67,.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.08);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(201,168,67,.2); margin-bottom: 1.2rem;
}
.hero-card-title { font-family: var(--font-head); color: var(--gold); font-size: 1rem; }
.hero-card-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 8px var(--gold); }
.hero-metric {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.2rem;
}
.metric-box {
  background: rgba(201,168,67,.08); border: 1px solid rgba(201,168,67,.15);
  border-radius: 8px; padding: .75rem;
}
.metric-val { font-family: var(--font-mono); color: var(--gold); font-size: 1.1rem; font-weight: 500; }
.metric-lbl { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .25rem; letter-spacing: .06em; }
.hero-hearing {
  background: rgba(255,255,255,.05);
  border-radius: 8px; padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .6rem;
}
.hearing-client { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; }
.hearing-date { font-family: var(--font-mono); color: var(--gold); font-size: .78rem; }
.hearing-badge {
  font-size: .65rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px;
  background: rgba(201,168,67,.2); color: var(--gold); letter-spacing: .06em;
}
.hearing-badge.today { background: rgba(201,168,67,.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  padding: .75rem 1.5rem; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,67,.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,67,.45); }
.btn-outline {
  border-color: rgba(201,168,67,.4); color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(201,168,67,.1); border-color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,67,.1);
  border: 1px solid rgba(201,168,67,.3);
  padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--navy); margin-bottom: .8rem; }
.section-sub { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-bg { background: var(--navy); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(201,168,67,.15);
  border: 1px solid rgba(201,168,67,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  justify-content: center;
}
.feature-card {
  background: var(--navy-mid);
  padding: 2rem; position: relative; overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover { background: var(--navy-light); }
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,67,.12); border: 1px solid rgba(201,168,67,.2);
  border-radius: 12px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(201,168,67,.2); transform: scale(1.05); }
.feature-title { font-family: var(--font-head); color: var(--gold); font-size: 1rem; margin-bottom: .6rem; }
.feature-desc { color: rgba(255,255,255,.58); font-size: .875rem; line-height: 1.65; }

/* ── DOWNLOAD CARDS ──────────────────────────────────────── */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}
.download-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.download-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: var(--transition);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,67,.4); }
.download-card:hover::after { transform: scaleX(1); }
.file-type-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1rem;
}
.badge-exe { background: rgba(201,168,67,.12); color: var(--gold-dark); border: 1px solid rgba(201,168,67,.3); }
.badge-pdf { background: rgba(192,57,43,.1); color: var(--red); border: 1px solid rgba(192,57,43,.2); }
.download-title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.download-desc { font-size: .84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.25rem; }
.download-meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--text-soft); margin-bottom: 1.25rem; }
.download-meta span::before { margin-right: .35rem; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.reviewer-info { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-weight: 700; font-size: .9rem;
  display: grid; place-items: center;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.reviewer-date { font-size: .75rem; color: var(--text-soft); }
.review-title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: .6rem; }
.review-body { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
.stars .full  { color: var(--gold); }
.stars .half  { color: var(--gold); opacity: .6; }
.stars .empty { color: #CBD5E0; }

/* Rating summary */
.rating-summary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 2.5rem;
  color: var(--white); text-align: center; margin-bottom: 3rem;
  border: 1px solid rgba(201,168,67,.2);
}
.rating-big { font-family: var(--font-head); font-size: 5rem; color: var(--gold); line-height: 1; }
.rating-stars-lg { font-size: 1.8rem; margin: .5rem 0; }
.rating-count { font-size: .875rem; color: rgba(255,255,255,.55); }
.rating-bars { margin-top: 1.5rem; }
.rating-bar-row { display: flex; align-items: center; gap .75rem; margin-bottom: .4rem; font-size: .8rem; gap: .6rem; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 1s ease; }

/* ── FORMS ───────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 2.5rem; width: 100%; max-width: 460px; margin: 0 auto;
}
.form-title { font-family: var(--font-head); font-size: 1.8rem; color: var(--navy); margin-bottom: .4rem; text-align: center; }
.form-sub { font-size: .875rem; color: var(--text-mid); text-align: center; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; letter-spacing: .03em; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,67,.15); }
.form-control::placeholder { color: #BBC0C9; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-error { font-size: .78rem; color: var(--red); margin-top: .3rem; }
.form-success {
  background: rgba(30,126,52,.08); border: 1px solid rgba(30,126,52,.2);
  color: var(--green); padding: .9rem 1.1rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1rem;
}
.alert {
  padding: .9rem 1.1rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1.25rem;
}
.alert-error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); color: var(--red); }
.alert-success { background: rgba(30,126,52,.08); border: 1px solid rgba(30,126,52,.2); color: var(--green); }
.alert-info { background: rgba(201,168,67,.1); border: 1px solid rgba(201,168,67,.3); color: var(--gold-dark); }

/* Star picker */
.star-picker { display: flex; flex-direction: row-reverse; gap: .3rem; justify-content: flex-end; }
.star-picker input { display: none; }
.star-picker label { font-size: 2rem; color: #CBD5E0; cursor: pointer; transition: var(--transition); }
.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label { color: var(--gold); }

/* ── AUTH PAGES ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 90px 1rem 2rem;
}
.auth-page::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(201,168,67,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── DASHBOARD ───────────────────────────────────────────── */
.dash-page { padding-top: 90px; min-height: 100vh; background: var(--off-white); }
.dash-welcome {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 2.5rem 0; color: var(--white); margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--gold);
}
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.25rem; margin-bottom: 2.5rem; justify-content: center; }
.dash-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.dash-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0;
}
.dash-card-val { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); font-weight: 700; }
.dash-card-lbl { font-size: .8rem; color: var(--text-soft); margin-top: .2rem; }
.dash-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.dash-section h3 { font-family: var(--font-head); color: var(--navy); margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); padding-bottom: .75rem; }

/* ── TABLE ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
th { background: var(--gold-pale); color: var(--gold-dark); font-weight: 700; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; padding: .75rem 1rem; text-align: left; }
td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gold-pale); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}
.footer-inner {
  width: min(1180px,94%); margin-inline: auto;
  padding: 4rem 0 2.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .brand-icon { font-size: 2rem; }
.footer-brand .brand-text { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); display: block; margin: .5rem 0; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.65; margin-top: .75rem; }
.footer-cols { display: contents; }
.footer-cols > div h4 { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-cols > div a { display: block; color: rgba(255,255,255,.5); font-size: .84rem; margin-bottom: .5rem; transition: var(--transition); }
.footer-cols > div a:hover { color: var(--gold); }
.footer-bottom {
  width: min(1180px,94%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; border-top: 1px solid rgba(201,168,67,.15);
  font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 60%, rgba(201,168,67,.08) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto; }

/* ── MISC ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.badge-green { background: rgba(30,126,52,.1); color: var(--green); border: 1px solid rgba(30,126,52,.2); }
.badge-gold  { background: rgba(201,168,67,.12); color: var(--gold-dark); border: 1px solid rgba(201,168,67,.3); }
.badge-red   { background: rgba(192,57,43,.1); color: var(--red); border: 1px solid rgba(192,57,43,.2); }

/* Pending review notice */
.review-pending {
  background: rgba(201,168,67,.1); border: 1px solid rgba(201,168,67,.3);
  color: var(--gold-dark); padding: 1rem 1.25rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1.5rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-items: center; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-bottom: 1px solid rgba(201,168,67,.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
}
