/* ============================================================
   Accident Claim Assistance – Global Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --navy:    #0b2d5e;
  --blue:    #1565c0;
  --sky:     #1e88e5;
  --orange:  #e65100;
  --orange2: #ff6d00;
  --light:   #f4f7fb;
  --grey:    #6b7280;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { margin-bottom: 1rem; color: #444; }

/* ---------- Layout helpers ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section--alt { background: var(--light); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .4px;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,81,0,.35);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: #cfd8dc;
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.top-bar a { color: #b0bec5; display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: #cfd8dc; }
.top-bar svg { flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-img { height: 54px; width: auto; display: block; }
.logo-text-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.logo-text-sub {
  font-size: .72rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--navy);
  color: #fff;
}
.nav-menu .nav-cta {
  background: var(--orange);
  color: #fff;
  margin-left: 8px;
}
.nav-menu .nav-cta:hover { background: var(--orange2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p  { color: #e0e8f0; font-size: 1.1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 24px 0;
}
.stats-bar .container {
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  flex: 1;
  min-width: 150px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: #90caf9;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ---------- Section Titles ---------- */
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
  border-top-color: var(--orange);
}
.card-icon {
  width: 60px; height: 60px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { font-size: .93rem; color: var(--grey); margin: 0; }

/* ---------- Split / Two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 440px;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 18px 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .95rem;
  color: #444;
}
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.step-num {
  width: 50px; height: 50px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { font-size: .88rem; color: var(--grey); margin: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: #b3d4f5; font-size: 1.05rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 18px; left: 22px;
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  padding-top: 24px;
  font-style: italic;
  color: #555;
  margin-bottom: 18px;
}
.testimonial-author { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testimonial-stars  { color: #ffa726; font-size: 1rem; margin-bottom: 8px; }

/* ---------- Info Box ---------- */
.info-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
}
.info-box h3 { color: #fff; margin-bottom: 12px; }
.info-box p  { color: #b3d4f5; }
.info-box a  { color: #ff9800; }
.info-box a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid #e0e7ef;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--grey);
  font-size: .95rem;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { margin-top: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: #fff; }
.contact-detail h4 { font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.contact-detail p, .contact-detail a {
  color: var(--grey); font-size: .92rem;
}
.contact-detail a:hover { color: var(--orange); }

/* CRM placeholder */
.crm-placeholder {
  background: var(--light);
  border: 2px dashed #b0bec5;
  border-radius: var(--radius);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 12px;
  color: #90a4ae;
}
.crm-placeholder svg { opacity: .4; }
.crm-placeholder strong { font-size: 1rem; color: var(--navy); }
.crm-placeholder span  { font-size: .85rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1565c0 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: #b3d4f5; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* Page hero with image */
.page-hero--img {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero--img .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.38);
}
.page-hero--img .page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.page-hero--img h1 { color: #fff; margin-bottom: 12px; }
.page-hero--img p  { color: #cce0f5; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.page-hero--img .hero-actions { justify-content: center; margin-top: 24px; }

/* Breadcrumb */
.breadcrumb {
  background: var(--light);
  padding: 12px 0;
  font-size: .84rem;
  color: var(--grey);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ---------- Icon Feature Row ---------- */
.icon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.icon-feature {
  text-align: center;
}
.icon-feature-wrap {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.icon-feature h4 { font-size: .95rem; margin-bottom: 6px; }
.icon-feature p  { font-size: .85rem; color: var(--grey); margin: 0; }

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 5px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p { margin: 0; font-size: .97rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1a2e;
  color: #b0bec5;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { font-size: .88rem; margin: 14px 0 20px; color: #78909c; }
.footer-logo-text {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-logo-sub {
  font-size: .68rem;
  color: #ff9800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  color: #fff;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #78909c;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #ff9800; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .88rem;
}
.footer-contact-item a { color: #78909c; }
.footer-contact-item a:hover { color: #ff9800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #78909c; }
.footer-bottom a:hover { color: #ff9800; }

/* ---------- Disclaimer Banner ---------- */
.disclaimer {
  background: #111c28;
  padding: 28px 0;
  font-size: .78rem;
  color: #546e7a;
  line-height: 1.8;
}
.disclaimer .container { max-width: 900px; }

/* ---------- Utility ---------- */
.mt-sm  { margin-top:  8px; }
.mt-md  { margin-top: 14px; }
.mt-lg  { margin-top: 48px; }

/* Card read-more link */
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  transition: color .2s;
}
.card-link:hover { color: var(--orange); }

/* ---------- Feature Strip ---------- */
.feature-strip {
  background: var(--navy);
  padding: 0;
}
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-strip-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  line-height: 1.3;
}
.feature-strip-text span {
  font-size: .78rem;
  color: #90aac5;
}
@media (max-width: 768px) {
  .feature-strip .container { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-strip-item:last-child { border-bottom: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-menu { display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    padding: 20px 24px 32px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 8px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 16px 20px; font-size: 1.05rem; border-radius: 6px; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .hero { min-height: 480px; }
  .stats-bar .container { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  h1 { font-size: 1.9rem; }
}

/* Hero background image (index.html) */
.hero .hero-bg { background-image: url('images/1.jpg'); }

/* ============================================================
   Hero Split (index – form in banner)
   ============================================================ */
.hero--split {
  min-height: 0;
  padding: 52px 0 60px;
  align-items: flex-start;
}
.hero-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-content--left h1 { color: #fff; margin-bottom: 18px; }
.hero-bullets { list-style: none; margin-bottom: 18px; }
.hero-bullets li {
  color: #ddeeff;
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: .97rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-bullets li:last-child { border-bottom: none; }
.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 11px;
  color: var(--orange);
  font-weight: 700;
}
.hero-note { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }

.hero-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 16px 56px rgba(0,0,0,.38);
}
.hero-form-card h3  { color: var(--navy); font-size: 1.2rem; margin-bottom: 6px; }
.hero-form-card > p { color: var(--grey); font-size: .9rem; margin-bottom: 18px; }

/* ============================================================
   Global CRM Embed Placeholder
   ============================================================ */
.crm-embed-placeholder {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--blue);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* Strip nested card effect when form sits inside the hero card */
.hero-form-card .crm-embed-placeholder {
  background: transparent;
  box-shadow: none;
  border-top: none;
  border-radius: 0;
  max-width: none;
  margin: 0;
}
.crm-embed-placeholder iframe {
  width: 100%;
  display: block;
  border: none;
  min-height: 727px;
}.crm-direct-email { text-align: center; margin-top: 14px; font-size: .8rem; color: #9eaab5; }
.crm-direct-email a { color: #9eaab5; font-weight: 400; text-decoration: underline; }
.crm-direct-email a:hover { color: var(--grey); }

/* Page hero compact variant */
.page-hero--compact { padding: 52px 0 44px; }
.page-hero--compact h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }

/* ---------- Form Intro Note ---------- */
.form-intro-note {
  text-align: center;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

/* ---------- Trust Badges ---------- */
.trust-badges { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.trust-badges--center { justify-content: center; margin-top: 16px; }
.trust-badge  { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #6b7280; }
.trust-badge svg { color: #2e7d32; flex-shrink: 0; }

/* ---------- Email Contact Card ---------- */
.email-contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.email-contact-card svg { color: var(--navy); }
.email-contact-card p { margin: 0; font-size: .92rem; color: var(--grey); }
.email-contact-address {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.email-contact-address:hover { color: var(--orange); }

/* ============================================================
   Mobile – Phone-first improvements
   ============================================================ */
@media (max-width: 900px) {
  .hero-split-wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero--split { padding: 36px 0 44px; }
}
@media (max-width: 768px) {
  /* Hide top bar on mobile — frees space, email shown in footer */
  .top-bar { display: none; }

  .logo-img { height: 50px; }
  .nav-wrap  { padding: 10px 0; }

  /* Larger tap targets */
  .btn { padding: 16px 28px; min-height: 52px; font-size: 1rem; width: 100%; text-align: center; box-sizing: border-box; }
  .hero-actions .btn,
  .cta-actions  .btn { width: auto; }

  .hero-form-card { padding: 20px 14px; width: 100%; box-sizing: border-box; }
  .hero-form-card h3 { font-size: 1.05rem; }
  /* Form embed full width on mobile */
  .crm-embed-placeholder { max-width: none; }

  /* Nav links are already full-width on mobile */
  .nav-menu a { padding: 16px 20px; font-size: 1.05rem; }
  .nav-menu .nav-cta { margin-left: 0; }

  /* FAQ touch friendliness */
  .faq-q { padding: 20px 4px; font-size: .97rem; }
  .faq-icon { width: 32px; height: 32px; font-size: 1.2rem; }

  /* Sections tighter */
  .section { padding: 48px 0; }
  .page-hero, .page-hero--compact { padding: 44px 0 32px; }
}
@media (max-width: 480px) {
  .logo-img { height: 44px; }
  .hero-bullets li { font-size: .92rem; }
  .section-subtitle { font-size: .95rem; }
  .footer-grid { gap: 20px; }
  /* Form embeds: let iframe expand naturally on small screens */
  .crm-embed-placeholder iframe { min-height: 780px; }
  /* Contact sidebar cards: reduce padding */
  .contact-sidebar-card { padding: 24px 18px; }
  /* Cards: tighten padding */
  .card { padding: 26px 20px; }
  .step-card { padding: 24px 18px; }
  /* Coverage icons: smaller on phones */
  .icon-feature-wrap { width: 56px; height: 56px; }
  /* Keep section padding reasonable */
  .section { padding: 40px 0; }
  .container { padding: 0 1rem; }
}
