/* =============================================
   Your Insurance Advocates — Design System
   ============================================= */

:root {
  /* Primary palette */
  --navy: #1a3a5c;
  --navy-light: #2d5a8a;
  --blue: #3b7ec4;
  --blue-light: #5a9eda;

  /* Accent */
  --gold: #c8963e;
  --gold-light: #d4aa58;
  --gold-pale: #fdf6e8;

  /* Backgrounds */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Semantic */
  --green: #16a34a;
  --green-pale: #f0fdf4;

  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Border */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
}

/* ===================== RESET ===================== */
*, *::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(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-16) 0; }
.section--alt { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--gold { background: var(--gold-pale); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section-title--light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: var(--space-12);
}

.section-subtitle--light { color: rgba(255,255,255,0.7); }
.section-subtitle--center { margin-left: auto; margin-right: auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(200, 150, 62, 0.35);
}
.btn-primary:hover { background: var(--gold-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200, 150, 62, 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===================== NAVIGATION ===================== */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--gray-500); letter-spacing: 0.05em; }
.topbar nav { display: flex; align-items: center; gap: var(--space-1); }
.topbar nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}
.topbar nav a:hover { background: var(--gray-100); color: var(--navy); }
.topbar nav a.active { color: var(--navy); font-weight: 600; }
.nav-cta { margin-left: var(--space-4); }

/* ===================== HERO ===================== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,126,196,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-6);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--gold); }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
}
.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.hero-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.hero-card-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ===================== SERVICES CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: var(--space-6); }
.service-card .btn { font-size: 0.85rem; }
.badge-featured { position: absolute; top: 16px; right: 16px; background: var(--gold); color: white; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: 0.05em; }

/* ===================== WHY CHOOSE US ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.benefit-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; color: white; }
.benefit-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-item p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-8) 0;
}
.trust-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-6); }
.trust-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.08em; text-transform: uppercase; }
.trust-logos { display: flex; align-items: center; gap: var(--space-8); flex-wrap: wrap; justify-content: center; }
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.trust-tagline { font-size: 0.85rem; color: var(--gray-500); margin-top: var(--space-2); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  position: absolute;
  left: 0; top: -8px;
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-location { font-size: 0.82rem; color: var(--gray-500); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: var(--space-2); letter-spacing: 2px; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,126,196,0.2) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: var(--space-8); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-8); }
.cta-phone {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
}
.cta-phone a { color: var(--gold-light); font-weight: 700; }

/* ===================== FOOTER ===================== */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: var(--space-16) 0 var(--space-8); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-top: var(--space-4); color: rgba(255,255,255,0.5); }
.footer h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: var(--space-4); }
.footer ul li { margin-bottom: var(--space-2); }
.footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.15s; }
.footer ul li a:hover { color: var(--white); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-3);
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.page-header p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 580px; }
.breadcrumb { display: flex; gap: var(--space-2); font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===================== CONTENT BLOCKS ===================== */
.content-block { max-width: 780px; margin: 0 auto; }
.content-block h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: var(--space-4); }
.content-block h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: var(--space-3); }
.content-block p { font-size: 1rem; color: var(--gray-700); line-height: 1.75; margin-bottom: var(--space-6); }
.content-block ul { margin-bottom: var(--space-6); padding-left: var(--space-6); }
.content-block ul li {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  position: relative;
}
.content-block ul li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: var(--green);
  font-weight: 700;
}
.content-block + .content-block { margin-top: var(--space-12); }

/* ===================== INFO GRID ===================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}
.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.info-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: var(--space-2); }
.info-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ===================== CONTACT FORM ===================== */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,126,196,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.contact-info-cards {
  display: grid;
  gap: var(--space-4);
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.contact-info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card-icon svg { width: 22px; height: 22px; color: white; }
.contact-info-card h4 { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-card p { font-size: 0.85rem; color: var(--gray-500); }

/* ===================== SERVICES TABS ===================== */
.services-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 2px solid var(--gray-200);
  overflow-x: auto;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.15s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===================== MOBILE NAV ===================== */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.2s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { padding: 50px 0 70px; }
  .hero-stats { gap: var(--space-6); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .section { padding: var(--space-12) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===================== HERO IMAGE ===================== */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-company-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26, 58, 92, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}
.overlay-card-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overlay-card-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.2;
}
.overlay-card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ===================== TRUST BAR SVG LOGOS ===================== */
.trust-logo-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
}
.trust-logo-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.trust-logo-svg:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-300);
}

/* ===================== LEAD CAPTURE SECTION ===================== */
.lead-capture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.lead-capture-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.lead-capture-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lead-capture-form input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,126,196,0.12);
}
.lead-capture-form input[type="email"]::placeholder {
  color: var(--gray-300);
}
.guide-preview-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.guide-preview-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.guide-preview-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.guide-preview-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-6);
}
.guide-preview-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}
.guide-preview-topics span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ===================== ABOUT PAGE HERO IMAGE ===================== */
.about-hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.about-hero-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(26, 58, 92, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.about-hero-caption-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================== RESPONSIVE UPDATES ===================== */
@media (max-width: 900px) {
  .lead-capture-inner { grid-template-columns: 1fr; }
  .lead-capture-visual { order: -1; }
}
@media (max-width: 640px) {
  .hero-company-image { height: 280px; }
  .hero-image-overlay-card { max-width: calc(100% - 40px); }
  .about-hero-img { height: 240px; }
  .lead-capture-form { flex-direction: column; }
  .lead-capture-form input[type="email"] { min-width: unset; }
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }