/* ============================================================
   Bridge Public Advisors — Global Stylesheet
   Brand: #0B1F33 navy, #1a73a7 blue accent, #f8f9fb bg
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:   #0B1F33;
  --navy2:  #122840;
  --blue:   #1a73a7;
  --blue-lt:#e8f2f9;
  --accent: #2b9d77;
  --text:   #1a2b3c;
  --muted:  #5a6a7a;
  --border: #dde4ec;
  --bg:     #f8f9fb;
  --white:  #ffffff;
  --radius: 8px;
  --max:    1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--text); font-weight: 600; }

/* ---- Layout ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }

/* ---- Nav ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--bg);
}
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover { background: var(--navy2) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 4px 0;
  transition: transform 0.2s;
}

/* ---- Hero ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
}
.hero h1 { color: var(--white); }
.hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-pillar { text-align: center; }
.hero-pillar strong { display: block; color: var(--white); font-size: 0.875rem; margin-bottom: 0.25rem; }
.hero-pillar span  { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* Report card mockup */
.report-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.report-card-header {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.report-card-header p { color: rgba(255,255,255,0.7); font-size: 0.75rem; margin: 0; }
.report-card-header strong { color: var(--white); font-size: 0.9rem; }
.report-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.domain-row { margin: 0.6rem 0; }
.domain-row label { font-size: 0.75rem; color: var(--muted); display: block; margin-bottom: 0.2rem; }
.domain-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.domain-fill { height: 100%; background: var(--blue); border-radius: 3px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary   { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy2); text-decoration: none; }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); text-decoration: none; }
.btn-accent    { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: #228a66; text-decoration: none; }
.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ---- Section headers ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* ---- Dark band ---- */
.band-dark {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}
.band-dark h2 { color: var(--white); }
.band-dark p  { color: rgba(255,255,255,0.75); }

.band-light {
  background: var(--bg);
  padding: 4rem 0;
}

/* ---- Check list ---- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-list.deny li::before { content: '✗'; color: #c0392b; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--blue);
  border-width: 2px;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-name { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.pricing-price { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--navy); line-height: 1; margin: 0.5rem 0; }
.pricing-price span { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--muted); }
.pricing-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

/* ---- Comparison table ---- */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comp-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comp-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comp-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.comp-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.comp-table td:not(:first-child) { text-align: center; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--bg); }
.check-y { color: var(--accent); font-weight: 700; }
.check-n { color: var(--border); }

/* ---- Form ---- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(11,31,51,0.08);
}
.form-card h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.field label .req { color: #c0392b; margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,167,0.1);
}
.field .hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }

/* ---- Domain cards ---- */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.domain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid var(--blue);
}
.domain-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.domain-card p  { font-size: 0.82rem; margin: 0; }

/* ---- Pillars / Feature grid ---- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.pillar { text-align: center; padding: 1rem; }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--blue-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}
.pillar h3 { margin-bottom: 0.5rem; }

/* ---- Step numbers ---- */
.step-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}

/* ---- Blockquote ---- */
blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
  background: var(--blue-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---- Insight / Article ---- */
.article-grid {
  display: grid;
  gap: 2rem;
}
.article-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.article-card:last-child { border-bottom: none; }
.article-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--navy);
}
.article-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
}
.article-date { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.25rem; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.article-card h3 a { color: var(--navy); }
.article-card h3 a:hover { color: var(--blue); text-decoration: none; }
.article-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.75rem; }
.read-more { font-size: 0.875rem; font-weight: 500; color: var(--blue); }

/* ---- Article page ---- */
.article-hero { background: var(--navy); color: var(--white); padding: 3.5rem 0 2.5rem; }
.article-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.article-hero .meta { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-top: 0.75rem; }
.article-body { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.article-body h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.article-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.article-body p  { color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: var(--muted); margin-bottom: 0.4rem; line-height: 1.6; }
.article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-sources { background: var(--bg); border-radius: var(--radius); padding: 1.5rem; margin-top: 2.5rem; }
.article-sources h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 1rem; }
.article-sources li { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }

/* ---- Trust page ---- */
.trust-section { margin-bottom: 3rem; }
.trust-section h3 { font-size: 1.2rem; margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }

/* ---- CTA band ---- */
.cta-band { background: var(--navy); padding: 4rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
footer p { color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; font-size: 0.85rem; }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
footer ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* ---- Misc ---- */
.notice {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.5rem 0;
}
.tag {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-pillars { grid-template-columns: 1fr; gap: 0.75rem; }
  .three-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .article-card { grid-template-columns: 1fr; }
  .article-img-placeholder { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .comp-table { font-size: 0.78rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .domain-grid  { grid-template-columns: 1fr; }
}
