
/* Kill WordPress block editor layout constraints */
.wp-site-blocks,
.site,
.site-content,
#page,
#content,
.entry-content,
.wp-block-group,
body > .is-layout-flow,
body > .is-layout-constrained {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #1B2F5E;
  --navy-dark:  #12214A;
  --navy-light: #243D7A;
  --red:        #C0272D;
  --red-dark:   #A01F24;
  --gold:       #D4AF37;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-light: #E8ECF2;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --text:       #1F2937;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans Pro', 'Segoe UI', sans-serif;
  --font-mono:    'Courier New', monospace;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(27,47,94,0.10);
  --shadow-lg: 0 8px 32px rgba(27,47,94,0.16);

  --max-width: 1140px;
  --header-h:  80px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo img {
  height: 56px;
  width: auto;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.site-logo .logo-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.15s;
  letter-spacing: 0.02em;
}

#primary-nav a:hover,
#primary-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}

.nav-item:hover .dropdown { display: block; }

.nav-item .dropdown a {
  display: block;
  color: var(--navy);
  padding: 10px 18px;
  font-size: 0.875rem;
  border-radius: 0;
}

.nav-item .dropdown a:hover {
  background: var(--off-white);
  color: var(--red);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   HERO — exact North Star structure, AAVBA colors
   ============================================================ */
#hero {
  min-height: 100vh; background: var(--navy-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(192,39,45,0.035) 1px,transparent 1px), linear-gradient(90deg,rgba(192,39,45,0.035) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.hero-glow-l { position: absolute; top: 50%; left: -120px; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(192,39,45,0.09) 0%, transparent 70%); pointer-events: none; }
.hero-glow-r { position: absolute; top: 20%; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(27,47,94,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 460px 1fr;
  align-items: center; min-height: calc(100vh - var(--header-h));
}
.hero-logo-panel {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 40px 60px 52px;
  border-right: 1px solid rgba(192,39,45,0.15);
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, rgba(192,39,45,0.04) 0%, transparent 60%);
}
.hero-logo-img {
  width: 320px; height: 320px; object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(192,39,45,0.25)) drop-shadow(0 0 120px rgba(27,47,94,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-logo-tagline {
  margin-top: 24px; text-align: center;
  font-family: var(--font-display);
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.35); letter-spacing: .06em; line-height: 1.7;
}
.hero-logo-tagline span { color: rgba(192,39,45,0.85); }
.hero-badge-strip { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; width: 100%; }
.hero-badge-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(192,39,45,0.07); border: 1px solid rgba(192,39,45,0.14);
  border-radius: 7px; padding: 9px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.hero-badge-item .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero-content { padding: 60px 52px 60px 48px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(192,39,45,0.1); border: 1px solid rgba(192,39,45,0.22);
  border-radius: 20px; padding: 4px 13px; font-size: 11px;
  color: #f4a0a3; letter-spacing: .05em; margin-bottom: 20px;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1;transform:scale(1); } 50% { opacity:.5;transform:scale(1.4); } }
.hero-h1 { font-size: 50px; font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -.8px; margin-bottom: 18px; }
.hero-h1 em { color: #f4a0a3; font-style: italic; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.45); font-size: 12px; font-weight: 500; }
.hero-trust-item .dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }


/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: var(--red);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   THREE-PATH SECTION
   ============================================================ */
#three-paths {
  padding: 80px 0;
  background: var(--off-white);
}

.paths-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gray-light);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
  transform: translateY(-3px);
}

.path-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.path-card h3 {
  margin-bottom: 12px;
}

.path-card p {
  color: var(--gray);
  flex: 1;
  margin-bottom: 24px;
}

.path-card .btn {
  align-self: flex-start;
}

/* ============================================================
   WHAT IS A VBA SECTION
   ============================================================ */
#what-is-vba {
  padding: 80px 0;
  background: var(--white);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.what-content h2 { margin-bottom: 20px; }
.what-content p { color: var(--gray-dark); }

.what-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.what-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.what-stat .number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.what-stat .label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

.what-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}

.what-visual h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.step-text span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

/* ============================================================
   CERTIFICATION SECTION
   ============================================================ */
#certification {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.cert-content h2 { color: var(--white); margin-bottom: 16px; }
.cert-content p  { color: rgba(255,255,255,0.8); }

.cert-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cert-badge {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.cert-badge .badge-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.cert-badge .badge-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.cert-badge .badge-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.cert-items {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.cert-items li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   MEMBERSHIP TIERS
   ============================================================ */
#membership {
  padding: 80px 0;
  background: var(--off-white);
}

.membership-header {
  text-align: center;
  margin-bottom: 50px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-light);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-audience {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.tier-price .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.tier-price .period {
  font-size: 0.85rem;
  color: var(--gray);
}

.tier-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.tier-features li::before {
  content: '●';
  color: var(--red);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 6px;
}

.tier-card .btn { align-self: stretch; text-align: center; justify-content: center; }

/* Attorney row */
.attorney-tier {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.attorney-tier h3 { color: var(--white); margin-bottom: 8px; }
.attorney-tier p  { color: rgba(255,255,255,0.8); margin: 0; }

/* ============================================================
   FIND A VBA TEASER
   ============================================================ */
#find-vba {
  padding: 80px 0;
  background: var(--white);
}

.find-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.find-content h2 { margin-bottom: 16px; }
.find-content p  { color: var(--gray-dark); }

.directory-preview {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-light);
}

.dir-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dir-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
}

.dir-search input:focus {
  outline: none;
  border-color: var(--navy);
}

.dir-count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

/* ============================================================
   ABOUT / FOUNDER SECTION
   ============================================================ */
#about-strip {
  padding: 80px 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.about-logo img {
  width: 200px;
  height: auto;
}

.about-content h2 { margin-bottom: 16px; }
.about-content p  { color: var(--gray-dark); }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.about-points li::before {
  content: '●';
  color: var(--red);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ============================================================
   NEWS / BLOG STRIP
   ============================================================ */
#news-strip {
  padding: 70px 0;
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

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

.news-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}

.news-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.news-card .news-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
}

.news-card h4 { margin-bottom: 8px; font-size: 1rem; }
.news-card p  { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0;
  text-align: center;
}

#cta-banner h2 { color: var(--white); margin-bottom: 14px; }
#cta-banner p  { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .brand-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   TRUST BAR (footer top)
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-item .dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
  color: var(--white);
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,47,94,0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .paths-grid,
  .tiers-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-logo-wrap img { width: 180px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  #primary-nav,
  .header-cta { display: none; }

  .menu-toggle { display: block; }

  .header-cta.mobile-open { display: flex; }

  #primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-panel { min-height: auto; border-right: none; border-bottom: 1px solid rgba(192,39,45,0.12); padding: 40px 24px; }
  .hero-logo-img { width: 200px; height: 200px; }
  .hero-content { padding: 36px 24px; }
  .hero-h1 { font-size: 36px; }

  .what-inner,
  .cert-inner,
  .find-inner,
  .about-inner { grid-template-columns: 1fr; }

  .paths-grid,
  .tiers-grid,
  .news-grid { grid-template-columns: 1fr; }

  .attorney-tier { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-inner { gap: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .cta-buttons { flex-direction: column; }
}
