/* ========================================
   EICR Pro Essex — Global Styles
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #172A45;
  --green: #20DF60;
  --blue: #4CC7F0;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --mid: #E8ECF2;
  --text: #2D3A4A;
  --muted: #6B7A8D;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(23,42,69,0.10);
  --shadow-lg: 0 8px 32px rgba(23,42,69,0.14);
  --hero-gradient: linear-gradient(135deg, #0B4D8E 0%, #1170BC 40%, #2096D4 70%, #4CC7F0 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(23,42,69,0.10);
  transition: box-shadow 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 24px; height: 24px; }

.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav.main-nav a:hover, nav.main-nav a.active { background: var(--light); color: var(--navy); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(23,42,69,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: var(--navy); box-shadow: 0 2px 8px rgba(32,223,96,0.25); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-green { background: var(--green); color: var(--navy); }
.btn-sm { padding: 7px 16px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* WhatsApp button */
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { color: var(--white); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(23,42,69,0.12);
    gap: 2px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 16px; font-size: 1rem; }
  .header-cta .phone-link { display: none; }
}

@media (max-width: 480px) {
  .header-cta .btn:not(.btn-primary) { display: none; }
}

/* ── HERO ── */
.hero {
  background: var(--hero-gradient);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 40%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(76,199,240,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32,223,96,0.12);
  border: 1px solid rgba(32,223,96,0.25);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-badge::before { content: '●'; font-size: 0.5rem; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 1.1;
}

.hero h1 .accent { color: var(--green); }

.hero p.lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item {}
.stat-item .stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item .icon {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── SECTION HEADINGS ── */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(32,223,96,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-header p { font-size: 1.0625rem; color: var(--muted); max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(32,223,96,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(32,223,96,0.3); }

.service-card .card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 12px 0 8px;
}
.service-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border: 1.5px solid var(--mid);
  border-radius: 100px;
  transition: background 0.15s, border-color 0.15s;
  align-self: flex-start;
}
.service-card a:hover { background: var(--light); border-color: var(--navy); }

/* ── PRICING ── */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--mid);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--green); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price span { font-size: 1.125rem; font-weight: 500; }
.pricing-vat { font-size: 0.8125rem; color: var(--muted); margin-bottom: 20px; }

.pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-includes li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-includes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── AREA PILLS ── */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: 1.5px solid transparent;
}
.area-pill:hover { background: var(--green); color: var(--navy); transform: translateY(-1px); }
.area-pill-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.area-pill-outline:hover { background: var(--navy); color: var(--white); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--mid);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--light); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--green);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA SECTIONS ── */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid var(--mid);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.8125rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumb li a { color: var(--navy); font-weight: 500; }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--muted); }

/* ── PAGE HERO (for inner pages) ── */
.page-hero {
  background: var(--hero-gradient);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .breadcrumb-inline { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 600px; }

/* ── AREA PAGE SPECIFIC ── */
.area-hero {
  background: var(--hero-gradient);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.area-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.area-hero .tag { margin-bottom: 16px; }
.area-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 20px; }
.area-hero .lead { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 600px; margin-bottom: 32px; }
.area-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.area-hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.area-hero-meta .meta-item strong { color: var(--green); }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 64px 0; }
.content-section h2 { font-size: 1.8rem; margin-bottom: 16px; }
.content-section h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.content-section p { margin-bottom: 16px; color: var(--text); line-height: 1.7; }
.content-section ul { margin: 12px 0 16px 24px; }
.content-section ul li { margin-bottom: 8px; color: var(--text); }

/* Alternating bg */
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ── NEARBY AREAS ── */
.nearby-section { padding: 56px 0; background: var(--light); }
.nearby-section h2 { margin-bottom: 24px; }

/* ── CONTACT SECTION ── */
.contact-section { padding: 72px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-methods { display: flex; flex-direction: column; gap: 20px; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 12px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(32,223,96,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-method h4 { font-size: 0.875rem; color: var(--muted); font-weight: 500; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-method a, .contact-method p { font-size: 1rem; font-weight: 600; color: var(--navy); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 20px; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--green); }

footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--green); }

/* ── ALERT / NOTICE ── */
.notice {
  background: rgba(32,223,96,0.08);
  border: 1px solid rgba(32,223,96,0.25);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.9375rem;
  color: var(--text);
  margin: 24px 0;
}
.notice strong { color: var(--navy); }

/* ── STARS ── */
.stars { color: #F59E0B; letter-spacing: 2px; }

/* ── REVIEW WIDGET PLACEHOLDER ── */
.reviews-section {
  padding: 72px 0;
  background: var(--light);
}

/* ── STICKY PHONE ── */
.sticky-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.15s;
}
.sticky-phone a:hover { transform: scale(1.05); }

@media (max-width: 600px) {
  .sticky-phone { bottom: 16px; right: 16px; }
  .sticky-phone .phone-sticky-text { display: none; }
  .sticky-phone a { padding: 12px 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  border: none;
  border-top: 1px solid var(--mid);
  margin: 40px 0;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; color: var(--muted); }

/* ── BLOG PLACEHOLDER ── */
.blog-intro {
  background: var(--light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.blog-intro h3 { margin-bottom: 12px; }
.blog-intro p { color: var(--muted); max-width: 520px; margin: 0 auto 24px; }

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-stats { gap: 20px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

/* Print */
@media print { #site-header, .sticky-phone, footer { display: none; } }
